diff --git a/scaleway/resource_k8s_pool_test.go b/scaleway/resource_k8s_pool_test.go index 4c8c3960da..b447bcfda1 100644 --- a/scaleway/resource_k8s_pool_test.go +++ b/scaleway/resource_k8s_pool_test.go @@ -2,10 +2,12 @@ package scaleway import ( "fmt" + "strings" "testing" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" ) @@ -363,6 +365,123 @@ func TestAccScalewayK8SCluster_PoolSize(t *testing.T) { }) } +func TestAccScalewayK8SCluster_PoolPrivateNetwork(t *testing.T) { + tt := NewTestTools(t) + defer tt.Cleanup() + + latestK8SVersion := testAccScalewayK8SClusterGetLatestK8SVersion(tt) + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckScalewayK8SClusterDestroy(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "private_network" { + name = "k8s-private-network" + } + + resource "scaleway_k8s_cluster" "private_network" { + name = "k8s-private-network-cluster" + version = "%s" + cni = "cilium" + private_network_id = scaleway_vpc_private_network.private_network.id + tags = [ "terraform-test", "scaleway_k8s_cluster", "private_network" ] + delete_additional_resources = true + depends_on = [scaleway_vpc_private_network.private_network] + } + + resource "scaleway_k8s_pool" "private_network" { + cluster_id = scaleway_k8s_cluster.private_network.id + name = "pool" + node_type = "gp1_xs" + size = 2 + autoscaling = false + autohealing = true + wait_for_pool_ready = true + }`, latestK8SVersion), + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.private_network"), + testAccCheckScalewayVPCPrivateNetworkExists(tt, "scaleway_vpc_private_network.private_network"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.private_network"), + testAccCheckScalewayK8sClusterPrivateNetworkID(tt, "scaleway_k8s_cluster.private_network", "scaleway_vpc_private_network.private_network"), + testAccCheckScalewayK8SPoolServersAreInPrivateNetwork(tt, "scaleway_k8s_cluster.private_network", "scaleway_k8s_pool.private_network", "scaleway_vpc_private_network.private_network"), + ), + }, + }, + }) +} + +func testAccCheckScalewayK8SPoolServersAreInPrivateNetwork(tt *TestTools, clusterTFName, poolTFName, pnTFName string) resource.TestCheckFunc { + return func(s *terraform.State) error { + rs, ok := s.RootModule().Resources[clusterTFName] + if !ok { + return fmt.Errorf("resource not found: %s", clusterTFName) + } + k8sAPI, region, clusterID, err := k8sAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + rs, ok = s.RootModule().Resources[poolTFName] + if !ok { + return fmt.Errorf("resource not found: %s", poolTFName) + } + _, _, poolID, err := k8sAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + rs, ok = s.RootModule().Resources[pnTFName] + if !ok { + return fmt.Errorf("resource not found: %s", pnTFName) + } + _, zone, pnID, err := vpcAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + nodes, err := k8sAPI.ListNodes(&k8s.ListNodesRequest{ + Region: region, + PoolID: &poolID, + ClusterID: clusterID, + }) + if err != nil { + return err + } + + instanceAPI := instance.NewAPI(tt.Meta.scwClient) + + for _, node := range nodes.Nodes { + providerIDSplit := strings.SplitN(node.ProviderID, "/", 5) + if len(providerIDSplit) < 5 { + return fmt.Errorf("unexpected format for ProviderID in node %s", node.ID) + } + + server, err := instanceAPI.GetServer(&instance.GetServerRequest{ + Zone: zone, + ServerID: providerIDSplit[4], + }) + if err != nil { + return err + } + + pnfound := false + for _, privateNic := range server.Server.PrivateNics { + if privateNic.PrivateNetworkID == pnID { + pnfound = true + } + } + if pnfound == false { + return fmt.Errorf("node %s is not in linked to private network %s", node.ID, pnID) + } + } + + return nil + } +} + func testAccCheckScalewayK8SPoolDestroy(tt *TestTools, n string) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources[n] diff --git a/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml new file mode 100644 index 0000000000..a76f5771d4 --- /dev/null +++ b/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml @@ -0,0 +1,4444 @@ +--- +version: 1 +interactions: +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + body: '{"versions":[{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","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.26.2","name":"1.26.2","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"],"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.7","name":"1.25.7","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","crio"],"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.11","name":"1.24.11","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","crio","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.23.16","name":"1.23.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","crio","docker"],"available_feature_gates":["TTLAfterFinished","HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders"],"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.22.16","name":"1.22.16","region":"fr-par"}]}' + headers: + Content-Length: + - "3875" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13: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: + - fae7a34d-d466-4da7-9bcb-f6c71de48c3a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"k8s-private-network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks + method: POST + response: + body: '{"created_at":"2023-04-07T13:50:29.248847Z","id":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnets":["172.16.8.0/22","fd63:256c:45f7:80b8::/64"],"tags":[],"updated_at":"2023-04-07T13:50:29.248847Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "361" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31e801f2-824e-490c-9e76-e72bcd8f3b61 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/c39faed2-bc4b-440e-8502-4cc37bbb2cda + method: GET + response: + body: '{"created_at":"2023-04-07T13:50:29.248847Z","id":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnets":["172.16.8.0/22","fd63:256c:45f7:80b8::/64"],"tags":[],"updated_at":"2023-04-07T13:50:29.248847Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "361" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5d9a74b-89dd-41c6-a4a4-c55bb70fec4e + 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.26.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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; 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":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602120667Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:50:29.611293298Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1453" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 194a54d2-95b3-4b58-8bdf-72ba4eee93d7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:50:29.611293Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8db0c7de-87aa-4c80-b368-7f53b2597af0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:50:31.863971Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1452" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 160a278e-8ffd-4c29-9ea1-f7cefcdb7c23 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:50:31.863971Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1452" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 848fee9a-c841-45ba-87c6-4d15295ab855 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVVWGRPYWtWNlRsUkJlazFXYjFoRVZFMTZUVVJSZDA1cVJYcE9WRUY2VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMjl3Q2tSbk9HNXVaWEUzUzNJNGFGSkVOREYzV0drck5IaFRZbXh4ZWtVMWMxSlZjVmQyUVZWaWFuZFVUVVpTVTI1SlRHNHhhMEZwWkZoRFZuVk1Vbk5GTVV3S0szcG5VekF3VmpCVFVESmFUazFZUlROd1MwNW1abGwzTWtGSk1VNTVNMUJqYzNkRlZHSnRaVTFvVGtSa2EzTlZNa1p3VkZkUWIyeGlLMmRqZFRoMWNncFVNakpDVW1ONlQxZDFjMkpIWXpZelF6RjJURzlSTlZZMFFtOVlaRzVsZGtSUVdWVm9Meko1YjNSUmJHeEVORU14WVZoblYydE9VM2szVjNsMVNFMUtDalJqZEVrMmMydFJNV3hQYWtSMGJVbGFLMFIxYkc5SU1tdHBWSE0zUkVOb1JURlBNVEZpWjBkNFpIQnpkbVJaVG1aRWRYSlFOMjlLTURSWllrMTRMMkVLUWxSaVZXVlZLelZWY0hGblRsbHBTRmRpWVZWT1VFODJZM2hZU1VrMFJteFFUbWxTV0RJMU0yOTZiRlZJV0dGdmMwbG9TemxQTDNGT00ybGxNWEptVXdwNlJqRmtWbU5LWm1wbWJpdFZaMmxTVXpGalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTWFUVlVNVXNyZDNaSk4yMDNRUzlTWkN0Q1oycFNRMVI2Um5oTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFQwMVljbGt6VFZkeFlYZG9kWE5RUWxwTFRHdGlaVll3UTAxdlMxZExSbFJ3WldzM2JYcHdLMEY2SzNsUmJVNVdkd28wV1N0cVpUZEljMkVyY1N0VVkwWXlTR2RtV1ZCbFlWbHZRMFZCWWpWaGVIcDVWbmxVVVZaRFNVMVJNekV4V2tWbk1FTlVhMEV4Vm5nM1NEQlFSME5NQ2pNM1FpdFFTVTk2U2pndmNtSXJTVlZLTHlzNFMyaGtVbXBWVVc0dmFWaHNhVzUzYTJsYWJXdzFiMnhaZGxsVmVEbFlNbHBTVlcxUWEwbHBaRnBXWm5VS05XaGtRM3BpV1dsdU1GSk1iMncyUzBaemRUVnhTRzFUVmpGMFoxbFlTVFpXYUZCNFIxQkdlVTE1SzBwNlVUSmpkakE0Y0d0U2VuZHVhV3BJUW05eWFncHNRMk0wTDBWT05FOHdPSE5FVFdGb0wzaDRjMFJFYjBsbUwyeE1ibUp3TjFKdVlWSTNlbEl3ZVZSNFF6Wktaa3RaTlRWMk9VMVdVa2QwTlRrelJERlZDbFZsT0RFelZXbFplbTl2U0dwSFIzUjJNVTgyT0U5cWJWUm5UamxXVmpoWWJsVkZhQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjA5NTg4NmEtNmY4MC00MjQ3LTgxNTEtZTNkOTY5OTk4NTA2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBCZ0RqanhjUjJlbGZzSkIyWHA0RWM1Vm12ZnFqbVdPN1JzV29lZVVVZVUxRjBVbnZUM2ZTUDFyZA==","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: + - Fri, 07 Apr 2023 13:50:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76b2825a-7f52-41c1-b773-f4462adc1df5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:50:31.863971Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1452" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aaa619ff-bf77-4bdb-8a75-b677e41d3b64 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pool","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":2,"min_size":1,"max_size":2,"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}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253266Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d60af7f-642d-4f6d-8583-a9253d61d356 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a6deb74-5683-4440-aa6a-4fe6fcab435b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2dbcabcb-21c9-4102-9b2a-503ba196c1b3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 172ea29b-8143-4554-bf05-3538beab8691 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f703c75-6ccb-43cb-9d69-c18abee19623 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:50:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b1a81d1-4108-4bb4-97ae-206758185470 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79dda18f-6203-4853-a211-1a476db55d94 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aaa6800a-5390-4ef8-8c96-f083a4f59eb1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92778d2b-67e4-4bf1-8d8a-859fc0ce3bbf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e6ad8f4-d10d-401b-9e02-ab719b608e7a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89efc157-22e6-4925-b2c4-584793c01998 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ac958d0-c5cb-44e4-8fa1-f6fe9fc86862 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05ebe2f1-8253-4824-bbfa-fb2f884f630c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 86be609b-4a7f-4008-802e-7cb6fc5633b0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c269dd19-8648-43ea-a209-3d9d16786620 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3e42e38-f292-40aa-969e-44bd51bf7882 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c577a899-da79-4fa4-9476-a6cbd9a3d8f6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:51:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - baebbfef-f090-4f9c-9219-d01814dace85 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 055d04f6-288c-4954-9817-ccd43f164045 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba01f860-3544-4615-ac86-81690d219980 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8ed2aaa-95ed-4b56-915a-326e1f84311d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2509d5ba-01f4-472a-8d45-04d5c10ac21c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9be6680d-8c0d-4d84-b221-98335fc5250a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ab4d03f-04c5-412e-9ff1-2c750b137057 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d786718f-063a-445c-85a5-ed3c9774065e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5234c72b-4878-42f3-90e4-ba48475ae9d3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d970fc6d-1004-4f4e-8401-d1edd6546a0c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa0d714f-11a4-432f-b516-e015b19bd589 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49a08bde-f9f1-494e-b232-4f914f206163 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:52:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2f056e4-5f5f-4d89-a8c4-1350d424d98a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - caf0101f-1c11-49fc-a257-bebe4b3920db + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02adadcf-80c1-455b-957b-d3a807f5e15a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29a5f23d-57b3-463c-a9ff-7878b732865a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19d7ea6d-bf14-4251-b334-2a71d550615c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5bd8843c-9596-40ec-a34f-4f16195f2b6e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a71b855a-c40d-4853-967e-cc22151c80d4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4097b857-b916-4ad7-ab2b-bb433afdc6f2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 467fdcac-41d1-4745-9e27-f6097999ee82 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 729dcc22-727e-44ee-b7e3-806540395d2b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a92d834-1ef1-4841-937a-a7ed26c895a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26ac31e0-e417-479a-afc7-6f5a75c0e903 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:53:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c5c3da0d-ac4c-43ca-87c9-46f2dd5047fa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05e79d77-7627-4abd-be5f-ebbe456eb78f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 322302d1-e001-49d0-9c5e-258e396bce0e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b656b122-4ac5-478c-8f4f-c53584dc22f8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5858349f-6c12-4dec-98f2-e73cbd352b57 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e9b3870-eb2b-409a-8238-af26ae735aef + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 206201d6-148d-43e6-b099-3523f10d7341 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 60c8f938-2de9-4e64-91ae-35ffac306a14 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a29790b0-8aa2-4c33-a890-3e2d631f7da7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d62a4cc-b22f-42c4-aea8-296fd33bd456 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9aa1316f-c9b3-428f-b8ff-9459d88e34a6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64e2922e-5a65-47f2-99c8-df068dd23490 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:54:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 040e087c-8203-4404-adfd-4210d5064f29 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2098af54-50e3-44a7-9ead-e07e802cb3f3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 975f1c8c-694f-482e-a182-7b3aec346ccc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e5c2d22-ac3c-4385-9249-ca6c7a06c82b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0e713d6-367d-45b4-8127-85f3eac79403 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e2ba4f4-bb40-4a7a-a3a0-7ed101e1bd95 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 003ac59f-53cf-46fa-8f52-0e6134b2e63a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1295486-941b-4487-80a2-56333999f44c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3e9fd4d-26b7-4576-9dc1-10485199c58a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e13168a-34ec-48c4-a13f-c12a9de2ff83 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d116d2d4-2e81-4403-a5d4-8d83b60cca7e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 251b92cd-87ff-4ff9-b145-967eb0560520 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:55:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4e3a967-0766-4f9d-8fca-5c0398185a08 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8a8bf44-f7a3-4038-ba81-10b1c10dad26 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f33882b8-de31-482b-9dcb-ed989adc153e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a613903-3ffe-4e1b-a7b9-e8026fad0435 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d8cc218-d9e1-4a60-b8b7-409e11764945 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d17834b1-e70d-4db3-95c3-b5d9795daa86 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a3a8ac0-dc8d-4a93-9caa-fa5dee2c9a9e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43ffd8ee-a700-4113-b69c-ea7524909910 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1d01e8a-78f1-4c71-a013-f00f65145298 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d774437-23b6-465a-93f9-95eebdb843a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 263e020e-9ba1-4729-b332-4f4bf33ff59b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:56:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a8939bb-37b2-455b-bc75-7e67bda517e9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - adf441f3-2366-4fc7-8bed-f96d9d81f339 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a1884b4-5a6d-4c50-bb7a-f8d111d9e5fd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89553f2d-550b-43cb-9e28-c37ab055e77e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15579e28-2861-44a8-82ea-ba3da3a53c7f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1aa801c-07f4-4bdd-9782-a95ca4ddc88b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 80bb0e83-36ab-4b27-aafb-36ab29eb3ec0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:30 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c246d552-e74b-49b8-be14-763521559fde + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9df06b4d-71a0-4d88-98a5-bc63b1276da9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb233b43-6cb2-4357-a30d-9f89ec9a8cc7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33fd3b20-8d6a-4d72-a913-205c753591b8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a3271da-5d46-4299-81fd-231cbd59ea99 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:57:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca1d1c71-7561-41d2-8725-13074b3af40d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e015e74-a803-4d9a-bd1f-88fbf5e526d3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5405125d-2915-4f36-b8b3-79e0735554e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9810cef-5e30-448f-9bb5-1b52e1da8200 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 734c8338-ff1e-48d0-ad75-6aca609e20c0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c9d22192-bbce-4e71-93e9-56ff22881ae7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9c3e7a7-609a-4d28-b76c-e39d03490837 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f9d4c17c-e36f-49d6-942c-5a1405a9c775 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d4656e7-9073-4618-9c3f-b070bc6e8fd2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b28bb545-fdd1-46e7-9b15-e26939b59c1e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-04-07T13:50:35.090253Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e09d5d5c-5e68-4e13-aca4-e77317ecc4b4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-04-07T13:58:46.534372Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0b620de-f774-4a10-868d-b5065443a590 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:51:43.619966Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1444" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d204b32f-271e-4a84-a125-14214c46e4c9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-04-07T13:58:46.534372Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec4a2278-d7c9-4356-8145-038e48d5dee9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506/nodes?order_by=created_at_asc&page=1&pool_id=d07f8661-59da-4bf6-b63c-d964fec920dc&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-04-07T13:52:11.393337Z","error_message":null,"id":"2b99bd67-f9af-49de-9068-74e16f3e70e8","name":"scw-k8s-private-network-cluster-pool-2b99bd67f","pool_id":"d07f8661-59da-4bf6-b63c-d964fec920dc","provider_id":"scaleway://instance/fr-par-1/73b656a0-ab4d-4938-a47a-b0e32c5f1722","public_ip_v4":"51.15.211.1","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-04-07T13:58:46.492791Z"},{"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-04-07T13:53:19.651718Z","error_message":null,"id":"f3247c3d-959a-4bca-b6cb-bbefc876e8b7","name":"scw-k8s-private-network-cluster-pool-f3247c3d9","pool_id":"d07f8661-59da-4bf6-b63c-d964fec920dc","provider_id":"scaleway://instance/fr-par-1/c2b09629-cf19-483b-b1d4-2883d199eb5b","public_ip_v4":"212.47.247.189","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-04-07T13:58:46.518088Z"}],"total_count":2}' + headers: + Content-Length: + - "1214" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6bf9cc42-df26-438b-9ff8-2e2c5a0cea68 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:51:43.619966Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1444" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65566661-1815-4e02-8394-13589ec3a617 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/c39faed2-bc4b-440e-8502-4cc37bbb2cda + method: GET + response: + body: '{"created_at":"2023-04-07T13:50:29.248847Z","id":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnets":["172.16.8.0/22","fd63:256c:45f7:80b8::/64"],"tags":[],"updated_at":"2023-04-07T13:50:29.248847Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "361" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bfc39f8c-2fd3-445e-b98c-c1d4c43267f9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-04-07T13:58:46.534372Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 80c917ab-408e-44fa-a20d-e397fdfc2a41 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:51:43.619966Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1444" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a27c46e5-20ee-4392-b4ea-37387fa6c52d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506/nodes?order_by=created_at_asc&pool_id=d07f8661-59da-4bf6-b63c-d964fec920dc&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-04-07T13:52:11.393337Z","error_message":null,"id":"2b99bd67-f9af-49de-9068-74e16f3e70e8","name":"scw-k8s-private-network-cluster-pool-2b99bd67f","pool_id":"d07f8661-59da-4bf6-b63c-d964fec920dc","provider_id":"scaleway://instance/fr-par-1/73b656a0-ab4d-4938-a47a-b0e32c5f1722","public_ip_v4":"51.15.211.1","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-04-07T13:58:46.492791Z"},{"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-04-07T13:53:19.651718Z","error_message":null,"id":"f3247c3d-959a-4bca-b6cb-bbefc876e8b7","name":"scw-k8s-private-network-cluster-pool-f3247c3d9","pool_id":"d07f8661-59da-4bf6-b63c-d964fec920dc","provider_id":"scaleway://instance/fr-par-1/c2b09629-cf19-483b-b1d4-2883d199eb5b","public_ip_v4":"212.47.247.189","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-04-07T13:58:46.518088Z"}],"total_count":2}' + headers: + Content-Length: + - "1214" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9976b6e3-603b-4211-8869-e30a50dc55fe + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/73b656a0-ab4d-4938-a47a-b0e32c5f1722 + method: GET + response: + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"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-04-07T13:52:12.034034+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-k8s-private-network-cluster-pool-2b99bd67f","id":"73b656a0-ab4d-4938-a47a-b0e32c5f1722","image":{"arch":"x86_64","creation_date":"2021-04-12T11:08:57.473796+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"39a71c71-bb3e-4ba9-b550-e45f491cf6a7","modification_date":"2021-04-12T11:08:59.914868+00:00","name":"Kubernetes + base node 94cae785 20210412-1103","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"b2b0cd24-b0c2-4806-92cc-edb58a1fdfb0","name":"k8s_base_node_2021-04-12_11:03","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:610:4804::1","gateway":"2001:bc8:610:4804::","netmask":"64"},"location":{"cluster_id":"50","hypervisor_id":"1402","node_id":"5","platform_id":"14","zone_id":"par1"},"maintenances":[],"modification_date":"2023-04-07T13:55:54.402635+00:00","name":"scw-k8s-private-network-cluster-pool-2b99bd67f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.194.72.201","private_nics":[{"creation_date":"2023-04-07T13:52:12.590287+00:00","id":"6ce8863a-075f-4136-a5b9-6fd532800aa6","mac_address":"02:00:00:12:a6:5c","modification_date":"2023-04-07T13:52:13.556794+00:00","private_network_id":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","server_id":"73b656a0-ab4d-4938-a47a-b0e32c5f1722","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.211.1","dynamic":true,"id":"d3970f1f-ac85-4434-904d-760f78fef8f8"},"security_group":{"id":"c32f80e2-f8a7-485b-ae97-5bdc16c3694e","name":"kubernetes + 6095886a-6f80-4247-8151-e3d969998506"},"state":"running","state_detail":"booting + kernel","tags":["kapsule=6095886a-6f80-4247-8151-e3d969998506","pool=d07f8661-59da-4bf6-b63c-d964fec920dc","pool-name=pool","runtime=containerd","managed=true","node=2b99bd67-f9af-49de-9068-74e16f3e70e8"],"volumes":{"0":{"boot":false,"creation_date":"2023-04-07T13:52:12.034034+00:00","export_uri":null,"id":"9718b321-f184-4fcd-a8aa-775a5ecdc924","modification_date":"2023-04-07T13:52:12.034034+00:00","name":"k8s_base_node_2021-04-12_11:03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"73b656a0-ab4d-4938-a47a-b0e32c5f1722","name":"scw-k8s-private-network-cluster-pool-2b99bd67f"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3554" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5949f5bc-3222-4194-b53a-4e80b4e10e58 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c2b09629-cf19-483b-b1d4-2883d199eb5b + method: GET + response: + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"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-04-07T13:53:20.025533+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-k8s-private-network-cluster-pool-f3247c3d9","id":"c2b09629-cf19-483b-b1d4-2883d199eb5b","image":{"arch":"x86_64","creation_date":"2021-04-12T11:08:57.473796+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"39a71c71-bb3e-4ba9-b550-e45f491cf6a7","modification_date":"2021-04-12T11:08:59.914868+00:00","name":"Kubernetes + base node 94cae785 20210412-1103","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"b2b0cd24-b0c2-4806-92cc-edb58a1fdfb0","name":"k8s_base_node_2021-04-12_11:03","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:700:e03::1","gateway":"2001:bc8:700:e03::","netmask":"64"},"location":{"cluster_id":"57","hypervisor_id":"403","node_id":"4","platform_id":"14","zone_id":"par1"},"maintenances":[],"modification_date":"2023-04-07T13:55:52.784697+00:00","name":"scw-k8s-private-network-cluster-pool-f3247c3d9","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.194.181.135","private_nics":[{"creation_date":"2023-04-07T13:53:20.541690+00:00","id":"0fa32a7a-2a3e-4c63-ada1-e37ca8281946","mac_address":"02:00:00:12:a6:5d","modification_date":"2023-04-07T13:53:21.167084+00:00","private_network_id":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","server_id":"c2b09629-cf19-483b-b1d4-2883d199eb5b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"212.47.247.189","dynamic":true,"id":"7248555e-5f71-49cb-9117-abeea9ccbc58"},"security_group":{"id":"c32f80e2-f8a7-485b-ae97-5bdc16c3694e","name":"kubernetes + 6095886a-6f80-4247-8151-e3d969998506"},"state":"running","state_detail":"booting + kernel","tags":["kapsule=6095886a-6f80-4247-8151-e3d969998506","pool=d07f8661-59da-4bf6-b63c-d964fec920dc","pool-name=pool","runtime=containerd","managed=true","node=f3247c3d-959a-4bca-b6cb-bbefc876e8b7"],"volumes":{"0":{"boot":false,"creation_date":"2023-04-07T13:53:20.025533+00:00","export_uri":null,"id":"91ad0109-7ac0-40b4-bc89-bbae109d5311","modification_date":"2023-04-07T13:53:20.025533+00:00","name":"k8s_base_node_2021-04-12_11:03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"c2b09629-cf19-483b-b1d4-2883d199eb5b","name":"scw-k8s-private-network-cluster-pool-f3247c3d9"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3555" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30546e53-9664-48c9-9f2a-421e2c53b14e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/c39faed2-bc4b-440e-8502-4cc37bbb2cda + method: GET + response: + body: '{"created_at":"2023-04-07T13:50:29.248847Z","id":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnets":["172.16.8.0/22","fd63:256c:45f7:80b8::/64"],"tags":[],"updated_at":"2023-04-07T13:50:29.248847Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "361" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e05e80a-0d7c-4c84-886d-a978fce69be2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:51:43.619966Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1444" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b90b2ff-c73a-482b-8a97-03719eee7421 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVVWGRPYWtWNlRsUkJlazFXYjFoRVZFMTZUVVJSZDA1cVJYcE9WRUY2VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMjl3Q2tSbk9HNXVaWEUzUzNJNGFGSkVOREYzV0drck5IaFRZbXh4ZWtVMWMxSlZjVmQyUVZWaWFuZFVUVVpTVTI1SlRHNHhhMEZwWkZoRFZuVk1Vbk5GTVV3S0szcG5VekF3VmpCVFVESmFUazFZUlROd1MwNW1abGwzTWtGSk1VNTVNMUJqYzNkRlZHSnRaVTFvVGtSa2EzTlZNa1p3VkZkUWIyeGlLMmRqZFRoMWNncFVNakpDVW1ONlQxZDFjMkpIWXpZelF6RjJURzlSTlZZMFFtOVlaRzVsZGtSUVdWVm9Meko1YjNSUmJHeEVORU14WVZoblYydE9VM2szVjNsMVNFMUtDalJqZEVrMmMydFJNV3hQYWtSMGJVbGFLMFIxYkc5SU1tdHBWSE0zUkVOb1JURlBNVEZpWjBkNFpIQnpkbVJaVG1aRWRYSlFOMjlLTURSWllrMTRMMkVLUWxSaVZXVlZLelZWY0hGblRsbHBTRmRpWVZWT1VFODJZM2hZU1VrMFJteFFUbWxTV0RJMU0yOTZiRlZJV0dGdmMwbG9TemxQTDNGT00ybGxNWEptVXdwNlJqRmtWbU5LWm1wbWJpdFZaMmxTVXpGalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTWFUVlVNVXNyZDNaSk4yMDNRUzlTWkN0Q1oycFNRMVI2Um5oTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFQwMVljbGt6VFZkeFlYZG9kWE5RUWxwTFRHdGlaVll3UTAxdlMxZExSbFJ3WldzM2JYcHdLMEY2SzNsUmJVNVdkd28wV1N0cVpUZEljMkVyY1N0VVkwWXlTR2RtV1ZCbFlWbHZRMFZCWWpWaGVIcDVWbmxVVVZaRFNVMVJNekV4V2tWbk1FTlVhMEV4Vm5nM1NEQlFSME5NQ2pNM1FpdFFTVTk2U2pndmNtSXJTVlZLTHlzNFMyaGtVbXBWVVc0dmFWaHNhVzUzYTJsYWJXdzFiMnhaZGxsVmVEbFlNbHBTVlcxUWEwbHBaRnBXWm5VS05XaGtRM3BpV1dsdU1GSk1iMncyUzBaemRUVnhTRzFUVmpGMFoxbFlTVFpXYUZCNFIxQkdlVTE1SzBwNlVUSmpkakE0Y0d0U2VuZHVhV3BJUW05eWFncHNRMk0wTDBWT05FOHdPSE5FVFdGb0wzaDRjMFJFYjBsbUwyeE1ibUp3TjFKdVlWSTNlbEl3ZVZSNFF6Wktaa3RaTlRWMk9VMVdVa2QwTlRrelJERlZDbFZsT0RFelZXbFplbTl2U0dwSFIzUjJNVTgyT0U5cWJWUm5UamxXVmpoWWJsVkZhQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjA5NTg4NmEtNmY4MC00MjQ3LTgxNTEtZTNkOTY5OTk4NTA2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBCZ0RqanhjUjJlbGZzSkIyWHA0RWM1Vm12ZnFqbVdPN1JzV29lZVVVZVUxRjBVbnZUM2ZTUDFyZA==","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: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a67e458-2a2c-478f-9f6b-c053606fca09 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-04-07T13:58:46.534372Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2664fad-cb02-4c92-9b26-7149fedc0bf7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506/nodes?order_by=created_at_asc&page=1&pool_id=d07f8661-59da-4bf6-b63c-d964fec920dc&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-04-07T13:52:11.393337Z","error_message":null,"id":"2b99bd67-f9af-49de-9068-74e16f3e70e8","name":"scw-k8s-private-network-cluster-pool-2b99bd67f","pool_id":"d07f8661-59da-4bf6-b63c-d964fec920dc","provider_id":"scaleway://instance/fr-par-1/73b656a0-ab4d-4938-a47a-b0e32c5f1722","public_ip_v4":"51.15.211.1","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-04-07T13:58:46.492791Z"},{"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-04-07T13:53:19.651718Z","error_message":null,"id":"f3247c3d-959a-4bca-b6cb-bbefc876e8b7","name":"scw-k8s-private-network-cluster-pool-f3247c3d9","pool_id":"d07f8661-59da-4bf6-b63c-d964fec920dc","provider_id":"scaleway://instance/fr-par-1/c2b09629-cf19-483b-b1d4-2883d199eb5b","public_ip_v4":"212.47.247.189","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-04-07T13:58:46.518088Z"}],"total_count":2}' + headers: + Content-Length: + - "1214" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9fe24ce1-d895-4a40-a02b-bdbc0f5c49f0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d07f8661-59da-4bf6-b63c-d964fec920dc + method: DELETE + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6095886a-6f80-4247-8151-e3d969998506","container_runtime":"containerd","created_at":"2023-04-07T13:50:35.069905Z","id":"d07f8661-59da-4bf6-b63c-d964fec920dc","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"deleting","tags":[],"updated_at":"2023-04-07T13:58:53.183555999Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.26.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "591" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee392ad3-a1bb-40dc-ae0c-7533092d5698 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506?with_additional_resources=true + method: DELETE + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:58:53.263136558Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1450" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69548064-83bd-4aa5-83b4-49dc2137085f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:58:53.263137Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d982b629-97df-457f-8457-d66153796a31 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:58:53.263137Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:58:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 542281a0-91a4-4519-985f-918e568313a7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:58:53.263137Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:59:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9292e402-27bc-4652-9267-d1a1d856fee1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:58:53.263137Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:59:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2e0b9b5-981e-4e42-a791-49daca6222ae + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6095886a-6f80-4247-8151-e3d969998506.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","created_at":"2023-04-07T13:50:29.602121Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6095886a-6f80-4247-8151-e3d969998506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6095886a-6f80-4247-8151-e3d969998506","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":"c39faed2-bc4b-440e-8502-4cc37bbb2cda","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-04-07T13:58:53.263137Z","upgrade_available":false,"version":"1.26.2"}' + headers: + Content-Length: + - "1447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:59:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9fefd3bb-04d5-4300-939f-7623e94f4d90 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"6095886a-6f80-4247-8151-e3d969998506","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13:59:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63481c33-f9a7-4312-9b28-3fa2aaa38ae0 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/c39faed2-bc4b-440e-8502-4cc37bbb2cda + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13: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: + - 7999af6e-910c-4885-a6f3-3690eddb37aa + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6095886a-6f80-4247-8151-e3d969998506 + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"6095886a-6f80-4247-8151-e3d969998506","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 07 Apr 2023 13: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: + - cfa8191e-1b41-470b-a5fa-714d6ac745e6 + status: 404 Not Found + code: 404 + duration: ""