diff --git a/docs/resources/apple_silicon.md b/docs/resources/apple_silicon.md
index 5038e4b177..1d03121224 100644
--- a/docs/resources/apple_silicon.md
+++ b/docs/resources/apple_silicon.md
@@ -43,8 +43,7 @@ In addition to all above arguments, the following attributes are exported:
~> **Important:** Apple Silicon servers' IDs are [zoned](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
-- `state` - The state of the server. Check the possible values on
- our [sdk](https://github.com/scaleway/scaleway-sdk-go/blob/master/api/applesilicon/v1alpha1/applesilicon_sdk.go#L103).
+- `state` - The state of the server.
- `ip` - IPv4 address of the server (IPv4 address).
- `vnc_url` - URL of the VNC.
- `created_at` - The date and time of the creation of the Apple Silicon server.
@@ -57,5 +56,5 @@ In addition to all above arguments, the following attributes are exported:
Instance servers can be imported using the `{zone}/{id}`, e.g.
```bash
-$ terraform import scaleway_apple_silicon.server fr-par-1/11111111-1111-1111-1111-111111111111
+$ terraform import scaleway_apple_silicon_server.main fr-par-1/11111111-1111-1111-1111-111111111111
```
diff --git a/docs/resources/object.md b/docs/resources/object.md
index daac50a28d..e8ed9dbc15 100644
--- a/docs/resources/object.md
+++ b/docs/resources/object.md
@@ -16,7 +16,7 @@ resource "scaleway_object_bucket" "some_bucket" {
}
resource scaleway_object "some_file" {
- bucket = scaleway_object_bucket.some_bucket.name
+ bucket = scaleway_object_bucket.some_bucket.id
key = "object_path"
file = "myfile"
@@ -29,7 +29,7 @@ resource scaleway_object "some_file" {
The following arguments are supported:
-* `bucket` - (Required) The name of the bucket.
+* `bucket` - (Required) The name of the bucket, or its Terraform ID.
* `key` - (Required) The path of the object.
* `file` - (Optional) The name of the file to upload, defaults to an empty file. Only one of `file`, `content` or `content_base64` can be defined.
* `content` - (Optional) The content of the file to upload. Only one of `file`, `content` or `content_base64` can be defined.
@@ -39,7 +39,7 @@ The following arguments are supported:
* `visibility` - (Optional) Visibility of the object, `public-read` or `private`
* `metadata` - (Optional) Map of metadata used for the object, keys must be lowercase
* `tags` - (Optional) Map of tags
-* `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the bucket is associated with.
+* `project_id` - (Defaults to [provider](../index.md#arguments-reference) `project_id`) The ID of the project the bucket is associated with.
## Attributes Reference
diff --git a/docs/resources/webhosting.md b/docs/resources/webhosting.md
index 90c64640ac..3b3ad5c9a1 100644
--- a/docs/resources/webhosting.md
+++ b/docs/resources/webhosting.md
@@ -1,5 +1,5 @@
---
-subcategory: "Webhosting"
+subcategory: "Web hosting"
page_title: "Scaleway: scaleway_webhosting"
---
diff --git a/scaleway/helpers_apple_silicon.go b/scaleway/helpers_apple_silicon.go
index ae984b08d0..a33e433d82 100644
--- a/scaleway/helpers_apple_silicon.go
+++ b/scaleway/helpers_apple_silicon.go
@@ -14,10 +14,6 @@ const (
defaultAppleSiliconServerRetryInterval = 5 * time.Second
)
-const (
- AppleSiliconM1Type = "M1-M"
-)
-
// asAPIWithZone returns a new apple silicon API and the zone
func asAPIWithZone(d *schema.ResourceData, m interface{}) (*applesilicon.API, scw.Zone, error) {
meta := m.(*Meta)
diff --git a/scaleway/helpers_k8s.go b/scaleway/helpers_k8s.go
index d4d773890a..b7e45a7a54 100644
--- a/scaleway/helpers_k8s.go
+++ b/scaleway/helpers_k8s.go
@@ -124,7 +124,10 @@ func waitK8SClusterDeleted(ctx context.Context, k8sAPI *k8s.API, region scw.Regi
return err
}
- return fmt.Errorf("cluster %s has state %s, wants %s", clusterID, cluster.Status, k8s.ClusterStatusDeleted)
+ if cluster.Status != k8s.ClusterStatusDeleted {
+ return fmt.Errorf("cluster %s has state %s, wants %s", clusterID, cluster.Status, k8s.ClusterStatusDeleted)
+ }
+ return nil
}
func waitK8SPoolReady(ctx context.Context, k8sAPI *k8s.API, region scw.Region, poolID string, timeout time.Duration) (*k8s.Pool, error) {
diff --git a/scaleway/resource_apple_silicon_server.go b/scaleway/resource_apple_silicon_server.go
index 760302c849..87f78ff80f 100644
--- a/scaleway/resource_apple_silicon_server.go
+++ b/scaleway/resource_apple_silicon_server.go
@@ -6,7 +6,6 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
- "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
applesilicon "github.com/scaleway/scaleway-sdk-go/api/applesilicon/v1alpha1"
"github.com/scaleway/scaleway-sdk-go/scw"
)
@@ -37,9 +36,6 @@ func resourceScalewayAppleSiliconServer() *schema.Resource {
Description: "Type of the server",
Required: true,
ForceNew: true,
- ValidateFunc: validation.StringInSlice([]string{
- AppleSiliconM1Type,
- }, false),
},
// Computed
"ip": {
diff --git a/scaleway/resource_apple_silicon_server_test.go b/scaleway/resource_apple_silicon_server_test.go
index 5927b4bfc9..6d49b40d07 100644
--- a/scaleway/resource_apple_silicon_server_test.go
+++ b/scaleway/resource_apple_silicon_server_test.go
@@ -59,7 +59,7 @@ func TestAccScalewayAppleSiliconServer_Basic(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testAccCheckScalewayAppleSiliconExists(tt, "scaleway_apple_silicon_server.main"),
resource.TestCheckResourceAttr("scaleway_apple_silicon_server.main", "name", "test-m1"),
- resource.TestCheckResourceAttr("scaleway_apple_silicon_server.main", "type", AppleSiliconM1Type),
+ resource.TestCheckResourceAttr("scaleway_apple_silicon_server.main", "type", "M1-M"),
// Computed
resource.TestCheckResourceAttrSet("scaleway_apple_silicon_server.main", "ip"),
resource.TestCheckResourceAttrSet("scaleway_apple_silicon_server.main", "vnc_url"),
diff --git a/scaleway/resource_k8s_pool.go b/scaleway/resource_k8s_pool.go
index e0cd673676..0da060da0f 100644
--- a/scaleway/resource_k8s_pool.go
+++ b/scaleway/resource_k8s_pool.go
@@ -144,6 +144,7 @@ func resourceScalewayK8SPool() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
+ Computed: true,
Description: "System volume type of the nodes composing the pool",
ValidateFunc: validation.StringInSlice([]string{
k8s.PoolVolumeTypeBSSD.String(),
@@ -154,6 +155,7 @@ func resourceScalewayK8SPool() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
ForceNew: true,
+ Computed: true,
Description: "The size of the system volume of the nodes in gigabyte",
},
"public_ip_disabled": {
@@ -378,6 +380,10 @@ func resourceScalewayK8SPoolRead(ctx context.Context, d *schema.ResourceData, me
_ = d.Set("version", pool.Version)
_ = d.Set("min_size", int(pool.MinSize))
_ = d.Set("max_size", int(pool.MaxSize))
+ _ = d.Set("root_volume_type", pool.RootVolumeType)
+ if pool.RootVolumeSize != nil {
+ _ = d.Set("root_volume_size_in_gb", int(*pool.RootVolumeSize)/1e9)
+ }
_ = d.Set("tags", pool.Tags)
_ = d.Set("container_runtime", pool.ContainerRuntime)
_ = d.Set("created_at", pool.CreatedAt.Format(time.RFC3339))
@@ -385,6 +391,7 @@ func resourceScalewayK8SPoolRead(ctx context.Context, d *schema.ResourceData, me
_ = d.Set("nodes", nodes)
_ = d.Set("status", pool.Status)
_ = d.Set("kubelet_args", flattenKubeletArgs(pool.KubeletArgs))
+ _ = d.Set("region", region)
_ = d.Set("zone", pool.Zone)
_ = d.Set("upgrade_policy", poolUpgradePolicyFlatten(pool))
_ = d.Set("public_ip_disabled", pool.PublicIPDisabled)
diff --git a/scaleway/resource_object.go b/scaleway/resource_object.go
index fa231257a8..6206c91581 100644
--- a/scaleway/resource_object.go
+++ b/scaleway/resource_object.go
@@ -33,9 +33,10 @@ func resourceScalewayObject() *schema.Resource {
},
Schema: map[string]*schema.Schema{
"bucket": {
- Type: schema.TypeString,
- Required: true,
- Description: "The name of the bucket",
+ Type: schema.TypeString,
+ Required: true,
+ Description: "The bucket's name or regional ID.",
+ DiffSuppressFunc: diffSuppressFuncLocality,
},
"key": {
Type: schema.TypeString,
@@ -113,7 +114,18 @@ func resourceScalewayObjectCreate(ctx context.Context, d *schema.ResourceData, m
ctx, cancel := context.WithTimeout(ctx, d.Timeout(schema.TimeoutCreate))
defer cancel()
- bucket := d.Get("bucket").(string)
+ regionalID := expandRegionalID(d.Get("bucket"))
+ bucket := regionalID.ID
+ bucketRegion := regionalID.Region
+
+ if bucketRegion != "" && bucketRegion != region {
+ s3Client, err = s3ClientForceRegion(d, meta, bucketRegion.String())
+ if err != nil {
+ return diag.FromErr(err)
+ }
+ region = bucketRegion
+ }
+
key := d.Get("key").(string)
req := &s3.PutObjectInput{
@@ -177,10 +189,13 @@ func resourceScalewayObjectUpdate(ctx context.Context, d *schema.ResourceData, m
ctx, cancel := context.WithTimeout(ctx, d.Timeout(schema.TimeoutUpdate))
defer cancel()
+ bucketUpdated := expandRegionalID(d.Get("bucket")).ID
+ keyUpdated := d.Get("key").(string)
+
if d.HasChanges("file", "hash") {
req := &s3.PutObjectInput{
- Bucket: expandStringPtr(d.Get("bucket")),
- Key: expandStringPtr(d.Get("key")),
+ Bucket: expandStringPtr(bucketUpdated),
+ Key: expandStringPtr(keyUpdated),
StorageClass: expandStringPtr(d.Get("storage_class")),
Metadata: expandMapStringStringPtr(d.Get("metadata")),
ACL: expandStringPtr(d.Get("visibility").(string)),
@@ -198,8 +213,8 @@ func resourceScalewayObjectUpdate(ctx context.Context, d *schema.ResourceData, m
_, err = s3Client.PutObjectWithContext(ctx, req)
} else {
_, err = s3Client.CopyObjectWithContext(ctx, &s3.CopyObjectInput{
- Bucket: expandStringPtr(d.Get("bucket")),
- Key: expandStringPtr(d.Get("key")),
+ Bucket: expandStringPtr(bucketUpdated),
+ Key: expandStringPtr(keyUpdated),
StorageClass: expandStringPtr(d.Get("storage_class")),
CopySource: scw.StringPtr(fmt.Sprintf("%s/%s", bucket, key)),
Metadata: expandMapStringStringPtr(d.Get("metadata")),
@@ -222,7 +237,7 @@ func resourceScalewayObjectUpdate(ctx context.Context, d *schema.ResourceData, m
if d.HasChange("tags") {
_, err := s3Client.PutObjectTaggingWithContext(ctx, &s3.PutObjectTaggingInput{
- Bucket: expandStringPtr(d.Get("bucket")),
+ Bucket: expandStringPtr(bucketUpdated),
Key: expandStringPtr(key),
Tagging: &s3.Tagging{
TagSet: expandObjectBucketTags(d.Get("tags")),
@@ -233,7 +248,7 @@ func resourceScalewayObjectUpdate(ctx context.Context, d *schema.ResourceData, m
}
}
- d.SetId(newRegionalIDString(region, objectID(d.Get("bucket").(string), d.Get("key").(string))))
+ d.SetId(newRegionalIDString(region, objectID(bucketUpdated, keyUpdated)))
return resourceScalewayObjectCreate(ctx, d, meta)
}
@@ -256,7 +271,7 @@ func resourceScalewayObjectRead(ctx context.Context, d *schema.ResourceData, met
}
_ = d.Set("region", region)
- _ = d.Set("bucket", bucket)
+ _ = d.Set("bucket", newRegionalIDString(region, bucket))
_ = d.Set("key", key)
for k, v := range obj.Metadata {
diff --git a/scaleway/resource_object_test.go b/scaleway/resource_object_test.go
index 27ca9f0c11..6e270107f7 100644
--- a/scaleway/resource_object_test.go
+++ b/scaleway/resource_object_test.go
@@ -24,23 +24,28 @@ func TestAccScalewayObject_Basic(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region= "%s"
tags = {
foo = "bar"
}
}
-
+
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
),
},
@@ -48,17 +53,19 @@ func TestAccScalewayObject_Basic(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region= "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile/foo"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
),
},
@@ -66,17 +73,19 @@ func TestAccScalewayObject_Basic(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region= "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile/foo/bar"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
),
},
@@ -94,24 +103,29 @@ func TestAccScalewayObject_Hash(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
hash = "1"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
),
},
@@ -119,18 +133,20 @@ func TestAccScalewayObject_Hash(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
hash = "2"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
),
},
@@ -148,40 +164,47 @@ func TestAccScalewayObject_Move(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file")),
},
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile2"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file")),
},
},
@@ -198,25 +221,30 @@ func TestAccScalewayObject_StorageClass(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
storage_class = "ONEZONE_IA"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "storage_class", "ONEZONE_IA"),
),
@@ -225,19 +253,21 @@ func TestAccScalewayObject_StorageClass(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
storage_class = "STANDARD"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "storage_class", "STANDARD"),
),
@@ -256,27 +286,32 @@ func TestAccScalewayObject_Metadata(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
metadata = {
key = "value"
}
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "metadata.key", "value"),
),
@@ -285,13 +320,14 @@ func TestAccScalewayObject_Metadata(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
tags = {
foo = "bar"
}
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
metadata = {
@@ -299,8 +335,9 @@ func TestAccScalewayObject_Metadata(t *testing.T) {
other_key = "VALUE"
}
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "metadata.key", "other_value"),
resource.TestCheckResourceAttr("scaleway_object.file", "metadata.other_key", "VALUE"),
@@ -320,24 +357,29 @@ func TestAccScalewayObject_Tags(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
tags = {
key = "value"
}
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "tags.key", "value"),
),
@@ -346,10 +388,11 @@ func TestAccScalewayObject_Tags(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
tags = {
@@ -357,8 +400,9 @@ func TestAccScalewayObject_Tags(t *testing.T) {
other_key = "VALUE"
}
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "tags.key", "other_value"),
resource.TestCheckResourceAttr("scaleway_object.file", "tags.other_key", "VALUE"),
@@ -378,22 +422,27 @@ func TestAccScalewayObject_Visibility(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
visibility = "public-read"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "visibility", "public-read"),
),
@@ -402,16 +451,18 @@ func TestAccScalewayObject_Visibility(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
visibility = "private"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
resource.TestCheckResourceAttr("scaleway_object.file", "visibility", "private"),
),
@@ -430,22 +481,27 @@ func TestAccScalewayObject_State(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
visibility = "public-read"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
),
},
@@ -453,24 +509,26 @@ func TestAccScalewayObject_State(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "file" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
visibility = "public-read"
}
resource scaleway_object "file_imported" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "myfile"
}
- `, bucketName),
+ `, bucketName, objectTestsMainRegion),
ImportState: true,
ResourceName: "scaleway_object.file_imported",
- ImportStateId: fmt.Sprintf("fr-par/%s/myfile", bucketName),
+ ImportStateId: fmt.Sprintf("%s/%s/myfile", objectTestsMainRegion, bucketName),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
testAccCheckScalewayObjectExists(tt, "scaleway_object.file_imported"),
resource.TestCheckResourceAttrPair("scaleway_object.file_imported", "id", "scaleway_object.file", "id"),
@@ -494,21 +552,26 @@ func TestAccScalewayObject_ByContent(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "by-content" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "test-by-content"
content = "%s"
}
- `, bucketName, fileContentStep1),
+ `, bucketName, objectTestsMainRegion, fileContentStep1),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.by-content"),
resource.TestCheckResourceAttr("scaleway_object.by-content", "content", fileContentStep1),
),
@@ -517,15 +580,17 @@ func TestAccScalewayObject_ByContent(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "by-content" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "test-by-content"
content = "%s"
}
- `, bucketName, fileContentStep2),
+ `, bucketName, objectTestsMainRegion, fileContentStep2),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.by-content"),
resource.TestCheckResourceAttr("scaleway_object.by-content", "content", fileContentStep2),
),
@@ -547,21 +612,26 @@ func TestAccScalewayObject_ByContentBase64(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: tt.ProviderFactories,
- CheckDestroy: testAccCheckScalewayObjectDestroy(tt),
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "by-content-base64" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "test-by-content-base64"
content_base64 = base64encode("%s")
}
- `, bucketName, fileContentStep1),
+ `, bucketName, objectTestsMainRegion, fileContentStep1),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.by-content-base64"),
resource.TestCheckResourceAttr("scaleway_object.by-content-base64", "content_base64", fileEncodedStep1),
),
@@ -570,15 +640,17 @@ func TestAccScalewayObject_ByContentBase64(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "by-content-base64" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "test-by-content-base64"
content_base64 = base64encode("%s")
}
- `, bucketName, fileContentStep2),
+ `, bucketName, objectTestsMainRegion, fileContentStep2),
Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
testAccCheckScalewayObjectExists(tt, "scaleway_object.by-content-base64"),
resource.TestCheckResourceAttr("scaleway_object.by-content-base64", "content_base64", fileEncodedStep2),
),
@@ -587,30 +659,91 @@ func TestAccScalewayObject_ByContentBase64(t *testing.T) {
Config: fmt.Sprintf(`
resource "scaleway_object_bucket" "base-01" {
name = "%s"
+ region = "%s"
}
resource scaleway_object "by-content-base64" {
- bucket = scaleway_object_bucket.base-01.name
+ bucket = scaleway_object_bucket.base-01.id
key = "test-by-content-base64"
content_base64 = "%s"
}
- `, bucketName, fileContentStep2),
+ `, bucketName, objectTestsMainRegion, fileContentStep2),
ExpectError: regexp.MustCompile("illegal base64 data at input byte 4"),
},
},
})
}
+func TestAccScalewayObject_WithBucketName(t *testing.T) {
+ if !*UpdateCassettes {
+ t.Skip("Skipping ObjectStorage test as this kind of resource can't be deleted before 24h")
+ }
+ tt := NewTestTools(t)
+ defer tt.Cleanup()
+ bucketName := sdkacctest.RandomWithPrefix("test-acc-scaleway-object-basic")
+ resource.ParallelTest(t, resource.TestCase{
+ PreCheck: func() { testAccPreCheck(t) },
+ ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectDestroy(tt),
+ testAccCheckScalewayObjectBucketDestroy(tt),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "base-01" {
+ name = "%s"
+ region= "%s"
+ tags = {
+ foo = "bar"
+ }
+ }
+
+ resource scaleway_object "file" {
+ bucket = scaleway_object_bucket.base-01.name
+ key = "myfile"
+ }
+ `, bucketName, objectTestsMainRegion),
+ ExpectError: regexp.MustCompile("NoSuchBucket: The specified bucket does not exist"),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "base-01" {
+ name = "%[1]s"
+ region= "%[2]s"
+ tags = {
+ foo = "bar"
+ }
+ }
+
+ resource scaleway_object "file" {
+ bucket = scaleway_object_bucket.base-01.name
+ region = "%[2]s"
+ key = "myfile"
+ }
+ `, bucketName, objectTestsMainRegion),
+ Check: resource.ComposeTestCheckFunc(
+ testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.base-01", true),
+ testAccCheckScalewayObjectExists(tt, "scaleway_object.file"),
+ ),
+ },
+ },
+ })
+}
+
func testAccCheckScalewayObjectExists(tt *TestTools, n string) resource.TestCheckFunc {
return func(state *terraform.State) error {
rs := state.RootModule().Resources[n]
if rs == nil {
return fmt.Errorf("resource not found")
}
- bucketName := rs.Primary.Attributes["bucket"]
key := rs.Primary.Attributes["key"]
- s3Client, err := newS3ClientFromMeta(tt.Meta)
+ regionalID := expandRegionalID(rs.Primary.Attributes["bucket"])
+ bucketRegion := regionalID.Region.String()
+ bucketName := regionalID.ID
+
+ s3Client, err := newS3ClientFromMetaForceRegion(tt.Meta, bucketRegion)
if err != nil {
return err
}
diff --git a/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml b/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml
index 4ec31623d9..6ff5655654 100644
--- a/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml
+++ b/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8effdc06-4a20-49cf-9a80-7dcd66c3f2b4
+ - a9def685-0549-4ca9-98cc-e4991be3894a
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:14.908305Z","dhcp_enabled":true,"id":"f33ee154-1936-4ba8-9e29-79eb6853b794","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.908305Z","id":"b944d10b-9468-440f-b682-838f9d43c238","subnet":"172.16.28.0/22","updated_at":"2023-11-13T13:51:14.908305Z"},{"created_at":"2023-11-13T13:51:14.908305Z","id":"0dc4edc3-a072-4421-ab30-cfb111d59806","subnet":"fd63:256c:45f7:2ba6::/64","updated_at":"2023-11-13T13:51:14.908305Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.908305Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.451273Z","dhcp_enabled":true,"id":"45140fab-8f92-4906-bb4b-2d102de9318c","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.451273Z","id":"a80a6f03-3dd8-42ab-8fd6-7962676a57d9","subnet":"172.16.40.0/22","updated_at":"2023-12-08T15:58:32.451273Z"},{"created_at":"2023-12-08T15:58:32.451273Z","id":"306b62d6-46c8-4f55-a594-6b5e1740db25","subnet":"fd63:256c:45f7:211c::/64","updated_at":"2023-12-08T15:58:32.451273Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.451273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "725"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e236646-ffa2-4024-ab79-477bbcf1d5e6
+ - 1b658d39-a976-4aea-a1ba-d23cf44dcda7
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f33ee154-1936-4ba8-9e29-79eb6853b794
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/45140fab-8f92-4906-bb4b-2d102de9318c
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:14.908305Z","dhcp_enabled":true,"id":"f33ee154-1936-4ba8-9e29-79eb6853b794","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.908305Z","id":"b944d10b-9468-440f-b682-838f9d43c238","subnet":"172.16.28.0/22","updated_at":"2023-11-13T13:51:14.908305Z"},{"created_at":"2023-11-13T13:51:14.908305Z","id":"0dc4edc3-a072-4421-ab30-cfb111d59806","subnet":"fd63:256c:45f7:2ba6::/64","updated_at":"2023-11-13T13:51:14.908305Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.908305Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.451273Z","dhcp_enabled":true,"id":"45140fab-8f92-4906-bb4b-2d102de9318c","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.451273Z","id":"a80a6f03-3dd8-42ab-8fd6-7962676a57d9","subnet":"172.16.40.0/22","updated_at":"2023-12-08T15:58:32.451273Z"},{"created_at":"2023-12-08T15:58:32.451273Z","id":"306b62d6-46c8-4f55-a594-6b5e1740db25","subnet":"fd63:256c:45f7:211c::/64","updated_at":"2023-12-08T15:58:32.451273Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.451273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "725"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 366dd99f-4615-40d9-8f01-f30c50cd30c8
+ - a5e443e2-9d42-4ad8-b63b-c09fd88548ba
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"tf-cluster","description":"","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"tf-cluster","description":"","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873215544Z","created_at":"2023-11-13T13:51:18.873215544Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.883618610Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977106Z","created_at":"2023-12-08T15:58:33.889977106Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.901082840Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1505"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f94010a3-46af-4951-8179-87794b36ac55
+ - 1b9172a1-c05a-4682-8f87-506a6b815dd5
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.883619Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.901083Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1496"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1144fe97-48b5-4cd6-a4bf-42bb8beca5e6
+ - a24ba7d5-6cbf-47a6-99ed-7ea665bf4ef0
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.316991Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:35.547378Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1501"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7dc2900a-3dc6-4e08-bdcf-15a96b90d653
+ - dea90d77-7ea7-45f6-8b10-7d5f2d345635
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.316991Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:35.547378Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1501"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 018f6c9c-bb5f-4b47-92f3-0434c40d930a
+ - 40ec1784-b0a8-43a3-8a07-d747847968d7
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b7a727cb-b695-46b2-9f98-8f914947673c
+ - bdb93379-9965-484f-9874-69d88656decb
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.316991Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:35.547378Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1501"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b0ee4bb-5da6-4b8a-89e0-cb2cba672eec
+ - 0a0d9b6f-d47d-43a4-8dcb-7d52d6da9ae9
status: 200 OK
code: 200
duration: ""
@@ -316,16 +316,16 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown
method: GET
response:
- body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.316991Z","upgrade_available":false,"version":"1.28.2"},{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9c2505ba-29d4-4471-b716-3470d419f337.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:19.725864Z","created_at":"2023-11-13T13:51:19.725864Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9c2505ba-29d4-4471-b716-3470d419f337.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9c2505ba-29d4-4471-b716-3470d419f337","ingress":"none","name":"tf-cluster-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7d4cdc29-ed97-4c47-9dad-9866c3e4716e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_pool","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.764555Z","upgrade_available":false,"version":"1.28.2"}],"total_count":2}'
+ body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:35.547378Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}'
headers:
Content-Length:
- - "3038"
+ - "1533"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,7 +335,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b82aa8c7-8b39-4de1-a66b-3fdbe34e9471
+ - e7d1e88d-4b96-4de6-9098-3ceb58dcb0e4
status: 200 OK
code: 200
duration: ""
@@ -346,10 +346,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.316991Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:35.547378Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1501"
@@ -358,7 +358,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -368,7 +368,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - de1068a3-fd60-4184-881a-a44fa9e65da9
+ - 669de99f-3c7f-44f6-8e28-7e927ca4ebc3
status: 200 OK
code: 200
duration: ""
@@ -379,10 +379,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:51:21.316991Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:58:35.547378Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1501"
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -401,7 +401,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 09bda399-1222-465c-a19e-4dc1e9d81a80
+ - 3c82aba4-a87d-4432-896d-aef641ba4463
status: 200 OK
code: 200
duration: ""
@@ -412,10 +412,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -424,7 +424,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -434,7 +434,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - faa58dae-80f8-49f2-9291-8382d80f0f57
+ - 2a011aa2-2305-42ac-8a49-12ba3838aaa3
status: 200 OK
code: 200
duration: ""
@@ -445,10 +445,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -457,7 +457,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -467,7 +467,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93caca29-19bd-4ba6-8b09-1c435be1d4b6
+ - 5753a824-c812-42c3-85fc-5919581bd1d5
status: 200 OK
code: 200
duration: ""
@@ -480,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/pools
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/pools
method: POST
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605094Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523184771Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "620"
@@ -492,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f53019c5-3682-464c-a82a-1a830d627f4e
+ - d0814247-e970-4d4f-be91-5c579db2e9c7
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00192aa2-bc0c-4c34-afc4-2dd050557703
+ - 45118496-1202-42cd-aa93-27a9222b9224
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:29 GMT
+ - Fri, 08 Dec 2023 15:58:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9c1d0b43-0b94-491c-bc16-39e587388533
+ - a540aa4c-e6b5-4c29-87f9-de8b9d6a89a4
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:35 GMT
+ - Fri, 08 Dec 2023 15:58:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 52f7311b-e7fe-49b3-99fd-1cbe4285b9fc
+ - ebe23a5d-4c25-4dc0-82fe-964f0999f1d3
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:40 GMT
+ - Fri, 08 Dec 2023 15:58:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f31fcd40-c5cc-46c7-b10e-e4f62dfae938
+ - 7d08e5dd-a4b1-447b-abd7-c5e8080f7243
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:45 GMT
+ - Fri, 08 Dec 2023 15:59:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c0155232-8698-4084-a44d-455fff12fe68
+ - 0d4bcc16-e389-4583-9434-89de412de1b4
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:50 GMT
+ - Fri, 08 Dec 2023 15:59:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 698f0cf1-fc5c-4ab4-befa-3ac2782d838e
+ - e6681f9d-7c52-4b75-b901-bcbff45b551c
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 15:59:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93038302-79bc-4924-9306-2d1a6c883e04
+ - 4345964e-1f19-4fec-8b7f-366bd5e82ce7
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:00 GMT
+ - Fri, 08 Dec 2023 15:59:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65c54e8e-01a0-4fc9-8ca1-3477913029ca
+ - 7e51ed74-48b9-4c9e-9b98-818684ccf83e
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:05 GMT
+ - Fri, 08 Dec 2023 15:59:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb422ac2-b37d-4025-9995-c167b5987966
+ - e439abe9-7a1c-4dbd-a2e2-66041c51663d
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:10 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 156e07e6-d49e-4edc-b575-d1dd39d0a4a8
+ - 3dccd10d-6a16-447c-9296-31fbb322b589
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:15 GMT
+ - Fri, 08 Dec 2023 15:59:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ab474c15-4dac-4046-830b-9c68354c7184
+ - d26bb26b-c7b2-41ee-8e35-bd098c3d5bc1
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:20 GMT
+ - Fri, 08 Dec 2023 15:59:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d2b20cfd-c2e1-4bcb-b5e6-f36211ae33c2
+ - 860cf198-d340-416d-aa4f-41cf481dd75f
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:26 GMT
+ - Fri, 08 Dec 2023 15:59:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e1f0c23-3faf-4ab2-a417-dc7a1989733e
+ - 3d317723-f936-4420-83ff-7d8ec923e1ba
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:31 GMT
+ - Fri, 08 Dec 2023 15:59:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 50ec258f-1ccc-4110-bf80-b973a984b599
+ - 83441130-43e8-457b-862c-de31ccc594f8
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:36 GMT
+ - Fri, 08 Dec 2023 15:59:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 836969c5-d035-4bbe-abef-8c07c81dd2a9
+ - 405a78de-6dd4-45a4-a3a1-8442b0317b8f
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:41 GMT
+ - Fri, 08 Dec 2023 15:59:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3225e636-bd09-4fcc-8d99-b469051f4888
+ - eb704aba-6391-4cb0-930c-d4752f97843a
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1053,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:47 GMT
+ - Fri, 08 Dec 2023 16:00:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ccf0e9b-68fe-4ef3-8373-08b27cf34cc7
+ - 95c76afe-d65e-4db9-be47-65ed65c11bf3
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1086,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:52 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f1639a1-41e7-41ca-82ff-7ed4f3958ff6
+ - 1e2a44c3-eab2-4601-a25d-a446559e3c79
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1119,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:57 GMT
+ - Fri, 08 Dec 2023 16:00:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fe04596f-9b62-4c56-9314-26444fedfa63
+ - 0b38dafe-554c-4f45-911f-2ccceac94753
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1152,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:02 GMT
+ - Fri, 08 Dec 2023 16:00:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4de1ff4-21ea-4f96-a2f4-799a56b12fb5
+ - 53037f0e-2fdc-4d8f-aabf-2e3f8acbf7ef
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1185,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:07 GMT
+ - Fri, 08 Dec 2023 16:00:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ade123bf-1e1a-46c4-adaf-ec05396f958e
+ - 3f0501a5-981c-4c68-8a5d-422debad46b8
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1218,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:12 GMT
+ - Fri, 08 Dec 2023 16:00:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65fdba00-02fc-42ab-8c50-d8575a655df4
+ - d9db9e73-295d-4762-9560-e2c6cd8ca08e
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:18 GMT
+ - Fri, 08 Dec 2023 16:00:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 41f2f34a-89df-429e-bc5b-1459810d7b94
+ - 7aae75c7-ec72-4199-984f-3db2605043e6
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1284,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:23 GMT
+ - Fri, 08 Dec 2023 16:01:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b628f63-a34c-4bd8-8e06-85bc1c74a314
+ - 3cf65243-adb9-4172-ab25-a381dfcfa140
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1317,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:28 GMT
+ - Fri, 08 Dec 2023 16:01:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a18d37a-9b4f-4079-be99-bc07aa342638
+ - 2b645433-d58c-446d-ac37-5169aefc980e
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1350,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:33 GMT
+ - Fri, 08 Dec 2023 16:01:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c51cc10d-d211-4054-90a7-a5082a1099ae
+ - 966b79a0-98ae-4756-8287-aca95270085a
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1383,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:38 GMT
+ - Fri, 08 Dec 2023 16:01:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c2057c2-6e81-4e3b-8425-57ba692bd43c
+ - 703acea1-782d-49c9-98ea-225e91e441d4
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1416,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:43 GMT
+ - Fri, 08 Dec 2023 16:01:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2a1ed5f2-af5a-49bd-bf15-6fb55165c3bb
+ - 91c4fbfb-b169-4382-b9a9-3116b97bb29b
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1449,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:48 GMT
+ - Fri, 08 Dec 2023 16:01:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ffc447cf-35c9-48d1-aa59-5cc6e14df26e
+ - a82123b5-22e0-4588-b085-db6e9554a4de
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1482,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:53 GMT
+ - Fri, 08 Dec 2023 16:01:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 467db6e0-3a40-48df-81ad-f2f7be531e31
+ - 0bcd5e55-e07d-46e2-a6e5-c6d3ffeb858b
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:58 GMT
+ - Fri, 08 Dec 2023 16:01:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fe898449-bf84-44c3-b53f-ddf02096405a
+ - e1ed68f7-22fa-4a9d-8646-057d45abe1d9
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1548,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:03 GMT
+ - Fri, 08 Dec 2023 16:01:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 990b071c-5190-44f6-8809-350e9bdd9d30
+ - d438f57a-623f-4d47-bf59-4fef065df031
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1581,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:08 GMT
+ - Fri, 08 Dec 2023 16:01:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8924581d-1bed-4067-b2cb-8c13245e1565
+ - e0bea51e-c172-4d39-9b90-278b0f178202
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1614,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:13 GMT
+ - Fri, 08 Dec 2023 16:01:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 50f44484-abdb-4304-83f4-86cde6533588
+ - e37d5f4d-49ad-45d8-bbcc-e1914af54511
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1647,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:19 GMT
+ - Fri, 08 Dec 2023 16:02:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ceb16a6e-f15e-4ad8-bd41-ac731a069cf4
+ - 022df069-912a-45f1-9115-79023f64636d
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1680,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:24 GMT
+ - Fri, 08 Dec 2023 16:02:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e123551-6ecd-4983-bec0-52fec5f3453e
+ - 465f739b-19f5-4b1f-a60c-f570901c3e17
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1713,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:29 GMT
+ - Fri, 08 Dec 2023 16:02:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e3c10f0-56f2-4d9f-a595-3eb21b8d30c2
+ - 9dc3a1b8-b8b9-4fa1-9b09-a876dcf5b082
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1746,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:34 GMT
+ - Fri, 08 Dec 2023 16:02:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b7a2a75e-2e19-4a69-9bc4-ae6e28a4fe63
+ - 91dd000a-a205-492f-a491-7737bd99f402
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1779,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:39 GMT
+ - Fri, 08 Dec 2023 16:02:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00f33293-ef77-4ed5-a953-59bd2cd22a03
+ - b6647b70-3330-49d8-b33c-3d3f6cb00313
status: 200 OK
code: 200
duration: ""
@@ -1800,10 +1800,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1812,7 +1812,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:44 GMT
+ - Fri, 08 Dec 2023 16:02:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c749b945-956b-4979-aa74-cecb78c3f2f7
+ - bfe90758-8c45-4ad4-9b2b-036a0763ce02
status: 200 OK
code: 200
duration: ""
@@ -1833,10 +1833,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1845,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:49 GMT
+ - Fri, 08 Dec 2023 16:02:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c396febe-5536-49e7-8fc4-406d00dfd014
+ - 19d2321d-a170-4a22-80ff-bbcbf058ed37
status: 200 OK
code: 200
duration: ""
@@ -1866,10 +1866,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1878,7 +1878,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:54 GMT
+ - Fri, 08 Dec 2023 16:02:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a9c8a03b-2b04-42b4-9810-ee430199f487
+ - 9824cc26-540d-4bcb-a98d-710bba7dc769
status: 200 OK
code: 200
duration: ""
@@ -1899,10 +1899,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1911,7 +1911,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:59 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32df3894-1954-464e-9ab3-9cef78fe415a
+ - a27bcc42-934d-4af0-ba03-6c2b853bdcde
status: 200 OK
code: 200
duration: ""
@@ -1932,10 +1932,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1944,7 +1944,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:04 GMT
+ - Fri, 08 Dec 2023 16:02:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1954,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e1724d1-4788-498a-8682-e11a7ee05cbf
+ - e44bd43b-02c7-488d-b991-a61e661ee7cc
status: 200 OK
code: 200
duration: ""
@@ -1965,10 +1965,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -1977,7 +1977,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:09 GMT
+ - Fri, 08 Dec 2023 16:02:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1987,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22ab05f7-9781-4277-b30b-2da23e0cbf6b
+ - df07cbef-9d9c-4edc-8a9b-3b7648098046
status: 200 OK
code: 200
duration: ""
@@ -1998,10 +1998,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.523185Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "617"
@@ -2010,7 +2010,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:14 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2020,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 81dd0964-39e3-446c-bbe0-cb24d1f55112
+ - 9e0ac71c-8e7e-4102-b16b-3d4a2024b121
status: 200 OK
code: 200
duration: ""
@@ -2031,505 +2031,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:20 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 14fee505-ae0f-4c0c-b462-9718689bb6d8
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:25 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e1e995a2-a9e4-45c4-9400-e1fe92089c17
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:30 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 896b77fd-2b01-474e-ac51-eb13b6adfa0b
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:35 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bd6afae8-ac32-42cc-988b-a22bfd0d18bc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:40 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d9767515-cb6d-496e-bb67-e54b5f4a6fce
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:46 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - aa5f2931-84ab-449f-93d9-c5ad12301e27
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:51 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 02c89b99-8508-4a13-b626-b448b5cf30cc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 82f73089-5210-4a9b-8cd5-bf8380c8a7bc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:01 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e2a2dce3-8105-4ab6-b178-69cc5efdde13
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:06 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9dd1d1df-6331-4113-9647-a206ba1c1aa3
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:11 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ae25ca5d-bdc6-4623-8625-d4e6f1ed4943
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 095fe7eb-2203-4d8c-8d2b-5fe7ef25e297
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3ff7f6ed-f40e-436b-bc41-554c4395bfb5
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:27 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e6aecdea-c0fe-4e4b-b5d3-bb863c6b0c44
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.304605Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "617"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:32 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3f281707-e605-4de7-95eb-0867e9ff6241
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:35.351236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:57.813201Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -2538,7 +2043,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2548,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d3fc4cac-c7bf-4611-b158-c896b5597816
+ - ebde0452-76f7-43a0-a888-8480b291916e
status: 200 OK
code: 200
duration: ""
@@ -2559,10 +2064,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -2571,7 +2076,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2581,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5d84e7af-7a05-41e1-8ee0-6e1c8fd2b602
+ - 3ffa748c-e88d-496c-920a-990a3e577b73
status: 200 OK
code: 200
duration: ""
@@ -2592,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:35.351236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:57.813201Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -2604,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2614,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d45abd94-137c-46d7-be60-b444a083c06f
+ - fb76064b-0ec4-4997-b734-cb6626e1ba1c
status: 200 OK
code: 200
duration: ""
@@ -2625,19 +2130,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/nodes?order_by=created_at_asc&page=1&pool_id=7fe9f813-2453-4fe9-a891-af3b455a34bc&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/nodes?order_by=created_at_asc&page=1&pool_id=6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:13.234288Z","error_message":null,"id":"1a3aaa1d-af86-415f-b87b-dd6d6e775d7a","name":"scw-tf-cluster-default-1a3aaa1daf86415fb87bdd6","pool_id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","provider_id":"scaleway://instance/fr-par-1/de7f7c95-6a53-4aa9-a905-7d4c3b3ca8fa","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:35.337279Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:23.959774Z","error_message":null,"id":"ab9ef639-53c3-4eda-bfd3-ba6b45f341ab","name":"scw-tf-cluster-default-ab9ef63953c34edabfd3ba6","pool_id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","provider_id":"scaleway://instance/fr-par-1/524176f5-96ff-4df7-ae9b-0ae02a74e6f0","public_ip_v4":"51.158.102.199","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:02:57.786537Z"}],"total_count":1}'
headers:
Content-Length:
- - "660"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2647,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b6f0a364-e570-4575-ad1b-319625d52810
+ - d1836c73-db94-4874-91e3-0181fb462757
status: 200 OK
code: 200
duration: ""
@@ -2658,10 +2163,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -2670,7 +2175,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2680,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc65fbee-3f3d-4e57-b976-534d5ed5a60d
+ - 2f760d12-ebf1-4b35-8f75-980cb268deee
status: 200 OK
code: 200
duration: ""
@@ -2691,10 +2196,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -2703,7 +2208,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2713,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0fa38948-d026-42e7-9764-414b5de53281
+ - 774cc049-8638-4677-8cb8-c6f548b49509
status: 200 OK
code: 200
duration: ""
@@ -2724,19 +2229,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}'
headers:
Content-Length:
- - "1493"
+ - "1525"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2746,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f2cb3ee-40f7-4558-ab9b-b13d589a7fc7
+ - 7a9a9802-f3c1-424b-8af4-852983c18513
status: 200 OK
code: 200
duration: ""
@@ -2757,19 +2262,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"},{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9c2505ba-29d4-4471-b716-3470d419f337.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:19.725864Z","created_at":"2023-11-13T13:51:19.725864Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9c2505ba-29d4-4471-b716-3470d419f337.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9c2505ba-29d4-4471-b716-3470d419f337","ingress":"none","name":"tf-cluster-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7d4cdc29-ed97-4c47-9dad-9866c3e4716e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_pool","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.703659Z","upgrade_available":false,"version":"1.28.2"}],"total_count":2}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "3022"
+ - "1493"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2779,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55d271cd-0aa9-4e1b-be67-574c37641c8d
+ - 138103b2-39c6-4d83-8653-905ec5df1dfb
status: 200 OK
code: 200
duration: ""
@@ -2790,19 +2295,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2574"
+ - "1493"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2812,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b79baeba-21e3-4365-964b-fbb8724dad1f
+ - 7d88989a-967b-4172-ac8e-11aa94d1e8ce
status: 200 OK
code: 200
duration: ""
@@ -2823,19 +2328,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1493"
+ - "2574"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2845,7 +2350,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b6ee24f-4eed-4cae-8e89-435fb118da58
+ - db99c15b-8531-4800-8dff-7e6d9efd8fef
status: 200 OK
code: 200
duration: ""
@@ -2856,10 +2361,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -2868,7 +2373,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2878,7 +2383,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8d3b2cf3-a295-49c3-a9a0-03611dd9eb02
+ - ed66e092-9930-4e3e-8676-cf46f9d46cf8
status: 200 OK
code: 200
duration: ""
@@ -2889,10 +2394,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f33ee154-1936-4ba8-9e29-79eb6853b794
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/45140fab-8f92-4906-bb4b-2d102de9318c
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:14.908305Z","dhcp_enabled":true,"id":"f33ee154-1936-4ba8-9e29-79eb6853b794","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.908305Z","id":"b944d10b-9468-440f-b682-838f9d43c238","subnet":"172.16.28.0/22","updated_at":"2023-11-13T13:51:14.908305Z"},{"created_at":"2023-11-13T13:51:14.908305Z","id":"0dc4edc3-a072-4421-ab30-cfb111d59806","subnet":"fd63:256c:45f7:2ba6::/64","updated_at":"2023-11-13T13:51:14.908305Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.908305Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.451273Z","dhcp_enabled":true,"id":"45140fab-8f92-4906-bb4b-2d102de9318c","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.451273Z","id":"a80a6f03-3dd8-42ab-8fd6-7962676a57d9","subnet":"172.16.40.0/22","updated_at":"2023-12-08T15:58:32.451273Z"},{"created_at":"2023-12-08T15:58:32.451273Z","id":"306b62d6-46c8-4f55-a594-6b5e1740db25","subnet":"fd63:256c:45f7:211c::/64","updated_at":"2023-12-08T15:58:32.451273Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.451273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "725"
@@ -2901,7 +2406,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2911,7 +2416,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 06be3e88-9406-442a-bfa7-9ef118df769c
+ - 451399cb-9cb6-4c8c-bdb9-fb1b228a5acf
status: 200 OK
code: 200
duration: ""
@@ -2922,10 +2427,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -2934,7 +2439,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2944,7 +2449,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb440af9-0619-4dda-80c0-7d106024b40c
+ - da8b7a9c-f595-4c16-b8f7-bc4ee644f77b
status: 200 OK
code: 200
duration: ""
@@ -2955,10 +2460,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -2967,7 +2472,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2977,7 +2482,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d3c9392-9172-4910-b4de-be0e4ad74671
+ - dbe12e4b-188c-4aed-a523-1a8c6d21cc5b
status: 200 OK
code: 200
duration: ""
@@ -2988,10 +2493,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:35.351236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:57.813201Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -3000,7 +2505,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3010,7 +2515,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c270acd4-b71b-480a-830b-2aa0060fb4c0
+ - c2c39d91-7caf-408e-9d1b-69344e53de16
status: 200 OK
code: 200
duration: ""
@@ -3021,10 +2526,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -3033,7 +2538,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3043,7 +2548,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 735baf51-4991-4d0b-a7ff-16a30dcad01b
+ - 80d4dc7f-23b7-48ac-adb2-55bb78b18f2a
status: 200 OK
code: 200
duration: ""
@@ -3057,16 +2562,16 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown
method: GET
response:
- body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"},{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9c2505ba-29d4-4471-b716-3470d419f337.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:19.725864Z","created_at":"2023-11-13T13:51:19.725864Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9c2505ba-29d4-4471-b716-3470d419f337.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9c2505ba-29d4-4471-b716-3470d419f337","ingress":"none","name":"tf-cluster-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7d4cdc29-ed97-4c47-9dad-9866c3e4716e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_pool","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.703659Z","upgrade_available":false,"version":"1.28.2"}],"total_count":2}'
+ body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}'
headers:
Content-Length:
- - "3022"
+ - "1525"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3076,7 +2581,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 68ba7b09-b85b-4a08-8101-1dffecdbe6d4
+ - e7934a28-bc0e-4140-bf99-05467949b5c5
status: 200 OK
code: 200
duration: ""
@@ -3087,19 +2592,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/nodes?order_by=created_at_asc&page=1&pool_id=7fe9f813-2453-4fe9-a891-af3b455a34bc&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/nodes?order_by=created_at_asc&page=1&pool_id=6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:13.234288Z","error_message":null,"id":"1a3aaa1d-af86-415f-b87b-dd6d6e775d7a","name":"scw-tf-cluster-default-1a3aaa1daf86415fb87bdd6","pool_id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","provider_id":"scaleway://instance/fr-par-1/de7f7c95-6a53-4aa9-a905-7d4c3b3ca8fa","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:35.337279Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:23.959774Z","error_message":null,"id":"ab9ef639-53c3-4eda-bfd3-ba6b45f341ab","name":"scw-tf-cluster-default-ab9ef63953c34edabfd3ba6","pool_id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","provider_id":"scaleway://instance/fr-par-1/524176f5-96ff-4df7-ae9b-0ae02a74e6f0","public_ip_v4":"51.158.102.199","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:02:57.786537Z"}],"total_count":1}'
headers:
Content-Length:
- - "660"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3109,7 +2614,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - af5074b9-624a-4eec-bb4c-5e03f8222cd0
+ - fbc063a4-bebe-4508-95c0-26366fa8f661
status: 200 OK
code: 200
duration: ""
@@ -3120,10 +2625,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -3132,7 +2637,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3142,7 +2647,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8431638-cfa2-409b-b826-e38ede09b648
+ - ea8c8340-49bf-4714-adbb-56d7514a6225
status: 200 OK
code: 200
duration: ""
@@ -3153,10 +2658,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -3165,7 +2670,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3175,7 +2680,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 53180790-b753-4caa-a82e-b1662d220f89
+ - 1ac7e0c0-1d10-45e9-9927-caa14dd087cb
status: 200 OK
code: 200
duration: ""
@@ -3186,10 +2691,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -3198,7 +2703,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3208,7 +2713,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 11365161-c108-4b4e-82e1-37e6b664b047
+ - d41f3bf2-9f43-4f11-a8c6-e4bfa9ef5026
status: 200 OK
code: 200
duration: ""
@@ -3219,10 +2724,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -3231,7 +2736,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3241,7 +2746,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cf18cb3a-635d-484c-a390-79d1e658b24d
+ - 09457d56-64d2-4819-be66-dd111bff8b32
status: 200 OK
code: 200
duration: ""
@@ -3255,16 +2760,16 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown
method: GET
response:
- body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"},{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9c2505ba-29d4-4471-b716-3470d419f337.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:19.725864Z","created_at":"2023-11-13T13:51:19.725864Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9c2505ba-29d4-4471-b716-3470d419f337.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9c2505ba-29d4-4471-b716-3470d419f337","ingress":"none","name":"tf-cluster-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7d4cdc29-ed97-4c47-9dad-9866c3e4716e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_pool","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.703659Z","upgrade_available":false,"version":"1.28.2"}],"total_count":2}'
+ body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}'
headers:
Content-Length:
- - "3022"
+ - "1525"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3274,7 +2779,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7bb359ca-8f6e-4630-af10-7e236a5b3116
+ - 8f2c67da-2534-4fba-b967-d69231b65d7d
status: 200 OK
code: 200
duration: ""
@@ -3285,10 +2790,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.506629Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T15:59:51.460763Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1493"
@@ -3297,7 +2802,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3307,7 +2812,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ca8f5afa-6d16-4919-9f04-c0d7a80f8bc7
+ - 20ae74e1-b32e-4859-ae7b-2647b5f1d492
status: 200 OK
code: 200
duration: ""
@@ -3318,10 +2823,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -3330,7 +2835,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3340,7 +2845,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 84068622-48de-44f5-b588-265af9c956db
+ - e30ebdea-2b13-4671-ba26-2beba0a8f30a
status: 200 OK
code: 200
duration: ""
@@ -3351,10 +2856,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pWTENuTnVlazEyVWtWMmVXRjROMEZtVlN0amFIWm5TVXBLT1ZGNlozSllibk5pY0VWWU1FWjNjMWt5YVhKTFFsTnVVMVY0SzI5amNWSllSblpQTkdwVVFUTUtNMFk0YVV0eGRrMUlkMHRJZG1OMFVYQXpaa2h1SzJkTFYxaDZkRFJIWjNneVNuaDVRMFF3VUhadWVYWndWemQwWm10V1pVUXpSbU4xWmxOTWEzQk9VQXBNUzAxMFRqVTFiWE5KZUhGd2RWQm1WR3hETTFSQ2FGZDBSMHBvYjI5ak5UaFZPVm8wUW1GR2NIWTNWWEE1TUROUVlXbFVlV1YzUVc5RVJVeHlXR3hwQ2xjM2FrVnFLM1F2WW5VNVZrVkJNR0pMYjNCVGIyOTZNelpKTmtFMFdVdFlTV2RoVlZkNVZtTm1VMmxhWkZBM1VGWjBjUzlJVG05a1JrRlNTRTVYVEhnS01HOXVUblZvU1ZkalZIWlpOVVp2YW5kUU5YVmhZa1ZFTjJaV01EUXdURU5LTHk4MWJsbFFhWEJzT1VnMWR6Tk9NME5yTlRsTlYwaDZlVGRyZHpodUx3cFNNblE0Y25oa1RYaDZaRlFyVVZOMmNFTk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaRk5LY1dGbmVrY3ZVWGcyVVVwNE5XMUlhMFJGZFZKd2JUWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZMlZYTVU4eVluUldPRWhRVmtOeE9URlRRME5yYTBWVFVtcG1TVmhWWmpaUmRscGxUbWR2UlhkNFNWRkVOMWhxY0FwdVVIa3JSRU42TjA1T1pXaGlhRlZySzBnMWFsWmhjelI0TUhwalZHRjRkSGMzYWxrNUwyeEtkWFZMVjBkbGVFb3lUVmx1Y0RGS1NYTjJWRmg2ZUZWcENrSm5SRE5XTjIwMWNERkZaV2xNT0hSVlZFTnNLMmR1YlU5bWExbFJXRUZKVXpGTGRtZzRaMHAyZWs1UmMwTkNUMnRwU1VOdldrWTBURmxCWmtGd1ZrY0tWVlYxWVRRcmNFZG5NRVZ4YTBsM2IxcFVWMWRGY25SYWRsSmhOV0pKT0d0MWRFVnpiVnBxWjBKdFdIcEZORVp5U0hBeWNsUmFlamQwZDNWUFdtMUVWZ3BDYUhOaVVHMVJTbE5JUTFkMU1GQnpOblIxY0VSVEwxUjJSWE5hZFVOSk4yMHdUbFJFVldGc1dUTm5UR3ROZG00NVRWUlJhVU0xZWt4TVJrWnFjemhWQ2tWaUwyZzRORlZZYVZsUFJWbEthMDVITjNkRVVFZE5jbUpsTTFZeWNrWnNlbWM0YWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2U0ZjFkNGZhLWQ2MTgtNGI3Ni1iNDc0LWYwYjQwMThmMmVmNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUMktobDA1SjhTVXZxVDNqOHI3VGR4bHdxU1pKdFNPenYwQWRKY3ZSOE1vUTVGOEc2Q0ZNZldOVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVDNCVkNrTlJRMGcwT1ZCMVRpOWtUMWhxUzBkWlZVeEJXVzVKWjFKRE1uVmpZMDFZVkVWUlkweGhlRU5IYWxOWGRFTklhRnBNZGtwUE5rcG9kblZNWVZKcmRuZ0tiMWRvZVhZNGRVSTVPRlE1VFVwcE9ERlJSMXBpVTJjeVJrTjRkM0J3V25wM1UwVkxNVEYyY205SU1IZDZURVJ3ZVRCYWVsTnFiemxaUVZGTk5qWTBUZ3A1T1dod2VsbFphVlkxY0hCTE9VNWtSakExWTB0dFlVUTJha3gwY1habmVYVmxTbVZCYlVWdlEyTkNPVUZuVEhaRk1WZFRURll3TkRGUFNsUnliVEJCQ2toQ1FqUnNjVEkwWWxFNGVHNUhVM0ZoYkV0eFQyMTZURFpNWXpoVlVGTlFUMWhOVDBKaldHdDZTbEpGTkRCeVREZzRObWxoU0hKNGNXSXJURTlyUm1VS1RtaHJhV3hxZEVSTVJsVlBXR3hMVkRKVVpETjBNM3B6Vm1aMWNrTTNZbHBEWWtrMU1qSk1PRWhOWldOcFZXOTROVFJSWjBab1NGUlpTRE5KUmtsbGJ3cG5iRnBXYm01elVIRXphVXBsZDFOcWVrMU5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFObWs0U1M5WWJWQkNibEp3V21WdGVIUk1WbFpWUW5SMGVYSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVZM3B1ZEdWUFNVZHdkazVGWkU5SFFsTlFXbmMxZFdkRk1XaEVkVWNyU0Zad1pqYzVTWEJWZFhkV2RqaEllSFJIWlFwNlNEWlNValJzTlhSSU1tMHdZM0F5Tm5wTFYzSk5ORWxpWkc5eE1VUlVSazloTUdFcmFHOW9jQ3RtZG5BM2RGbzBiMkppYUV0UVlrcFlSbWxPV0V0ckNrSlhTblpNZW1sTWRtUlZXR0pZVWpaM09UaEtkR1YwWm1sRk16RmhhR1pHY1dJM1UySTFMekJIUjFSSldUWm1XbTlzUXpWVlpGZHJhM2wwVUdGa1RqTUtXVzFMVmpKeUwxa3JVa2g1YVUxcVMxZDBhUzlHVkdKak9FbzVjbnBwUVZSSGFtNVlPSGxoVld4S1QwZ3JOMDQyZG01Q1dHcERUWGxKUmxBdmVsRnZhZ3A1VG5CVFdWVTJaRlpEVG1kdFowWklSM0p1YzAxaU5UUlhiMjB6VlZGbllYbDFOQzlzWjFreldTOW5XR2xIZVVoMmRrZGxTbTltVkdoeFVtZHRWSGx2Q2twUldFMXFWR05uZG13eFFVSmlXV3Q0TlhaMmRtMTFPWHBUTVUxYVIydHBlWEl3WWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzdjNWFkNTZjLWRmNjItNDFmYS05OThlLWJlZGIxOWM1ZjM5Zi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiVktOTVNPbFE2V2ZWclhuZGx5QXhBN2xLRlpnWnRFTHc1eXdxMnZrRWdVTjVpZHFnbWhVMGJLSg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2574"
@@ -3363,7 +2868,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3373,7 +2878,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 34eddc33-076f-4454-87ba-a67a75f46b41
+ - 0995c2d4-4785-48b0-8ec8-0edd0ca14d7c
status: 200 OK
code: 200
duration: ""
@@ -3384,10 +2889,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:39.794596627Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:03.823718340Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "621"
@@ -3396,7 +2901,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3406,7 +2911,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d4f2534c-b841-47ca-ae3e-7683aac5a78e
+ - 426d03f9-7883-43ae-96c2-88603ab638c0
status: 200 OK
code: 200
duration: ""
@@ -3417,10 +2922,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:39.794597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:03.823718Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "618"
@@ -3429,7 +2934,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3439,7 +2944,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8d5d9d57-ed1e-43db-9e14-96fc4ac3ab2e
+ - 15220634-399e-4cd4-8ae7-545321f8eb84
status: 200 OK
code: 200
duration: ""
@@ -3450,10 +2955,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:39.794597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:03.823718Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "618"
@@ -3462,7 +2967,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:44 GMT
+ - Fri, 08 Dec 2023 16:03:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3472,7 +2977,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dde3b357-28df-4d90-845a-52159b7194ac
+ - 11eed750-a8b8-4e77-a171-94436b60e257
status: 200 OK
code: 200
duration: ""
@@ -3483,10 +2988,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:39.794597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:03.823718Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "618"
@@ -3495,7 +3000,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:49 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3505,7 +3010,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5479e5b-cdd5-432b-b587-985658c41f9c
+ - 8369fa73-8eae-470e-bf65-66e76689d2a7
status: 200 OK
code: 200
duration: ""
@@ -3516,10 +3021,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:39.794597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.514680Z","id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:03.823718Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "618"
@@ -3528,7 +3033,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:03:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3538,7 +3043,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e71b5384-a722-4b88-95ac-16b37341062a
+ - 1cd5f8b4-6f95-4fff-a8d7-9e803e8fec9e
status: 200 OK
code: 200
duration: ""
@@ -3549,19 +3054,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.292564Z","id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:39.794597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","type":"not_found"}'
headers:
Content-Length:
- - "618"
+ - "125"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 16:03:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3571,9 +3076,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3e73ddb8-f4d9-45bb-8a29-4d631dce8f55
- status: 200 OK
- code: 200
+ - 2ccf50a0-7f58-47e5-a121-f2661c0a2271
+ status: 404 Not Found
+ code: 404
duration: ""
- request:
body: ""
@@ -3582,19 +3087,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f?with_additional_resources=true
+ method: DELETE
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","type":"not_found"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T16:03:24.128755403Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "125"
+ - "1499"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:03:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3604,9 +3109,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 262810e4-3fa3-4e66-a82b-99d79fe82960
- status: 404 Not Found
- code: 404
+ - 51acac9f-58ca-4f9e-90b9-2e52c42ee6a8
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -3615,19 +3120,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5?with_additional_resources=true
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:57:05.161059518Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T16:03:24.128755Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1499"
+ - "1496"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:03:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3637,7 +3142,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fd562e8e-8158-45ae-914c-6e9cf0e32311
+ - 5ee7d1aa-a453-4f31-ba19-2d7f24dc444a
status: 200 OK
code: 200
duration: ""
@@ -3648,10 +3153,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:57:05.161060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T16:03:24.128755Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1496"
@@ -3660,7 +3165,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3670,7 +3175,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 88058137-8da8-4b7a-b2bd-6f01d08f73a8
+ - 9732c914-926b-44c0-b930-5261af69ee65
status: 200 OK
code: 200
duration: ""
@@ -3681,10 +3186,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.873216Z","created_at":"2023-11-13T13:51:18.873216Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e4f1d4fa-d618-4b76-b474-f0b4018f2ef5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-11-13T13:57:05.161060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7c5ad56c-df62-41fa-998e-bedb19c5f39f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.889977Z","created_at":"2023-12-08T15:58:33.889977Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7c5ad56c-df62-41fa-998e-bedb19c5f39f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"45140fab-8f92-4906-bb4b-2d102de9318c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-12-08T16:03:24.128755Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1496"
@@ -3693,7 +3198,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:10 GMT
+ - Fri, 08 Dec 2023 16:03:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3703,7 +3208,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8b8c0b6b-02ca-43ca-906e-bbdb65370fcb
+ - 924fd92d-b8e8-4790-95b1-1ea60c8fcacf
status: 200 OK
code: 200
duration: ""
@@ -3714,10 +3219,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3726,7 +3231,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3736,7 +3241,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bd165875-6390-4956-9e9e-633fbe44f3a8
+ - efb072a0-342b-4aff-af9f-82a38073d4af
status: 404 Not Found
code: 404
duration: ""
@@ -3747,10 +3252,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f33ee154-1936-4ba8-9e29-79eb6853b794
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/45140fab-8f92-4906-bb4b-2d102de9318c
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"45140fab-8f92-4906-bb4b-2d102de9318c","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3759,7 +3264,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3769,7 +3274,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bf58a058-fc52-4791-846d-31fc6bc1ea5d
+ - 350a9372-b585-49d4-8fa3-c80662e03608
status: 404 Not Found
code: 404
duration: ""
@@ -3780,10 +3285,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7fe9f813-2453-4fe9-a891-af3b455a34bc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"7fe9f813-2453-4fe9-a891-af3b455a34bc","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"6f2f4b57-e5f2-4eeb-b6b0-a0e12790b802","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3792,7 +3297,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3802,7 +3307,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55eedae3-0249-42b2-bddf-12d66cb34718
+ - 64125d14-07a8-46ac-b5f1-51e061640901
status: 404 Not Found
code: 404
duration: ""
@@ -3813,10 +3318,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3825,7 +3330,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3835,7 +3340,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1eac9cc-62d0-4b89-9e5a-96e508ec275b
+ - aec523e3-793b-48ce-97b0-9c66633a89a8
status: 404 Not Found
code: 404
duration: ""
@@ -3846,10 +3351,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3858,7 +3363,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3868,7 +3373,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dd94283d-695c-4891-9af9-2ad0168e6f5c
+ - f882cb44-bf4d-4c29-81a8-15282e7df0ab
status: 404 Not Found
code: 404
duration: ""
@@ -3879,10 +3384,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e4f1d4fa-d618-4b76-b474-f0b4018f2ef5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7c5ad56c-df62-41fa-998e-bedb19c5f39f
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"e4f1d4fa-d618-4b76-b474-f0b4018f2ef5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"7c5ad56c-df62-41fa-998e-bedb19c5f39f","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3891,7 +3396,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3901,7 +3406,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 520daffe-6c17-49af-9bf9-544131b75300
+ - 1062c092-7c39-42f5-8701-b5f14475dcf2
status: 404 Not Found
code: 404
duration: ""
@@ -3912,10 +3417,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f33ee154-1936-4ba8-9e29-79eb6853b794
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/45140fab-8f92-4906-bb4b-2d102de9318c
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"f33ee154-1936-4ba8-9e29-79eb6853b794","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"45140fab-8f92-4906-bb4b-2d102de9318c","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3924,7 +3429,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:03:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3934,7 +3439,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 193f6971-74f3-4840-8baf-01a90f70495b
+ - 13df77e7-a94f-4fc8-a15f-351e108d167f
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml b/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml
index 689d3dcc23..7945cd5874 100644
--- a/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:35 GMT
+ - Fri, 08 Dec 2023 15:58:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b6317019-33e3-4897-b314-daacd3cc9003
+ - 2c399c8f-ed31-4790-b08f-bdbebcfadef5
status: 200 OK
code: 200
duration: ""
@@ -61,7 +61,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:35 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -71,7 +71,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b0a3a002-4598-452f-bb41-014ec2f54566
+ - f6d9cf53-3efa-46ff-802b-7bc572ef7bd4
status: 200 OK
code: 200
duration: ""
@@ -98,7 +98,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:35 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -108,7 +108,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df4b8e52-cee7-4656-9ce2-f31d970814c1
+ - a367b30e-67c6-41d7-9807-f75466a0e783
status: 200 OK
code: 200
duration: ""
@@ -135,7 +135,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:35 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -145,7 +145,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5aa1fbf1-ab14-4a2f-84f4-21bf2eaa62dd
+ - a56c70a5-4a2a-4d6f-9e1e-4d3a3fde663a
status: 200 OK
code: 200
duration: ""
@@ -161,16 +161,16 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:40 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -180,7 +180,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d317acd8-d378-4d8e-b609-5e1368370629
+ - cfb4bc95-8b2f-4e45-a32e-bbae2a58b669
status: 200 OK
code: 200
duration: ""
@@ -191,19 +191,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:40 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -213,12 +213,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b917884d-6685-4186-ba06-882591a45f00
+ - 670bec46-650f-498f-a8e6-246dc68fd296
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-auto-upgrade","description":"","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"version":"1.27.6","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":false,"maintenance_window":{"start_hour":0,"day":"any"}},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-auto-upgrade","description":"","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"version":"1.27.6","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":false,"maintenance_window":{"start_hour":0,"day":"any"}},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442"}'
form: {}
headers:
Content-Type:
@@ -229,7 +229,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198873725Z","created_at":"2023-11-13T14:05:41.198873725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:41.210633536Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798373849Z","created_at":"2023-12-08T15:58:32.798373849Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:32.807235332Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1513"
@@ -238,7 +238,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:41 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -248,7 +248,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f36a6ec0-b451-4c89-92f6-3f74bee0448d
+ - 39de1f5e-eb78-42c2-b81e-6b02d67bc992
status: 200 OK
code: 200
duration: ""
@@ -259,10 +259,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:41.210634Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:32.807235Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1504"
@@ -271,7 +271,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:41 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -281,7 +281,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a005c74a-ab50-4cb1-bb35-b50e089c6e25
+ - 4b850535-aaba-4fbd-9434-6b096552b463
status: 200 OK
code: 200
duration: ""
@@ -292,10 +292,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:42.859042Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.515516Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1509"
@@ -304,7 +304,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:46 GMT
+ - Fri, 08 Dec 2023 15:58:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -314,7 +314,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 73cbadd0-f569-450e-a905-e827f484a216
+ - bc0e0c95-0893-4a18-9b52-74fbea894023
status: 200 OK
code: 200
duration: ""
@@ -325,10 +325,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:42.859042Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.515516Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1509"
@@ -337,7 +337,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:46 GMT
+ - Fri, 08 Dec 2023 15:58:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -347,7 +347,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fe711463-d36a-4e11-8c35-859a4ebb3812
+ - 14c0a9b1-3ba3-4c84-afd9-d513aa0396b3
status: 200 OK
code: 200
duration: ""
@@ -358,10 +358,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -370,7 +370,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:46 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -380,7 +380,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01945593-0456-430c-8325-67704c7f2c6c
+ - 8f9ccae9-a81c-47c9-a950-17cdee4c18f7
status: 200 OK
code: 200
duration: ""
@@ -391,10 +391,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:42.859042Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.515516Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1509"
@@ -403,7 +403,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:46 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -413,7 +413,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b3f35a14-85da-4f44-9e65-186983739d4e
+ - f5afa37d-67fc-46f9-b08c-73251d08b298
status: 200 OK
code: 200
duration: ""
@@ -424,19 +424,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:46 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -446,7 +446,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4e7133d-b122-4b32-b346-9a13b4f65dc3
+ - fafecc90-ff5b-4e2b-94ab-408974058a67
status: 200 OK
code: 200
duration: ""
@@ -457,10 +457,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:42.859042Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.515516Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1509"
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:47 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -479,7 +479,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfefb4b7-d9bd-4ccb-83f1-4a074529d8a5
+ - 8aaf485d-82d3-49d7-8804-2ebc390cb9f1
status: 200 OK
code: 200
duration: ""
@@ -490,10 +490,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -502,7 +502,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:47 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -512,7 +512,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 755f8e79-3eca-4753-9d98-73e754c760b1
+ - 278eb46f-f3ff-4663-b7cd-198124008e69
status: 200 OK
code: 200
duration: ""
@@ -523,19 +523,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:47 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -545,7 +545,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bdbb8a57-d8c3-4549-ae2f-13a5bd2e15b3
+ - b551b41b-a917-4e9e-946e-b8fda47a5fb6
status: 200 OK
code: 200
duration: ""
@@ -556,10 +556,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:42.859042Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.515516Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1509"
@@ -568,7 +568,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:47 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -578,7 +578,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e017db25-69b1-4b5b-ae89-59705e5ea556
+ - ec5b5029-64c9-41e8-8604-86297eade6e8
status: 200 OK
code: 200
duration: ""
@@ -589,10 +589,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -601,7 +601,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:47 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -611,7 +611,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3c57a792-4a6d-409e-95e9-408177ce0524
+ - cca8f136-55a2-4dfe-a478-338584980d69
status: 200 OK
code: 200
duration: ""
@@ -638,7 +638,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:48 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -648,7 +648,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 42d4ded9-4037-4221-8778-c91325685824
+ - 7b613fd2-733a-4c5d-9350-2892cdea8391
status: 200 OK
code: 200
duration: ""
@@ -659,10 +659,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:42.859042Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.515516Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1509"
@@ -671,7 +671,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:48 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -681,7 +681,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76e1f56c-f710-4d32-924d-2c11462ffb72
+ - 0995eff4-8add-4800-8313-6838f0515f8b
status: 200 OK
code: 200
duration: ""
@@ -694,10 +694,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:48.251551650Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:39.824668093Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1506"
@@ -706,7 +706,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:48 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -716,7 +716,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c489de2c-a308-4bcb-8b2a-c55d3a2027d2
+ - 5df4fb52-a046-477e-bf97-9b7610ea366d
status: 200 OK
code: 200
duration: ""
@@ -727,10 +727,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:48.251552Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:39.824668Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1503"
@@ -739,7 +739,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:48 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -749,7 +749,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9418aba4-cbc5-4357-8bfd-3fba626ac69b
+ - 3b2e50aa-4e6c-4b9a-a34a-0795947bae53
status: 200 OK
code: 200
duration: ""
@@ -760,10 +760,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:49.390585Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:40.934102Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -772,7 +772,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:53 GMT
+ - Fri, 08 Dec 2023 15:58:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -782,7 +782,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 27d40b8e-f65c-48bf-aa3b-48d7e49df291
+ - 3f9af74a-44de-4cb3-a801-8b2c20005c7f
status: 200 OK
code: 200
duration: ""
@@ -793,10 +793,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:49.390585Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:40.934102Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -805,7 +805,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:53 GMT
+ - Fri, 08 Dec 2023 15:58:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -815,7 +815,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d4a21ae4-5289-4144-890d-b0fea22ac156
+ - e262cd34-861a-425a-a230-bbe7645c2f13
status: 200 OK
code: 200
duration: ""
@@ -826,10 +826,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -838,7 +838,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:53 GMT
+ - Fri, 08 Dec 2023 15:58:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -848,7 +848,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8b9bcaf3-5b23-457b-953d-a363952c275c
+ - fd36ffeb-96a2-45ea-9543-7b16346104b9
status: 200 OK
code: 200
duration: ""
@@ -859,10 +859,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:49.390585Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:40.934102Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -871,7 +871,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:53 GMT
+ - Fri, 08 Dec 2023 15:58:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -881,7 +881,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 21a9cbaf-eb85-45f1-a501-6a7a981106e8
+ - fdcf36bc-d542-4d16-8338-632bb261d28b
status: 200 OK
code: 200
duration: ""
@@ -892,19 +892,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:54 GMT
+ - Fri, 08 Dec 2023 15:58:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -914,7 +914,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 37b47095-0e74-41e6-8e81-5694d8d2b150
+ - 8346c014-1feb-49ec-9a56-6c968c4af041
status: 200 OK
code: 200
duration: ""
@@ -925,10 +925,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:49.390585Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:40.934102Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -937,7 +937,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:54 GMT
+ - Fri, 08 Dec 2023 15:58:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -947,7 +947,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bb66f9e6-bd41-447b-b46f-f2cc70b4a210
+ - fca8a081-ab32-4f29-996d-5b43503e2f85
status: 200 OK
code: 200
duration: ""
@@ -958,10 +958,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -970,7 +970,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:54 GMT
+ - Fri, 08 Dec 2023 15:58:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -980,7 +980,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3803d0e9-fa2c-4e6f-8909-9cba9df50229
+ - 79d24e15-c4d1-46fa-a18e-3cf0b25dbffa
status: 200 OK
code: 200
duration: ""
@@ -991,19 +991,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:54 GMT
+ - Fri, 08 Dec 2023 15:58:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1013,7 +1013,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d3feb62d-9313-4175-ad6f-b3a2bd45daf6
+ - 4680075a-dba4-4ef1-9577-2044c28d75fe
status: 200 OK
code: 200
duration: ""
@@ -1024,10 +1024,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:49.390585Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:40.934102Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -1036,7 +1036,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:54 GMT
+ - Fri, 08 Dec 2023 15:58:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1046,7 +1046,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 82bfb9f4-9404-4d47-af19-1e2456e7ea30
+ - f2e2c8ae-b3b4-467d-9191-53ca3b6f3fc3
status: 200 OK
code: 200
duration: ""
@@ -1057,10 +1057,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -1069,7 +1069,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:54 GMT
+ - Fri, 08 Dec 2023 15:58:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1079,7 +1079,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da08b9ca-3942-4dc7-bb12-472250e2aabc
+ - 3caed1cc-8139-44af-9762-ff1c49b34952
status: 200 OK
code: 200
duration: ""
@@ -1106,7 +1106,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:55 GMT
+ - Fri, 08 Dec 2023 15:58:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1116,7 +1116,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5894c263-3bba-44fa-a427-b2b870d85eeb
+ - 2219bf78-c1ce-4bd9-b973-88c9c4b1c5ce
status: 200 OK
code: 200
duration: ""
@@ -1127,10 +1127,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:49.390585Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:40.934102Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -1139,7 +1139,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:55 GMT
+ - Fri, 08 Dec 2023 15:58:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1149,7 +1149,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a82d1c7c-d2e4-46e6-a496-c52304d18d7c
+ - 196b871d-4e52-4576-a6f3-d6123fbb63ac
status: 200 OK
code: 200
duration: ""
@@ -1162,10 +1162,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:55.316499299Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:49.920210151Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1506"
@@ -1174,7 +1174,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:55 GMT
+ - Fri, 08 Dec 2023 15:58:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1184,7 +1184,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29a79291-276d-4b47-8571-df29a3ac1705
+ - e1fc6b30-ded6-4dd2-9bbd-212610887b01
status: 200 OK
code: 200
duration: ""
@@ -1195,10 +1195,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:55.316499Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:49.920210Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1503"
@@ -1207,7 +1207,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:55 GMT
+ - Fri, 08 Dec 2023 15:58:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1217,7 +1217,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b6989ff-4e4d-49bb-904f-496ca821996e
+ - fa56fec3-5ca5-4ed3-a476-24c9a0b9e333
status: 200 OK
code: 200
duration: ""
@@ -1228,10 +1228,76 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:05:56.441796Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:49.920210Z","upgrade_available":true,"version":"1.27.6"}'
+ headers:
+ Content-Length:
+ - "1503"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 15:58:55 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c9301ed1-6411-4df5-b5c7-47beeb3d5109
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
+ method: GET
+ response:
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:58:49.920210Z","upgrade_available":true,"version":"1.27.6"}'
+ headers:
+ Content-Length:
+ - "1503"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 15:59:01 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 24272f6a-e8a0-4731-8f44-1f5de805f15b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
+ method: GET
+ response:
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:01.017867Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1508"
@@ -1240,7 +1306,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:00 GMT
+ - Fri, 08 Dec 2023 15:59:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1250,7 +1316,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2e3c9b85-d66c-4611-8938-5226de1e24fd
+ - 39ec5f9f-20cd-42e1-b7df-109815af8962
status: 200 OK
code: 200
duration: ""
@@ -1263,10 +1329,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/upgrade
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/upgrade
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:00.622684597Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:06.699205520Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -1275,7 +1341,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:00 GMT
+ - Fri, 08 Dec 2023 15:59:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1285,7 +1351,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7ac8050e-9cfd-4625-9bb9-ed7c14fd87fe
+ - 81f9d730-d61d-4482-897b-c3cee4c6d535
status: 200 OK
code: 200
duration: ""
@@ -1296,10 +1362,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:00.622685Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:06.699206Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1504"
@@ -1308,7 +1374,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:00 GMT
+ - Fri, 08 Dec 2023 15:59:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1318,7 +1384,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4662866a-0f23-4035-ac75-3cde932deedf
+ - 29c9f636-9a4a-4e1e-b9d8-26f628841f5e
status: 200 OK
code: 200
duration: ""
@@ -1329,10 +1395,43 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:01.740229Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:06.699206Z","upgrade_available":false,"version":"1.28.2"}'
+ headers:
+ Content-Length:
+ - "1504"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 15:59:12 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - d93ab104-c7ca-4980-9a8a-f75fec38001b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
+ method: GET
+ response:
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:12.567257Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -1341,7 +1440,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:05 GMT
+ - Fri, 08 Dec 2023 15:59:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1351,7 +1450,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d98c3a2-5a3a-47d2-bf0b-9f4ca9929599
+ - 8a32cc33-5ed4-4075-bfc4-e94cdd483013
status: 200 OK
code: 200
duration: ""
@@ -1362,10 +1461,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:01.740229Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:12.567257Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -1374,7 +1473,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:05 GMT
+ - Fri, 08 Dec 2023 15:59:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1384,7 +1483,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ceba8c9-0146-440d-9632-f81a2a5e1158
+ - 7d168696-2429-4eb8-8d30-5a2f0bc262aa
status: 200 OK
code: 200
duration: ""
@@ -1395,10 +1494,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -1407,7 +1506,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:05 GMT
+ - Fri, 08 Dec 2023 15:59:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1417,7 +1516,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9bc5e0c8-4eb2-4769-9340-d9db3527a415
+ - 42123b98-dce6-4f93-ab95-43ac61a7da8a
status: 200 OK
code: 200
duration: ""
@@ -1428,10 +1527,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:01.740229Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:12.567257Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -1440,7 +1539,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:05 GMT
+ - Fri, 08 Dec 2023 15:59:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1450,7 +1549,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 847ebbad-0595-4777-be74-00597a2fe43e
+ - d3e180a1-7fa2-4dfd-ba38-932114c1dc5f
status: 200 OK
code: 200
duration: ""
@@ -1461,19 +1560,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:06 GMT
+ - Fri, 08 Dec 2023 15:59:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1483,7 +1582,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f85f2d65-4eff-4b32-8990-0eabb0031295
+ - 34dc8c01-6ac9-4060-a50d-5847c20e4505
status: 200 OK
code: 200
duration: ""
@@ -1494,10 +1593,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:01.740229Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:12.567257Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -1506,7 +1605,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:06 GMT
+ - Fri, 08 Dec 2023 15:59:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1516,7 +1615,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ade99ea9-9ec5-4e8b-8a68-f84607ee9de7
+ - 734d3345-f05d-433c-b246-f825a18409fc
status: 200 OK
code: 200
duration: ""
@@ -1527,10 +1626,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -1539,7 +1638,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:10 GMT
+ - Fri, 08 Dec 2023 15:59:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1549,7 +1648,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b10d3fed-6c99-4989-acda-59c470420874
+ - 0fb06259-ca69-459b-a628-286e053e29e1
status: 200 OK
code: 200
duration: ""
@@ -1560,19 +1659,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:10 GMT
+ - Fri, 08 Dec 2023 15:59:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1582,7 +1681,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e9beea90-b4f9-4266-b4f2-b73627d82a7d
+ - 2c7871a4-b3fa-41c4-b035-0e41553e0ac9
status: 200 OK
code: 200
duration: ""
@@ -1593,10 +1692,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:01.740229Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:12.567257Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -1605,7 +1704,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:10 GMT
+ - Fri, 08 Dec 2023 15:59:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1615,7 +1714,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 347098ba-018a-4308-9388-337f633518d8
+ - bc91cbf5-f846-4fd1-ada5-546164a5c9bd
status: 200 OK
code: 200
duration: ""
@@ -1626,10 +1725,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -1638,7 +1737,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:10 GMT
+ - Fri, 08 Dec 2023 15:59:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1648,7 +1747,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b603dd1a-9880-490b-9482-89ec31e8ff75
+ - db87137c-0f2d-4ba2-b644-7f681e2151f4
status: 200 OK
code: 200
duration: ""
@@ -1659,10 +1758,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:01.740229Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:12.567257Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -1671,7 +1770,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:11 GMT
+ - Fri, 08 Dec 2023 15:59:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1681,7 +1780,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e63c9a56-60eb-47d6-a574-92c44b395199
+ - 1e57a580-f47f-44f0-8466-4d2ab6b72055
status: 200 OK
code: 200
duration: ""
@@ -1694,10 +1793,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:11.490135053Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:19.804056735Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -1706,7 +1805,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:11 GMT
+ - Fri, 08 Dec 2023 15:59:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1716,7 +1815,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9136e431-856c-4e85-acd3-1928f1adb0d7
+ - 6a2d796f-2a8b-4b24-a0ca-1659d4904d44
status: 200 OK
code: 200
duration: ""
@@ -1727,10 +1826,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:11.490135Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:19.804057Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1505"
@@ -1739,7 +1838,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:11 GMT
+ - Fri, 08 Dec 2023 15:59:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1749,7 +1848,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee21e9ef-aa58-45d1-938d-a2a8ae2fec75
+ - c90120a0-8c69-40ac-b6b5-3c4599c78b18
status: 200 OK
code: 200
duration: ""
@@ -1760,10 +1859,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:12.616164Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:20.937937Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -1772,7 +1871,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:16 GMT
+ - Fri, 08 Dec 2023 15:59:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1782,7 +1881,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7b8058e2-b5e2-4c51-bede-6f742779e799
+ - 639db919-354b-47fe-b117-8b03f7562524
status: 200 OK
code: 200
duration: ""
@@ -1793,10 +1892,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:12.616164Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:20.937937Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -1805,7 +1904,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:16 GMT
+ - Fri, 08 Dec 2023 15:59:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1815,7 +1914,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 644ff141-37f8-47eb-a869-e5a52f12170e
+ - 43eed0d0-d4cd-4fbc-93f6-0034d16a8ea9
status: 200 OK
code: 200
duration: ""
@@ -1826,10 +1925,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -1838,7 +1937,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:16 GMT
+ - Fri, 08 Dec 2023 15:59:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1848,7 +1947,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b3cc0e92-e648-411e-939e-2e9a72cac643
+ - f0f99176-b721-4fd0-8774-b834482798e6
status: 200 OK
code: 200
duration: ""
@@ -1859,10 +1958,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:12.616164Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:20.937937Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -1871,7 +1970,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:16 GMT
+ - Fri, 08 Dec 2023 15:59:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1881,7 +1980,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66879260-74a5-43d7-a067-3bd6eefdd63b
+ - 6a2bfde3-9c6d-4032-885f-270f29d4c8bc
status: 200 OK
code: 200
duration: ""
@@ -1892,19 +1991,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:17 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1914,7 +2013,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 19805c5d-97a0-4739-860a-cc89d0f4cf74
+ - 67dbe755-2a8a-4964-b9c6-8af558488274
status: 200 OK
code: 200
duration: ""
@@ -1925,10 +2024,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:12.616164Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:20.937937Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -1937,7 +2036,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:17 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1947,7 +2046,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7808ee26-99b4-4219-a4a3-4aeeae53325c
+ - 47220b80-acff-42fc-b0b7-2f8bcf940f6b
status: 200 OK
code: 200
duration: ""
@@ -1958,10 +2057,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -1970,7 +2069,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:17 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1980,7 +2079,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbecdb1e-fdbe-4453-8d2d-e815b02e1a7a
+ - f942fbf6-bf36-4473-96b9-1ea9db1b1e9e
status: 200 OK
code: 200
duration: ""
@@ -1991,19 +2090,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:17 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2013,7 +2112,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - acac4292-7c4c-4a58-a07c-9ec3bb9999b8
+ - 9bf51cd8-5ddd-4f9a-b07c-76c8dc286bd9
status: 200 OK
code: 200
duration: ""
@@ -2024,10 +2123,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:12.616164Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:20.937937Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -2036,7 +2135,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:17 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2046,7 +2145,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e683409-bd61-4c7d-8ed0-2f2edae13000
+ - 5209e02b-ae50-43d7-aed0-2a892de4746a
status: 200 OK
code: 200
duration: ""
@@ -2057,10 +2156,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2069,7 +2168,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:18 GMT
+ - Fri, 08 Dec 2023 15:59:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2079,7 +2178,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2bdcaa30-0e6d-493e-a744-7c4cae6d58f0
+ - d3551e22-e2d5-40da-acae-2d6b96fc1068
status: 200 OK
code: 200
duration: ""
@@ -2106,7 +2205,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:18 GMT
+ - Fri, 08 Dec 2023 15:59:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2116,7 +2215,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4bcf7555-97b8-4573-93fc-35a70ed174e3
+ - f0acc151-381b-4e8d-8bde-0af21769c8f3
status: 200 OK
code: 200
duration: ""
@@ -2127,10 +2226,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:12.616164Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:20.937937Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -2139,7 +2238,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:18 GMT
+ - Fri, 08 Dec 2023 15:59:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2149,7 +2248,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93323b2d-9cfa-400b-8c5e-ffd130d6a423
+ - 5c1fbd8c-df45-4e5b-bb33-d273fa146ad5
status: 200 OK
code: 200
duration: ""
@@ -2162,10 +2261,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:18.704657663Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:28.639092351Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -2174,7 +2273,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:18 GMT
+ - Fri, 08 Dec 2023 15:59:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2184,7 +2283,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e81f2aaa-7a06-4744-a511-1a08cc913558
+ - ddf80fc2-7abf-4811-bbf3-eaad7cf8f581
status: 200 OK
code: 200
duration: ""
@@ -2195,10 +2294,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:18.704658Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:28.639092Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -2207,7 +2306,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:18 GMT
+ - Fri, 08 Dec 2023 15:59:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2217,7 +2316,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bd1fa278-123e-4d83-b5d3-9641b49d918a
+ - c8233d31-d6cc-443f-8d80-d2044820718b
status: 200 OK
code: 200
duration: ""
@@ -2228,10 +2327,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:19.846011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:29.761237Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2240,7 +2339,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:23 GMT
+ - Fri, 08 Dec 2023 15:59:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2250,7 +2349,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 255f6c2a-280a-48bd-85a9-ceab7ad027d1
+ - e3f670a5-d5f9-4a35-96c0-f45ce8fdee82
status: 200 OK
code: 200
duration: ""
@@ -2261,10 +2360,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:19.846011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:29.761237Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2273,7 +2372,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:23 GMT
+ - Fri, 08 Dec 2023 15:59:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2283,7 +2382,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f24b50bd-adb3-443a-84f9-7f9a2cf4e8e7
+ - 864daf69-97d9-4ef7-ada0-c9ed646acde6
status: 200 OK
code: 200
duration: ""
@@ -2294,10 +2393,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2306,7 +2405,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:23 GMT
+ - Fri, 08 Dec 2023 15:59:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2316,7 +2415,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48eb9bfc-2948-4b66-b49d-d60bcc511ddb
+ - ca029175-0618-4fc2-938d-ffe46c541576
status: 200 OK
code: 200
duration: ""
@@ -2327,10 +2426,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:19.846011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:29.761237Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2339,7 +2438,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:24 GMT
+ - Fri, 08 Dec 2023 15:59:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2349,7 +2448,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 616c4232-3466-4a68-945c-33b0ad5232ad
+ - 9af279b9-7e93-448a-8d96-ea9299d4c954
status: 200 OK
code: 200
duration: ""
@@ -2360,19 +2459,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:24 GMT
+ - Fri, 08 Dec 2023 15:59:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2382,7 +2481,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56348b78-bc6c-4b9f-b384-095653299749
+ - e819ac4e-7df8-4545-8e35-1ea177bcd955
status: 200 OK
code: 200
duration: ""
@@ -2393,10 +2492,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:19.846011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:29.761237Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2405,7 +2504,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:24 GMT
+ - Fri, 08 Dec 2023 15:59:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2415,7 +2514,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5fe744ce-c9b8-4212-b224-46ccce6a8711
+ - c54cd4c5-c3d7-4540-86ff-0e568b4b6038
status: 200 OK
code: 200
duration: ""
@@ -2426,10 +2525,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2438,7 +2537,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:24 GMT
+ - Fri, 08 Dec 2023 15:59:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2448,7 +2547,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0ef7a3da-39fc-42fd-ae67-b7f9d8ce92e5
+ - c2572319-488b-4a1d-b87a-359e8b1863c7
status: 200 OK
code: 200
duration: ""
@@ -2459,19 +2558,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:24 GMT
+ - Fri, 08 Dec 2023 15:59:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2481,7 +2580,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76d75bff-34a9-4941-bbf1-83a54c783101
+ - 17002012-ed8c-46c6-ae2f-ab0aac286c56
status: 200 OK
code: 200
duration: ""
@@ -2492,10 +2591,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:19.846011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:29.761237Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2504,7 +2603,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:24 GMT
+ - Fri, 08 Dec 2023 15:59:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2514,7 +2613,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ac9258ac-6d0b-4192-8ec5-27e9ded08bae
+ - a0cf32ff-7a84-4c76-abf1-0404303db43f
status: 200 OK
code: 200
duration: ""
@@ -2525,10 +2624,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2537,7 +2636,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
+ - Fri, 08 Dec 2023 15:59:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2547,7 +2646,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d9eac0d5-c41c-4f4c-8831-b27cf6756afe
+ - ed38bb2f-c083-4111-be00-1c7553b46045
status: 200 OK
code: 200
duration: ""
@@ -2574,7 +2673,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
+ - Fri, 08 Dec 2023 15:59:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2584,7 +2683,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eb1fabe3-8ad6-46b6-a5ab-dafb7264a562
+ - 9f8f74d2-e505-4f0d-a916-13de33322a5b
status: 200 OK
code: 200
duration: ""
@@ -2597,10 +2696,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:25.640446391Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:36.066010173Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -2609,7 +2708,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
+ - Fri, 08 Dec 2023 15:59:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2619,7 +2718,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 53bb5c74-e046-4e61-be7d-541c95c2a2fe
+ - 52e4b0e3-c126-4cfc-8882-698dd50c789b
status: 200 OK
code: 200
duration: ""
@@ -2630,10 +2729,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:25.640446Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:36.066010Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1504"
@@ -2642,7 +2741,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
+ - Fri, 08 Dec 2023 15:59:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2652,7 +2751,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 08d03860-87c4-4403-8e70-bf7e66055060
+ - f0f77579-5de9-4229-848c-e17d784671b1
status: 200 OK
code: 200
duration: ""
@@ -2663,10 +2762,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:26.827323Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:37.195593Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -2675,7 +2774,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:30 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2685,7 +2784,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8f2ab78-fff9-4cfb-a4b5-198837c53d22
+ - d202838a-172b-4498-9367-6047fee641db
status: 200 OK
code: 200
duration: ""
@@ -2696,10 +2795,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:26.827323Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:37.195593Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -2708,7 +2807,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:30 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2718,7 +2817,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26c2cbed-d7cf-4f19-80f8-b1ce7fc3e1e4
+ - 59eb80ee-0135-4116-b436-6c1c267dd1b3
status: 200 OK
code: 200
duration: ""
@@ -2729,10 +2828,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2741,7 +2840,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:30 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2751,7 +2850,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 82423dc9-452b-4224-90ea-46f217ffae61
+ - 2139b346-4ef8-4c55-9015-072175da4d57
status: 200 OK
code: 200
duration: ""
@@ -2762,10 +2861,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:26.827323Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:37.195593Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -2774,7 +2873,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:31 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2784,7 +2883,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48bceefc-e53b-4e36-85a1-256374845dfe
+ - e7eb52a6-6fda-4d63-ae67-02b448f9b3a8
status: 200 OK
code: 200
duration: ""
@@ -2795,19 +2894,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"created_at":"2023-11-13T14:05:36.639929Z","dhcp_enabled":true,"id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:05:36.639929Z","id":"f65125d1-e91e-422c-8c77-868dafccecea","subnet":"172.16.28.0/22","updated_at":"2023-11-13T14:05:36.639929Z"},{"created_at":"2023-11-13T14:05:36.639929Z","id":"a378e3a1-cad8-41f9-8c0b-4278c2c814da","subnet":"fd63:256c:45f7:27a9::/64","updated_at":"2023-11-13T14:05:36.639929Z"}],"tags":[],"updated_at":"2023-11-13T14:05:36.639929Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.630042Z","dhcp_enabled":true,"id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.630042Z","id":"a0236c44-18ae-4adc-8ef3-e593d2b693ae","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:58:31.630042Z"},{"created_at":"2023-12-08T15:58:31.630042Z","id":"38726e17-d073-4f41-9988-9d9d30d5e151","subnet":"fd63:256c:45f7:a12::/64","updated_at":"2023-12-08T15:58:31.630042Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.630042Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "718"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:31 GMT
+ - Fri, 08 Dec 2023 15:59:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2817,7 +2916,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d77403d5-4fc1-4cd7-8b22-f8c379e698a0
+ - 1ed3bc5f-a452-40f6-8db3-6a80739670be
status: 200 OK
code: 200
duration: ""
@@ -2828,10 +2927,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:26.827323Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:37.195593Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -2840,7 +2939,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:31 GMT
+ - Fri, 08 Dec 2023 15:59:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2850,7 +2949,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1630565c-b422-4f1f-a9bc-9e276c4c4650
+ - fbf53d67-8a04-42ec-88f8-cc17dfaa97e5
status: 200 OK
code: 200
duration: ""
@@ -2861,10 +2960,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSVk1FMXNiMWhFVkUxNlRWUkZlRTFxUlRCTlJGVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYbFZDa3hXU1dreFZsUXlNMVp4Ym1KRFYwVktjeXMwVmxrMlptUnVXVTVaYzJ0bVUxZ3lPSHBRU1ZZMlNHRnhWVkJrTkZNeVQzcFJVSGxNUnpOYVpDdDBPR0VLT0hwRk5WVnZUR2x6UmtsWmRHeGpNV2xuWlc4MGIySndjMDQ1VmpaT1VUSmFTblJoVjFkUmMwRXhWRzFYYUdKblJVSm9aaTlSUTJzNFFVbElhSEJJVWdvMVREUnhjVWhKTjNSMWJUZHNNM1JEVDNOMEwxWnFkVWMyUjJoaFdrOTFUVk5xT0dOdFkzQkJlVE41YVVoSU5VNWhRV0V4ZWxabFRWRTJTVEpZS3k5VENuTkJlRE0yV1hWT2EyaFhSWEIyYkZFMFFsb3pWMjV0YXpKWWRuRnRObUZZVWtwamNtUXlZM0JQYmxsMmEyaFRXWFpSTldoVGEycFllSGREVldkMGVVVUthVVY2VVRSQ1RGb3JhbWhrUW01Mk4zUkpNakJZVmt4a05VcHhjRWwwTWtGMFEwTXZNVFZwZFVSeU9HbG5XRXRxVkdwWlRGVlFlbkJXWVhKQmJWUnBiZ3BQZVdkTFVFOU1ZWEJDYUZaV2NIZENhM0ZyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpIZFdwMVNXaE5RMkU0T1hWMFJTdEJVelJwYkdabE9HeFdabU5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZFU1RoalpUUjRZMkYxTnpCTlpsWlBUMjVyVFdwb1pEQjZRMEZwZEVoT1JVczROalpCWVVkWlZHZHFhMEpMYjBkdlVBcGxaMlpUZFRKRFp6TndUbkZaVUhsMVJVZDVUWFFyVUhGQk1tcElSbmd2UmpadGMyY3hVR3hJSzFCcU1FdG1RbWhOWmxSWVZpdHFVRlk1TW5kQ0szUktDbHBqVm5GQmVHeFVielJDVlRsRlJHUlNiV2sxY1doWmVrdDNaa0pYTVRjMWNrMHdaVUp3WTFRelUyaDBiR3BaZEZwUGFGbHhSVUpIUWtad1FtaERNR3dLS3pBNFdFMXdUWFEwWjJSaFNEVnRhMVZhYWk5RmNXWlpiWEF5VmtReVdVbEtaRGxHTlhwV2MwZDFSbkF2ZDBGbU1qVkVkbTVQUW1Ka1JFTlZWSFJGVFFwVFNHRlNhek40WnpKcmMzQnlkMkZtVERaTUx6bHpXa1k1YjFGRlNIWkdOSEJzZHpWU2NFSTVaRmRYWWl0a1oxUkVTVGxMTkM5YWVsQXZiMUJEZDFoVENsbE5kbE15ZDBSYVVFUk1aR2RhTUV4WWNFczBhV2tyWTJrdmFrOHhVREJWU25Gallnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hZmQyNmUzZC1jNzExLTQ4NWUtYTk0NS01NjNmNmYyZTM0NWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ2psTkxEc09sOWpZYW1SNVA5R2F3eExPZ1lGVXpLbHloazI4MjltSmx0UjlIbEphdzVDNXBkOA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYSXJDblJ5VFRNd05XSlNSMm96U1VoNllVVlNPVko0VEVkWmFtWkZlbGQzWVdKWGNsaG9SREpFY1doYVNtcE1VMjlGUzBaVU4yOTBOa2t6WkZZMmVsZHRXVUVLTVN0cmFqZDZiM0V4VGpoQmQwVlJWa04zTDJwdFJVczBWMmRpV1ROdEswWTJWakJLVFZoNlNDOUNhV2czYjJwTVluSk9hbnBsVldKM1J5OHZVRVFyUmdwQ05Wa3JTMkkxUjNaWk5qTkVUVmxSVW05TVJtaEVlRTQzTDNGWmNqWm9Ramh6Tld0UmFHUXJXQzlWTkc5UVYxaFBNMlF3VXpaalRqVTNNV1pGV1c5NENrWkZLMXBzYWlzeWNWRnhRMmhRV1dRMlZURmlVR3RXUjJ0UE9XOXJVa3gyYzBoSFducERLM05hVEVnMlJXOUVZeXREYWtSdlpXMVJUamR0UjFoNWFTOEtjbE42T0c1QmNqRlhOREJ4TDJsTVZIbHFVVTlOU0hWcWFYUTNTVFpVWkZGaFEwdFlOR2xPZHpVd1owWk9ZV28wWTFwMVJXVkJZVE0wVFU1cFVYUnFUZ3BrYjJadFZVdzJaV2RMZVV4cFdqWTRjbVF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTW1zeVMzSklkMnMwTjI5UloxQldURmRPUTAwMk5XbDFkR2hOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVVRkaVZIWjVlbFpDVFhSaGJWcE9ObkJLYW05clkxaG1lVXQ0TUZaaFpYazFWQzgzVlZnM0syWkpSRmx4V0Rnd1V3cGhVbGxPWldaR1NXdFFZVk5WVkd4QllXazNkMHRYVTI1M1ZVMU5hMnN2WkZKSlZUVmxOM0ZtWjJFd2JtTlVZMFpNZEZJMVN5dFhlWGxtTlV4NWIzSlhDbmx4Vm5CSU1rbGhWbkZvYkZScGExa3JaMmt2YUVWRmIxUTVUVmxyYzJsYVNsbGxRMXBzTlRsa2EwbHZTRGM1VVc1Q1kxazVNVXBVTTNORGFsVm5iRmdLUTNkTmJtcFFlVU5VYmt4NU5WUmtUa2RaUjBaNmRFVklNMUpNYkdoUlUxSkJVSFpXYlhsTlJIbDFNbmR2U0ZCR1dVUnZWVlY0Y2pGSlFUVlNlblJ3VHdwUWNHOTBTa05TVUZNeFVteFpVVzVhUkhoa1psRlRhREl2UkZwTVdHbFdibWROVDNCWFJWUTNTVnB2UVhwa2R6VlNNM04wYkRGYWFYTm9SMGhUZERZMUNsaHFURXhaYjJ4S1dqUnhaM1JXUlVsUFJsbElObGhFVTBwT2NFdG1VWE5oY25BeGJRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8zZjRjYmVkOS03OWIyLTQxMWItYmNkZi1mM2IwNjIzOTEyMTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMYUlvcGtUeHRvVTNJeVhCSUtQT1JCRjlNOUU1UXNYRENONjU4dnR0dXBnME5VY2RhQ0l3NTVrWg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2873,7 +2972,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:31 GMT
+ - Fri, 08 Dec 2023 15:59:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2883,7 +2982,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 022c7fae-a760-4c6b-abb6-c3deb3f8e8f7
+ - c5d336d4-e096-4a46-8263-e5a73f0cb8c1
status: 200 OK
code: 200
duration: ""
@@ -2894,10 +2993,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:32.170723854Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:42.768320346Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -2906,7 +3005,40 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:32 GMT
+ - Fri, 08 Dec 2023 15:59:42 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - f94c6a7e-c54e-4d5f-a50e-0ec2dcc06a4b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
+ method: GET
+ response:
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:42.768320Z","upgrade_available":false,"version":"1.28.2"}'
+ headers:
+ Content-Length:
+ - "1504"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 15:59:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2916,7 +3048,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d545c1c7-7b85-4ede-b817-7ea0f2262b8a
+ - 17647c4c-5bb2-492c-9de4-e3cefe0c1279
status: 200 OK
code: 200
duration: ""
@@ -2927,10 +3059,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:32.170724Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:42.768320Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1504"
@@ -2939,7 +3071,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:32 GMT
+ - Fri, 08 Dec 2023 15:59:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2949,7 +3081,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec268043-0ebf-4ff6-a6d5-0c7a8632352d
+ - 66d353c0-a40d-4033-84a7-2add94219981
status: 200 OK
code: 200
duration: ""
@@ -2960,10 +3092,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://afd26e3d-c711-485e-a945-563f6f2e345f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:05:41.198874Z","created_at":"2023-11-13T14:05:41.198874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.afd26e3d-c711-485e-a945-563f6f2e345f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"afd26e3d-c711-485e-a945-563f6f2e345f","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-11-13T14:06:32.170724Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3f4cbed9-79b2-411b-bcdf-f3b062391212.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:32.798374Z","created_at":"2023-12-08T15:58:32.798374Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3f4cbed9-79b2-411b-bcdf-f3b062391212.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-12-08T15:59:42.768320Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1504"
@@ -2972,7 +3104,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:37 GMT
+ - Fri, 08 Dec 2023 15:59:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2982,7 +3114,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c3ff934-0819-4dc0-aba8-426a96133cd8
+ - 22a9207b-9e1f-4e71-9291-f6459d2b670d
status: 200 OK
code: 200
duration: ""
@@ -2993,10 +3125,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"afd26e3d-c711-485e-a945-563f6f2e345f","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3005,7 +3137,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:42 GMT
+ - Fri, 08 Dec 2023 15:59:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3015,7 +3147,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d87d4e9-9d3c-4f7a-a2ce-97d6f410932e
+ - 1d083c92-19c6-40da-bb3a-dca659e26349
status: 404 Not Found
code: 404
duration: ""
@@ -3026,10 +3158,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3038,7 +3170,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:42 GMT
+ - Fri, 08 Dec 2023 15:59:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3048,7 +3180,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 03c922b5-b692-4960-b3f3-c96ef9625dc4
+ - 6973ac06-10c6-4eb6-8635-2f2d7828fe98
status: 404 Not Found
code: 404
duration: ""
@@ -3059,10 +3191,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/afd26e3d-c711-485e-a945-563f6f2e345f
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3f4cbed9-79b2-411b-bcdf-f3b062391212
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"afd26e3d-c711-485e-a945-563f6f2e345f","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"3f4cbed9-79b2-411b-bcdf-f3b062391212","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3071,7 +3203,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:42 GMT
+ - Fri, 08 Dec 2023 15:59:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3081,7 +3213,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c316b6db-d8a9-4965-94ea-1d38fb61090e
+ - 794b0f0c-9ced-4ed9-b976-175221ad2ec7
status: 404 Not Found
code: 404
duration: ""
@@ -3092,10 +3224,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/002d77e6-63ab-4b8e-a4e5-87e0605dfbad
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d5840fb-d1e4-4a41-9d33-f7d06a02f442
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"002d77e6-63ab-4b8e-a4e5-87e0605dfbad","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"2d5840fb-d1e4-4a41-9d33-f7d06a02f442","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3104,7 +3236,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:42 GMT
+ - Fri, 08 Dec 2023 15:59:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3114,7 +3246,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4cfe0ccc-b906-4f4d-a14f-f1da1f8820b6
+ - a447eff0-27af-443a-b2a0-c13411cc7cfa
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml b/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml
index 434cdfed23..85c84d477b 100644
--- a/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8efe81c2-922c-4d0d-82e5-edb2f50fe081
+ - 5dd8ec0d-9313-409e-8b13-4e7cd172dd5f
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:12.824411Z","dhcp_enabled":true,"id":"c4ca902e-f3d1-4dff-826c-9f983b165319","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:51:12.824411Z","id":"12546c9a-0001-4298-afd9-20b1f2815cf7","subnet":"172.16.8.0/22","updated_at":"2023-11-13T13:51:12.824411Z"},{"created_at":"2023-11-13T13:51:12.824411Z","id":"c6526c83-49ad-4382-9b1a-988cdcde55bc","subnet":"fd68:d440:21c4:8e29::/64","updated_at":"2023-11-13T13:51:12.824411Z"}],"tags":[],"updated_at":"2023-11-13T13:51:12.824411Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:03:47.412938Z","dhcp_enabled":true,"id":"e01d1f09-ee72-44cf-8317-218d572b881f","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:03:47.412938Z","id":"c0ff0417-b827-4323-99c9-9ac5050696f9","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:03:47.412938Z"},{"created_at":"2023-12-08T16:03:47.412938Z","id":"b70fba72-d3f1-4e4c-8bdc-f23a6c9360b2","subnet":"fd68:d440:21c4:c8c3::/64","updated_at":"2023-12-08T16:03:47.412938Z"}],"tags":[],"updated_at":"2023-12-08T16:03:47.412938Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- "715"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:17 GMT
+ - Fri, 08 Dec 2023 16:03:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 891902c9-6cb2-4187-b187-e5374dd40338
+ - 098c65aa-2f45-41a4-87a2-74c964c4a17d
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c4ca902e-f3d1-4dff-826c-9f983b165319
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/e01d1f09-ee72-44cf-8317-218d572b881f
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:12.824411Z","dhcp_enabled":true,"id":"c4ca902e-f3d1-4dff-826c-9f983b165319","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:51:12.824411Z","id":"12546c9a-0001-4298-afd9-20b1f2815cf7","subnet":"172.16.8.0/22","updated_at":"2023-11-13T13:51:12.824411Z"},{"created_at":"2023-11-13T13:51:12.824411Z","id":"c6526c83-49ad-4382-9b1a-988cdcde55bc","subnet":"fd68:d440:21c4:8e29::/64","updated_at":"2023-11-13T13:51:12.824411Z"}],"tags":[],"updated_at":"2023-11-13T13:51:12.824411Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:03:47.412938Z","dhcp_enabled":true,"id":"e01d1f09-ee72-44cf-8317-218d572b881f","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:03:47.412938Z","id":"c0ff0417-b827-4323-99c9-9ac5050696f9","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:03:47.412938Z"},{"created_at":"2023-12-08T16:03:47.412938Z","id":"b70fba72-d3f1-4e4c-8bdc-f23a6c9360b2","subnet":"fd68:d440:21c4:c8c3::/64","updated_at":"2023-12-08T16:03:47.412938Z"}],"tags":[],"updated_at":"2023-12-08T16:03:47.412938Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- "715"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:17 GMT
+ - Fri, 08 Dec 2023 16:03:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3bc1a925-0770-40cc-a783-20b87cd3ee19
+ - 8dceacad-18c6-4cb6-9dcd-45b4964fa2eb
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-autoscaler-01","description":"","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-autoscaler-01","description":"","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671492Z","created_at":"2023-11-13T13:51:18.000671492Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.017176129Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646379Z","created_at":"2023-12-08T16:03:51.013646379Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:51.027702687Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1525"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 16:03:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 16d8d131-2e3e-422c-9f6f-3ac6e08caceb
+ - 83cc2eb5-2883-4d3b-a2fe-b35d1de8e983
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.017176Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:51.027703Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 16:03:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e643e3f6-3001-478d-a231-26d8b20b8568
+ - 487cabb0-76d1-4afe-8c46-6408e5231b03
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:19.761117Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.830900Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bc3c433b-1294-4a24-9ba8-942c5a2ac183
+ - 2dcb3688-294b-4005-92e1-7a572f136fb9
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:19.761117Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.830900Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1cd8d1d5-c15d-4844-81af-7f3d291c8e97
+ - 25153300-545b-4a1e-8c5b-7db5ea9373fa
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY0VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMGg2Q2k5YUwyWnZVRnBtYnpreE1EWk1XRWN5YTNkMFpFRlJSbTR2Wm1FdllYUXhkbmxXUmxndmMyMVVVakJYTkZsYVJtaEpSMmszSzI1TFZWSkpkMHRDVEVrS2NHaFNabGRxVUhOS00wTmFRVXhWTVRRd2RUTmlTblowYUROVVdYWm9UV1ZWVEhoWWVsRkVjMU5UZURad1UwRXhVRGgxZG1VMU1uTTJOWHBpZGxWWmJ3cGpjVlUyTldkQlUzZHRXbnAwUlhweVEwcGFSamxVY0dKVWFHRnVMMWxJUW5wbVJsWlBZemxFTURKamRYVk9SRk5QZG1WWlJrMU1SWGRoUm05blpuUmhDbXBzU1VkUk9WWk5lR1FyVFhoVlNITlFVM05KVDA5bVFrZHRSMFF3ZFVRdmRURklablZ6VEUxNVpsbFBVRXN3UWpCRFpXWnpXa3RtY3pSMlNFZENSbGtLUWtKb1dtSm1halZJYmpCMVpuTmpiMkY1VGtaMFVEQnRORFpsWkVkdFVWZ3daRWhpYkRkR1FuRXpjWGhIYVVRemRFUktTVUZKVDJvd1NEWjJlbTgyZHdwSFdUTkROVzFpYVhWVFQzaE9LM05pTVcxalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVVWQmxkSFF4WkZJeWRVNVJaRkpqV0VKUVltRkdRMjlDTVd4TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05YRllRM0pUUm1aS09FWlNNV2RITUhOdFMxaEdRVzVsWlRsQ1IyMUlPR2hMYlVKTlozcGxXVXQ0VGpod2NqSlpUUXB3UkZCTGJGRnVWMHBFY1hCVWIyOUJUSGRhVWxWYVVVUXpVVVY2TTBKSEwxUkNhV0pVUzJOQlRtTm5LMFJ3YnpOQ1FrTlVlazFGV2t4a2JFbFBlVlpyQ21wSlVGZHNTREZuWWxGVGJVRnpjVE14VUhGTE5sTk1ZbVJyYm5WaE5URnNMM1pzZG14a1JIRnVNMms0UkhJMlN6SXpNbVZGVVZSM01GRkxabUZSUVdJS2J6a3hkSHB0YUZjeFNXY3dLMmRKWjJWNVpUbGhkVEpIYkdJMVpHWTFhams0VUM4d1pXZDZXRmx4VG5kb1NXb3JWeTlJVVZBd1UwUnJhWEJ5WVZSTVdncGhTaXRoVFRKMU1VOW5hVXhCZDFoaVFWRkNOVTlNUkRkT2MxcDFWbEpRZFV0Slp6UnRUak5GY2l0NVVqUmpiREpuTjJORlpEaFlhVkYzUmpSUFlVOW9DbEZSWmxndlJHRjJNRzlxUVVoMFNsZFRkVlJ0VkV3M05uQllhMmRKYjJGdlpYVnNaZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTBiZDM5NWQtOTY0OC00N2I4LWE5N2EtYTA3ZTNjOThkZjBkLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHamhFbDB0MGV3VzFxTHJBSTZZNWVEcXIyRFJlTlE4cmJ1ZE5nbFJrWFkzUXhGMlBhRHhYaVZmWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUk5NVTFzYjFoRVZFMTZUVlJKZDA1NlJUSk5SRTB4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZhQ2xwNlRHcDFOa04xVVZwUU56Y3hhRFZqUzNwRU4zWk9OWEpGWTBrMWIzSXlLMWxoWVVKVlREUXhabHBNYVhjNFFVOUNNVFkyY25OblRGaFdaRTlpZFdRS1kxaHNSbEpJYWpGaFFYQlZjVm92V2xCdVZGbGpWblp2Y0hoTmMxVXJSblZWT1ZVMVJVZHlUU3RvUmtWeWJXTnVlRVpYVGtKVFRuUnhXVXBIYTFGUlp3cE1jR3RxT1VwYVVFbzFXVVl2TDFNeWJEWnNNRU5MVFVacGRWRjFWazFIZHpOTFEwdzNWRFJoWlVkWVdWaHdUVzVoTkU5UU4wZFViMHBPUmpOQ2VsWm5DbnBUV1VoSmJIcEZWbkUyVjI1YWVFbHNaRVpyTUdrNVJYaE9VRXN5YTBNdk4yUmtTa0k0WVcxUlF5czJSM295YVdab2VGWkphMDlWTUhGYVUxWTRWVXdLYW1JelYxRTRNVUpNYldkWlYzY3hNVkJzVVRCV2JHbEJORkp3TmxoaGJXZElRblEyZURNd1lYcEdWbFI2TTJ0RWMzbE5RVFptYTNnMWMzUXlTMFF5ZGdwQlFta3JOVTR6VjNwNlJsZERaak5tTVVsclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1FVZFJUSGwyTVVSVWVEWndXamM0T0hBNGFGUTVObVpSWVhkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFExaEplVWRNTkdvMlZubFhObGQwTVhkdVRWUktWakYyZFhsalUxaDZSRzVPYmpseU1GaHZhMU5FVFdVdlptVXlZUXB0TjBoT1FYUjBkbUo0U0ZRcmNXNURaSFF6Y1RGa2JUVlFXbk5pZHpWbVYwTkNkbk12YkdnMGJUQTBkakV2T0dKM1pITnJkVlp3UW10UlZWZzBNbk5SQ201blRtUldSVVJKY3pSd1ZHVlNla2xaYm1SRFdHODNVR0ZZWkU1TmQyUXJaRWhyZWxacE5qTlFlbkpFUzBNMFZHbHhTWGRTTURaNFozUmhiMjlyTmxJS05uRnhZM2xTVjNFNGFVVlNPVEpRVFU5TlVXdzFNWFI0U0V0TVoxVnFVa0UzZWpSaE0wSnhlR3cwYXpGRVJpOUpVVWhXWlVsd01VVkdSMjQxWjFoTk5BcDZibWhEZEVWcWRrZ3pSelZZT1dndlZGTm9aMjlPWVd4U1JEaHVSbEpUZHpkVFNrSndOM3BuU2pGb1lWUjZhR1JTU0d4Q1ZVSlRSMmQyY0dzemQxRlhDakZHV0VRMU5Ya3ljSGx5TTFWMlRWaElTMFV3VDJOU1ExVjJaRmhyUkdjeU9EZ3pkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZjFmNzc2OTItNDJkNi00MDAzLTkxNmEtMzI2MmIzMzExZjk4LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqaUhIWmpmN3JHTjdCNjl0YVdrclNNdk9GWFYyeDNhcGs1MXRncjBnR1RPQkJTOE1LREdvRGlhTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5087b192-9e85-4249-9a1a-57be194d9eee
+ - 7d7723a5-0bf7-42b6-aab6-a66db5610de8
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:19.761117Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.830900Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ecb3de0f-bf6c-465d-bb82-cc8bf683b3ea
+ - fcd8c109-d2cb-4337-a267-d082f80fc417
status: 200 OK
code: 200
duration: ""
@@ -313,10 +313,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c4ca902e-f3d1-4dff-826c-9f983b165319
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/e01d1f09-ee72-44cf-8317-218d572b881f
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:12.824411Z","dhcp_enabled":true,"id":"c4ca902e-f3d1-4dff-826c-9f983b165319","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:51:12.824411Z","id":"12546c9a-0001-4298-afd9-20b1f2815cf7","subnet":"172.16.8.0/22","updated_at":"2023-11-13T13:51:12.824411Z"},{"created_at":"2023-11-13T13:51:12.824411Z","id":"c6526c83-49ad-4382-9b1a-988cdcde55bc","subnet":"fd68:d440:21c4:8e29::/64","updated_at":"2023-11-13T13:51:12.824411Z"}],"tags":[],"updated_at":"2023-11-13T13:51:12.824411Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:03:47.412938Z","dhcp_enabled":true,"id":"e01d1f09-ee72-44cf-8317-218d572b881f","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:03:47.412938Z","id":"c0ff0417-b827-4323-99c9-9ac5050696f9","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:03:47.412938Z"},{"created_at":"2023-12-08T16:03:47.412938Z","id":"b70fba72-d3f1-4e4c-8bdc-f23a6c9360b2","subnet":"fd68:d440:21c4:c8c3::/64","updated_at":"2023-12-08T16:03:47.412938Z"}],"tags":[],"updated_at":"2023-12-08T16:03:47.412938Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- "715"
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,7 +335,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 770ef970-6913-4aea-b72c-1c07832ceb69
+ - 5c32e506-bc62-4955-8615-62faf1788193
status: 200 OK
code: 200
duration: ""
@@ -346,10 +346,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:19.761117Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.830900Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -358,7 +358,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -368,7 +368,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fef53508-50b8-42da-ab20-6f00c0ff79e4
+ - 377c3a73-9b5c-4989-b54a-07f04a74c65e
status: 200 OK
code: 200
duration: ""
@@ -379,10 +379,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY0VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMGg2Q2k5YUwyWnZVRnBtYnpreE1EWk1XRWN5YTNkMFpFRlJSbTR2Wm1FdllYUXhkbmxXUmxndmMyMVVVakJYTkZsYVJtaEpSMmszSzI1TFZWSkpkMHRDVEVrS2NHaFNabGRxVUhOS00wTmFRVXhWTVRRd2RUTmlTblowYUROVVdYWm9UV1ZWVEhoWWVsRkVjMU5UZURad1UwRXhVRGgxZG1VMU1uTTJOWHBpZGxWWmJ3cGpjVlUyTldkQlUzZHRXbnAwUlhweVEwcGFSamxVY0dKVWFHRnVMMWxJUW5wbVJsWlBZemxFTURKamRYVk9SRk5QZG1WWlJrMU1SWGRoUm05blpuUmhDbXBzU1VkUk9WWk5lR1FyVFhoVlNITlFVM05KVDA5bVFrZHRSMFF3ZFVRdmRURklablZ6VEUxNVpsbFBVRXN3UWpCRFpXWnpXa3RtY3pSMlNFZENSbGtLUWtKb1dtSm1halZJYmpCMVpuTmpiMkY1VGtaMFVEQnRORFpsWkVkdFVWZ3daRWhpYkRkR1FuRXpjWGhIYVVRemRFUktTVUZKVDJvd1NEWjJlbTgyZHdwSFdUTkROVzFpYVhWVFQzaE9LM05pTVcxalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVVWQmxkSFF4WkZJeWRVNVJaRkpqV0VKUVltRkdRMjlDTVd4TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05YRllRM0pUUm1aS09FWlNNV2RITUhOdFMxaEdRVzVsWlRsQ1IyMUlPR2hMYlVKTlozcGxXVXQ0VGpod2NqSlpUUXB3UkZCTGJGRnVWMHBFY1hCVWIyOUJUSGRhVWxWYVVVUXpVVVY2TTBKSEwxUkNhV0pVUzJOQlRtTm5LMFJ3YnpOQ1FrTlVlazFGV2t4a2JFbFBlVlpyQ21wSlVGZHNTREZuWWxGVGJVRnpjVE14VUhGTE5sTk1ZbVJyYm5WaE5URnNMM1pzZG14a1JIRnVNMms0UkhJMlN6SXpNbVZGVVZSM01GRkxabUZSUVdJS2J6a3hkSHB0YUZjeFNXY3dLMmRKWjJWNVpUbGhkVEpIYkdJMVpHWTFhams0VUM4d1pXZDZXRmx4VG5kb1NXb3JWeTlJVVZBd1UwUnJhWEJ5WVZSTVdncGhTaXRoVFRKMU1VOW5hVXhCZDFoaVFWRkNOVTlNUkRkT2MxcDFWbEpRZFV0Slp6UnRUak5GY2l0NVVqUmpiREpuTjJORlpEaFlhVkYzUmpSUFlVOW9DbEZSWmxndlJHRjJNRzlxUVVoMFNsZFRkVlJ0VkV3M05uQllhMmRKYjJGdlpYVnNaZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTBiZDM5NWQtOTY0OC00N2I4LWE5N2EtYTA3ZTNjOThkZjBkLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHamhFbDB0MGV3VzFxTHJBSTZZNWVEcXIyRFJlTlE4cmJ1ZE5nbFJrWFkzUXhGMlBhRHhYaVZmWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUk5NVTFzYjFoRVZFMTZUVlJKZDA1NlJUSk5SRTB4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZhQ2xwNlRHcDFOa04xVVZwUU56Y3hhRFZqUzNwRU4zWk9OWEpGWTBrMWIzSXlLMWxoWVVKVlREUXhabHBNYVhjNFFVOUNNVFkyY25OblRGaFdaRTlpZFdRS1kxaHNSbEpJYWpGaFFYQlZjVm92V2xCdVZGbGpWblp2Y0hoTmMxVXJSblZWT1ZVMVJVZHlUU3RvUmtWeWJXTnVlRVpYVGtKVFRuUnhXVXBIYTFGUlp3cE1jR3RxT1VwYVVFbzFXVVl2TDFNeWJEWnNNRU5MVFVacGRWRjFWazFIZHpOTFEwdzNWRFJoWlVkWVdWaHdUVzVoTkU5UU4wZFViMHBPUmpOQ2VsWm5DbnBUV1VoSmJIcEZWbkUyVjI1YWVFbHNaRVpyTUdrNVJYaE9VRXN5YTBNdk4yUmtTa0k0WVcxUlF5czJSM295YVdab2VGWkphMDlWTUhGYVUxWTRWVXdLYW1JelYxRTRNVUpNYldkWlYzY3hNVkJzVVRCV2JHbEJORkp3TmxoaGJXZElRblEyZURNd1lYcEdWbFI2TTJ0RWMzbE5RVFptYTNnMWMzUXlTMFF5ZGdwQlFta3JOVTR6VjNwNlJsZERaak5tTVVsclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1FVZFJUSGwyTVVSVWVEWndXamM0T0hBNGFGUTVObVpSWVhkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFExaEplVWRNTkdvMlZubFhObGQwTVhkdVRWUktWakYyZFhsalUxaDZSRzVPYmpseU1GaHZhMU5FVFdVdlptVXlZUXB0TjBoT1FYUjBkbUo0U0ZRcmNXNURaSFF6Y1RGa2JUVlFXbk5pZHpWbVYwTkNkbk12YkdnMGJUQTBkakV2T0dKM1pITnJkVlp3UW10UlZWZzBNbk5SQ201blRtUldSVVJKY3pSd1ZHVlNla2xaYm1SRFdHODNVR0ZZWkU1TmQyUXJaRWhyZWxacE5qTlFlbkpFUzBNMFZHbHhTWGRTTURaNFozUmhiMjlyTmxJS05uRnhZM2xTVjNFNGFVVlNPVEpRVFU5TlVXdzFNWFI0U0V0TVoxVnFVa0UzZWpSaE0wSnhlR3cwYXpGRVJpOUpVVWhXWlVsd01VVkdSMjQxWjFoTk5BcDZibWhEZEVWcWRrZ3pSelZZT1dndlZGTm9aMjlPWVd4U1JEaHVSbEpUZHpkVFNrSndOM3BuU2pGb1lWUjZhR1JTU0d4Q1ZVSlRSMmQyY0dzemQxRlhDakZHV0VRMU5Ya3ljSGx5TTFWMlRWaElTMFV3VDJOU1ExVjJaRmhyUkdjeU9EZ3pkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZjFmNzc2OTItNDJkNi00MDAzLTkxNmEtMzI2MmIzMzExZjk4LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqaUhIWmpmN3JHTjdCNjl0YVdrclNNdk9GWFYyeDNhcGs1MXRncjBnR1RPQkJTOE1LREdvRGlhTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -401,7 +401,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 962946b2-4e55-4c9e-b9e1-7644afaadc23
+ - e1e58e20-98db-4b4e-913a-ca8dbfee7afe
status: 200 OK
code: 200
duration: ""
@@ -412,10 +412,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c4ca902e-f3d1-4dff-826c-9f983b165319
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/e01d1f09-ee72-44cf-8317-218d572b881f
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:12.824411Z","dhcp_enabled":true,"id":"c4ca902e-f3d1-4dff-826c-9f983b165319","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:51:12.824411Z","id":"12546c9a-0001-4298-afd9-20b1f2815cf7","subnet":"172.16.8.0/22","updated_at":"2023-11-13T13:51:12.824411Z"},{"created_at":"2023-11-13T13:51:12.824411Z","id":"c6526c83-49ad-4382-9b1a-988cdcde55bc","subnet":"fd68:d440:21c4:8e29::/64","updated_at":"2023-11-13T13:51:12.824411Z"}],"tags":[],"updated_at":"2023-11-13T13:51:12.824411Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:03:47.412938Z","dhcp_enabled":true,"id":"e01d1f09-ee72-44cf-8317-218d572b881f","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:03:47.412938Z","id":"c0ff0417-b827-4323-99c9-9ac5050696f9","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:03:47.412938Z"},{"created_at":"2023-12-08T16:03:47.412938Z","id":"b70fba72-d3f1-4e4c-8bdc-f23a6c9360b2","subnet":"fd68:d440:21c4:c8c3::/64","updated_at":"2023-12-08T16:03:47.412938Z"}],"tags":[],"updated_at":"2023-12-08T16:03:47.412938Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- "715"
@@ -424,7 +424,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -434,7 +434,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fecff8cb-5f32-4e72-982e-edeb036f0b60
+ - 512d1226-f519-475f-aaa6-050e3a8faed7
status: 200 OK
code: 200
duration: ""
@@ -445,10 +445,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:19.761117Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.830900Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -457,7 +457,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -467,7 +467,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7341a4e7-d1ca-4cba-a34b-3d6a93b3022b
+ - 64fe59ea-0abc-4320-a6e0-852470c6caaf
status: 200 OK
code: 200
duration: ""
@@ -478,10 +478,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY0VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMGg2Q2k5YUwyWnZVRnBtYnpreE1EWk1XRWN5YTNkMFpFRlJSbTR2Wm1FdllYUXhkbmxXUmxndmMyMVVVakJYTkZsYVJtaEpSMmszSzI1TFZWSkpkMHRDVEVrS2NHaFNabGRxVUhOS00wTmFRVXhWTVRRd2RUTmlTblowYUROVVdYWm9UV1ZWVEhoWWVsRkVjMU5UZURad1UwRXhVRGgxZG1VMU1uTTJOWHBpZGxWWmJ3cGpjVlUyTldkQlUzZHRXbnAwUlhweVEwcGFSamxVY0dKVWFHRnVMMWxJUW5wbVJsWlBZemxFTURKamRYVk9SRk5QZG1WWlJrMU1SWGRoUm05blpuUmhDbXBzU1VkUk9WWk5lR1FyVFhoVlNITlFVM05KVDA5bVFrZHRSMFF3ZFVRdmRURklablZ6VEUxNVpsbFBVRXN3UWpCRFpXWnpXa3RtY3pSMlNFZENSbGtLUWtKb1dtSm1halZJYmpCMVpuTmpiMkY1VGtaMFVEQnRORFpsWkVkdFVWZ3daRWhpYkRkR1FuRXpjWGhIYVVRemRFUktTVUZKVDJvd1NEWjJlbTgyZHdwSFdUTkROVzFpYVhWVFQzaE9LM05pTVcxalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVVWQmxkSFF4WkZJeWRVNVJaRkpqV0VKUVltRkdRMjlDTVd4TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05YRllRM0pUUm1aS09FWlNNV2RITUhOdFMxaEdRVzVsWlRsQ1IyMUlPR2hMYlVKTlozcGxXVXQ0VGpod2NqSlpUUXB3UkZCTGJGRnVWMHBFY1hCVWIyOUJUSGRhVWxWYVVVUXpVVVY2TTBKSEwxUkNhV0pVUzJOQlRtTm5LMFJ3YnpOQ1FrTlVlazFGV2t4a2JFbFBlVlpyQ21wSlVGZHNTREZuWWxGVGJVRnpjVE14VUhGTE5sTk1ZbVJyYm5WaE5URnNMM1pzZG14a1JIRnVNMms0UkhJMlN6SXpNbVZGVVZSM01GRkxabUZSUVdJS2J6a3hkSHB0YUZjeFNXY3dLMmRKWjJWNVpUbGhkVEpIYkdJMVpHWTFhams0VUM4d1pXZDZXRmx4VG5kb1NXb3JWeTlJVVZBd1UwUnJhWEJ5WVZSTVdncGhTaXRoVFRKMU1VOW5hVXhCZDFoaVFWRkNOVTlNUkRkT2MxcDFWbEpRZFV0Slp6UnRUak5GY2l0NVVqUmpiREpuTjJORlpEaFlhVkYzUmpSUFlVOW9DbEZSWmxndlJHRjJNRzlxUVVoMFNsZFRkVlJ0VkV3M05uQllhMmRKYjJGdlpYVnNaZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTBiZDM5NWQtOTY0OC00N2I4LWE5N2EtYTA3ZTNjOThkZjBkLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHamhFbDB0MGV3VzFxTHJBSTZZNWVEcXIyRFJlTlE4cmJ1ZE5nbFJrWFkzUXhGMlBhRHhYaVZmWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUk5NVTFzYjFoRVZFMTZUVlJKZDA1NlJUSk5SRTB4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZhQ2xwNlRHcDFOa04xVVZwUU56Y3hhRFZqUzNwRU4zWk9OWEpGWTBrMWIzSXlLMWxoWVVKVlREUXhabHBNYVhjNFFVOUNNVFkyY25OblRGaFdaRTlpZFdRS1kxaHNSbEpJYWpGaFFYQlZjVm92V2xCdVZGbGpWblp2Y0hoTmMxVXJSblZWT1ZVMVJVZHlUU3RvUmtWeWJXTnVlRVpYVGtKVFRuUnhXVXBIYTFGUlp3cE1jR3RxT1VwYVVFbzFXVVl2TDFNeWJEWnNNRU5MVFVacGRWRjFWazFIZHpOTFEwdzNWRFJoWlVkWVdWaHdUVzVoTkU5UU4wZFViMHBPUmpOQ2VsWm5DbnBUV1VoSmJIcEZWbkUyVjI1YWVFbHNaRVpyTUdrNVJYaE9VRXN5YTBNdk4yUmtTa0k0WVcxUlF5czJSM295YVdab2VGWkphMDlWTUhGYVUxWTRWVXdLYW1JelYxRTRNVUpNYldkWlYzY3hNVkJzVVRCV2JHbEJORkp3TmxoaGJXZElRblEyZURNd1lYcEdWbFI2TTJ0RWMzbE5RVFptYTNnMWMzUXlTMFF5ZGdwQlFta3JOVTR6VjNwNlJsZERaak5tTVVsclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1FVZFJUSGwyTVVSVWVEWndXamM0T0hBNGFGUTVObVpSWVhkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFExaEplVWRNTkdvMlZubFhObGQwTVhkdVRWUktWakYyZFhsalUxaDZSRzVPYmpseU1GaHZhMU5FVFdVdlptVXlZUXB0TjBoT1FYUjBkbUo0U0ZRcmNXNURaSFF6Y1RGa2JUVlFXbk5pZHpWbVYwTkNkbk12YkdnMGJUQTBkakV2T0dKM1pITnJkVlp3UW10UlZWZzBNbk5SQ201blRtUldSVVJKY3pSd1ZHVlNla2xaYm1SRFdHODNVR0ZZWkU1TmQyUXJaRWhyZWxacE5qTlFlbkpFUzBNMFZHbHhTWGRTTURaNFozUmhiMjlyTmxJS05uRnhZM2xTVjNFNGFVVlNPVEpRVFU5TlVXdzFNWFI0U0V0TVoxVnFVa0UzZWpSaE0wSnhlR3cwYXpGRVJpOUpVVWhXWlVsd01VVkdSMjQxWjFoTk5BcDZibWhEZEVWcWRrZ3pSelZZT1dndlZGTm9aMjlPWVd4U1JEaHVSbEpUZHpkVFNrSndOM3BuU2pGb1lWUjZhR1JTU0d4Q1ZVSlRSMmQyY0dzemQxRlhDakZHV0VRMU5Ya3ljSGx5TTFWMlRWaElTMFV3VDJOU1ExVjJaRmhyUkdjeU9EZ3pkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZjFmNzc2OTItNDJkNi00MDAzLTkxNmEtMzI2MmIzMzExZjk4LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqaUhIWmpmN3JHTjdCNjl0YVdrclNNdk9GWFYyeDNhcGs1MXRncjBnR1RPQkJTOE1LREdvRGlhTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -490,7 +490,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -500,7 +500,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee33e4e0-fa0a-49ab-9d0b-52ce28826400
+ - c32e50a2-34cc-426c-bab3-247cfb19ae27
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:25.420417541Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:58.394736416Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1520"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:25 GMT
+ - Fri, 08 Dec 2023 16:03:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cf77cb86-8031-48ba-8cc7-07362993edf8
+ - 2cf607e9-8d50-45b0-81ed-bf9ad8e9d0c9
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:25.420418Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:58.394736Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1517"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:25 GMT
+ - Fri, 08 Dec 2023 16:03:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e459ef19-fb63-4aa5-a50c-dcbd331325ae
+ - 6316442c-822c-45ce-93d9-c38e6e17aeeb
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:26.584746Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:59.549476Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1522"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:30 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e291587-b7a8-435c-a014-b4cd25dd44ba
+ - 9a979e22-a966-44c2-89da-4cd3f92f3de0
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:26.584746Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:59.549476Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1522"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:30 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 52e0d358-a8c6-42b7-85a5-602589b5bbd4
+ - 15b794f9-e3cc-44bc-ac5a-6694b695be3f
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY0VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMGg2Q2k5YUwyWnZVRnBtYnpreE1EWk1XRWN5YTNkMFpFRlJSbTR2Wm1FdllYUXhkbmxXUmxndmMyMVVVakJYTkZsYVJtaEpSMmszSzI1TFZWSkpkMHRDVEVrS2NHaFNabGRxVUhOS00wTmFRVXhWTVRRd2RUTmlTblowYUROVVdYWm9UV1ZWVEhoWWVsRkVjMU5UZURad1UwRXhVRGgxZG1VMU1uTTJOWHBpZGxWWmJ3cGpjVlUyTldkQlUzZHRXbnAwUlhweVEwcGFSamxVY0dKVWFHRnVMMWxJUW5wbVJsWlBZemxFTURKamRYVk9SRk5QZG1WWlJrMU1SWGRoUm05blpuUmhDbXBzU1VkUk9WWk5lR1FyVFhoVlNITlFVM05KVDA5bVFrZHRSMFF3ZFVRdmRURklablZ6VEUxNVpsbFBVRXN3UWpCRFpXWnpXa3RtY3pSMlNFZENSbGtLUWtKb1dtSm1halZJYmpCMVpuTmpiMkY1VGtaMFVEQnRORFpsWkVkdFVWZ3daRWhpYkRkR1FuRXpjWGhIYVVRemRFUktTVUZKVDJvd1NEWjJlbTgyZHdwSFdUTkROVzFpYVhWVFQzaE9LM05pTVcxalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVVWQmxkSFF4WkZJeWRVNVJaRkpqV0VKUVltRkdRMjlDTVd4TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05YRllRM0pUUm1aS09FWlNNV2RITUhOdFMxaEdRVzVsWlRsQ1IyMUlPR2hMYlVKTlozcGxXVXQ0VGpod2NqSlpUUXB3UkZCTGJGRnVWMHBFY1hCVWIyOUJUSGRhVWxWYVVVUXpVVVY2TTBKSEwxUkNhV0pVUzJOQlRtTm5LMFJ3YnpOQ1FrTlVlazFGV2t4a2JFbFBlVlpyQ21wSlVGZHNTREZuWWxGVGJVRnpjVE14VUhGTE5sTk1ZbVJyYm5WaE5URnNMM1pzZG14a1JIRnVNMms0UkhJMlN6SXpNbVZGVVZSM01GRkxabUZSUVdJS2J6a3hkSHB0YUZjeFNXY3dLMmRKWjJWNVpUbGhkVEpIYkdJMVpHWTFhams0VUM4d1pXZDZXRmx4VG5kb1NXb3JWeTlJVVZBd1UwUnJhWEJ5WVZSTVdncGhTaXRoVFRKMU1VOW5hVXhCZDFoaVFWRkNOVTlNUkRkT2MxcDFWbEpRZFV0Slp6UnRUak5GY2l0NVVqUmpiREpuTjJORlpEaFlhVkYzUmpSUFlVOW9DbEZSWmxndlJHRjJNRzlxUVVoMFNsZFRkVlJ0VkV3M05uQllhMmRKYjJGdlpYVnNaZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTBiZDM5NWQtOTY0OC00N2I4LWE5N2EtYTA3ZTNjOThkZjBkLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAyIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHamhFbDB0MGV3VzFxTHJBSTZZNWVEcXIyRFJlTlE4cmJ1ZE5nbFJrWFkzUXhGMlBhRHhYaVZmWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUk5NVTFzYjFoRVZFMTZUVlJKZDA1NlJUSk5SRTB4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZhQ2xwNlRHcDFOa04xVVZwUU56Y3hhRFZqUzNwRU4zWk9OWEpGWTBrMWIzSXlLMWxoWVVKVlREUXhabHBNYVhjNFFVOUNNVFkyY25OblRGaFdaRTlpZFdRS1kxaHNSbEpJYWpGaFFYQlZjVm92V2xCdVZGbGpWblp2Y0hoTmMxVXJSblZWT1ZVMVJVZHlUU3RvUmtWeWJXTnVlRVpYVGtKVFRuUnhXVXBIYTFGUlp3cE1jR3RxT1VwYVVFbzFXVVl2TDFNeWJEWnNNRU5MVFVacGRWRjFWazFIZHpOTFEwdzNWRFJoWlVkWVdWaHdUVzVoTkU5UU4wZFViMHBPUmpOQ2VsWm5DbnBUV1VoSmJIcEZWbkUyVjI1YWVFbHNaRVpyTUdrNVJYaE9VRXN5YTBNdk4yUmtTa0k0WVcxUlF5czJSM295YVdab2VGWkphMDlWTUhGYVUxWTRWVXdLYW1JelYxRTRNVUpNYldkWlYzY3hNVkJzVVRCV2JHbEJORkp3TmxoaGJXZElRblEyZURNd1lYcEdWbFI2TTJ0RWMzbE5RVFptYTNnMWMzUXlTMFF5ZGdwQlFta3JOVTR6VjNwNlJsZERaak5tTVVsclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1FVZFJUSGwyTVVSVWVEWndXamM0T0hBNGFGUTVObVpSWVhkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFExaEplVWRNTkdvMlZubFhObGQwTVhkdVRWUktWakYyZFhsalUxaDZSRzVPYmpseU1GaHZhMU5FVFdVdlptVXlZUXB0TjBoT1FYUjBkbUo0U0ZRcmNXNURaSFF6Y1RGa2JUVlFXbk5pZHpWbVYwTkNkbk12YkdnMGJUQTBkakV2T0dKM1pITnJkVlp3UW10UlZWZzBNbk5SQ201blRtUldSVVJKY3pSd1ZHVlNla2xaYm1SRFdHODNVR0ZZWkU1TmQyUXJaRWhyZWxacE5qTlFlbkpFUzBNMFZHbHhTWGRTTURaNFozUmhiMjlyTmxJS05uRnhZM2xTVjNFNGFVVlNPVEpRVFU5TlVXdzFNWFI0U0V0TVoxVnFVa0UzZWpSaE0wSnhlR3cwYXpGRVJpOUpVVWhXWlVsd01VVkdSMjQxWjFoTk5BcDZibWhEZEVWcWRrZ3pSelZZT1dndlZGTm9aMjlPWVd4U1JEaHVSbEpUZHpkVFNrSndOM3BuU2pGb1lWUjZhR1JTU0d4Q1ZVSlRSMmQyY0dzemQxRlhDakZHV0VRMU5Ya3ljSGx5TTFWMlRWaElTMFV3VDJOU1ExVjJaRmhyUkdjeU9EZ3pkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZjFmNzc2OTItNDJkNi00MDAzLTkxNmEtMzI2MmIzMzExZjk4LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAyIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqaUhIWmpmN3JHTjdCNjl0YVdrclNNdk9GWFYyeDNhcGs1MXRncjBnR1RPQkJTOE1LREdvRGlhTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:30 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7001b986-5fe1-4c5d-a413-946c0d865f2f
+ - df0d5b0c-d9d2-42b5-a64a-7a0cca32e807
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:26.584746Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:59.549476Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1522"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:30 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7a57d5ff-5117-4c0e-9b12-32056565721b
+ - 3002108e-2ac9-497b-aeb1-d10691e84675
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c4ca902e-f3d1-4dff-826c-9f983b165319
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/e01d1f09-ee72-44cf-8317-218d572b881f
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:12.824411Z","dhcp_enabled":true,"id":"c4ca902e-f3d1-4dff-826c-9f983b165319","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:51:12.824411Z","id":"12546c9a-0001-4298-afd9-20b1f2815cf7","subnet":"172.16.8.0/22","updated_at":"2023-11-13T13:51:12.824411Z"},{"created_at":"2023-11-13T13:51:12.824411Z","id":"c6526c83-49ad-4382-9b1a-988cdcde55bc","subnet":"fd68:d440:21c4:8e29::/64","updated_at":"2023-11-13T13:51:12.824411Z"}],"tags":[],"updated_at":"2023-11-13T13:51:12.824411Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:03:47.412938Z","dhcp_enabled":true,"id":"e01d1f09-ee72-44cf-8317-218d572b881f","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:03:47.412938Z","id":"c0ff0417-b827-4323-99c9-9ac5050696f9","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:03:47.412938Z"},{"created_at":"2023-12-08T16:03:47.412938Z","id":"b70fba72-d3f1-4e4c-8bdc-f23a6c9360b2","subnet":"fd68:d440:21c4:c8c3::/64","updated_at":"2023-12-08T16:03:47.412938Z"}],"tags":[],"updated_at":"2023-12-08T16:03:47.412938Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- "715"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:31 GMT
+ - Fri, 08 Dec 2023 16:04:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 99dab88e-b0b5-4b76-a138-98186616975f
+ - 61233ec1-f36c-4f4d-b0ad-83cbe557aec8
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:26.584746Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:03:59.549476Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1522"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:31 GMT
+ - Fri, 08 Dec 2023 16:04:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3013705d-875c-4361-ae2b-1c267340f8ae
+ - ead63974-901e-4235-b755-c572ecf56d04
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY0VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMGg2Q2k5YUwyWnZVRnBtYnpreE1EWk1XRWN5YTNkMFpFRlJSbTR2Wm1FdllYUXhkbmxXUmxndmMyMVVVakJYTkZsYVJtaEpSMmszSzI1TFZWSkpkMHRDVEVrS2NHaFNabGRxVUhOS00wTmFRVXhWTVRRd2RUTmlTblowYUROVVdYWm9UV1ZWVEhoWWVsRkVjMU5UZURad1UwRXhVRGgxZG1VMU1uTTJOWHBpZGxWWmJ3cGpjVlUyTldkQlUzZHRXbnAwUlhweVEwcGFSamxVY0dKVWFHRnVMMWxJUW5wbVJsWlBZemxFTURKamRYVk9SRk5QZG1WWlJrMU1SWGRoUm05blpuUmhDbXBzU1VkUk9WWk5lR1FyVFhoVlNITlFVM05KVDA5bVFrZHRSMFF3ZFVRdmRURklablZ6VEUxNVpsbFBVRXN3UWpCRFpXWnpXa3RtY3pSMlNFZENSbGtLUWtKb1dtSm1halZJYmpCMVpuTmpiMkY1VGtaMFVEQnRORFpsWkVkdFVWZ3daRWhpYkRkR1FuRXpjWGhIYVVRemRFUktTVUZKVDJvd1NEWjJlbTgyZHdwSFdUTkROVzFpYVhWVFQzaE9LM05pTVcxalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVVWQmxkSFF4WkZJeWRVNVJaRkpqV0VKUVltRkdRMjlDTVd4TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05YRllRM0pUUm1aS09FWlNNV2RITUhOdFMxaEdRVzVsWlRsQ1IyMUlPR2hMYlVKTlozcGxXVXQ0VGpod2NqSlpUUXB3UkZCTGJGRnVWMHBFY1hCVWIyOUJUSGRhVWxWYVVVUXpVVVY2TTBKSEwxUkNhV0pVUzJOQlRtTm5LMFJ3YnpOQ1FrTlVlazFGV2t4a2JFbFBlVlpyQ21wSlVGZHNTREZuWWxGVGJVRnpjVE14VUhGTE5sTk1ZbVJyYm5WaE5URnNMM1pzZG14a1JIRnVNMms0UkhJMlN6SXpNbVZGVVZSM01GRkxabUZSUVdJS2J6a3hkSHB0YUZjeFNXY3dLMmRKWjJWNVpUbGhkVEpIYkdJMVpHWTFhams0VUM4d1pXZDZXRmx4VG5kb1NXb3JWeTlJVVZBd1UwUnJhWEJ5WVZSTVdncGhTaXRoVFRKMU1VOW5hVXhCZDFoaVFWRkNOVTlNUkRkT2MxcDFWbEpRZFV0Slp6UnRUak5GY2l0NVVqUmpiREpuTjJORlpEaFlhVkYzUmpSUFlVOW9DbEZSWmxndlJHRjJNRzlxUVVoMFNsZFRkVlJ0VkV3M05uQllhMmRKYjJGdlpYVnNaZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTBiZDM5NWQtOTY0OC00N2I4LWE5N2EtYTA3ZTNjOThkZjBkLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAyIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHamhFbDB0MGV3VzFxTHJBSTZZNWVEcXIyRFJlTlE4cmJ1ZE5nbFJrWFkzUXhGMlBhRHhYaVZmWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUk5NVTFzYjFoRVZFMTZUVlJKZDA1NlJUSk5SRTB4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZhQ2xwNlRHcDFOa04xVVZwUU56Y3hhRFZqUzNwRU4zWk9OWEpGWTBrMWIzSXlLMWxoWVVKVlREUXhabHBNYVhjNFFVOUNNVFkyY25OblRGaFdaRTlpZFdRS1kxaHNSbEpJYWpGaFFYQlZjVm92V2xCdVZGbGpWblp2Y0hoTmMxVXJSblZWT1ZVMVJVZHlUU3RvUmtWeWJXTnVlRVpYVGtKVFRuUnhXVXBIYTFGUlp3cE1jR3RxT1VwYVVFbzFXVVl2TDFNeWJEWnNNRU5MVFVacGRWRjFWazFIZHpOTFEwdzNWRFJoWlVkWVdWaHdUVzVoTkU5UU4wZFViMHBPUmpOQ2VsWm5DbnBUV1VoSmJIcEZWbkUyVjI1YWVFbHNaRVpyTUdrNVJYaE9VRXN5YTBNdk4yUmtTa0k0WVcxUlF5czJSM295YVdab2VGWkphMDlWTUhGYVUxWTRWVXdLYW1JelYxRTRNVUpNYldkWlYzY3hNVkJzVVRCV2JHbEJORkp3TmxoaGJXZElRblEyZURNd1lYcEdWbFI2TTJ0RWMzbE5RVFptYTNnMWMzUXlTMFF5ZGdwQlFta3JOVTR6VjNwNlJsZERaak5tTVVsclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1FVZFJUSGwyTVVSVWVEWndXamM0T0hBNGFGUTVObVpSWVhkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFExaEplVWRNTkdvMlZubFhObGQwTVhkdVRWUktWakYyZFhsalUxaDZSRzVPYmpseU1GaHZhMU5FVFdVdlptVXlZUXB0TjBoT1FYUjBkbUo0U0ZRcmNXNURaSFF6Y1RGa2JUVlFXbk5pZHpWbVYwTkNkbk12YkdnMGJUQTBkakV2T0dKM1pITnJkVlp3UW10UlZWZzBNbk5SQ201blRtUldSVVJKY3pSd1ZHVlNla2xaYm1SRFdHODNVR0ZZWkU1TmQyUXJaRWhyZWxacE5qTlFlbkpFUzBNMFZHbHhTWGRTTURaNFozUmhiMjlyTmxJS05uRnhZM2xTVjNFNGFVVlNPVEpRVFU5TlVXdzFNWFI0U0V0TVoxVnFVa0UzZWpSaE0wSnhlR3cwYXpGRVJpOUpVVWhXWlVsd01VVkdSMjQxWjFoTk5BcDZibWhEZEVWcWRrZ3pSelZZT1dndlZGTm9aMjlPWVd4U1JEaHVSbEpUZHpkVFNrSndOM3BuU2pGb1lWUjZhR1JTU0d4Q1ZVSlRSMmQyY0dzemQxRlhDakZHV0VRMU5Ya3ljSGx5TTFWMlRWaElTMFV3VDJOU1ExVjJaRmhyUkdjeU9EZ3pkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZjFmNzc2OTItNDJkNi00MDAzLTkxNmEtMzI2MmIzMzExZjk4LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAyIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqaUhIWmpmN3JHTjdCNjl0YVdrclNNdk9GWFYyeDNhcGs1MXRncjBnR1RPQkJTOE1LREdvRGlhTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:31 GMT
+ - Fri, 08 Dec 2023 16:04:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26c1135f-5e42-4f0b-9b9a-13552f732479
+ - 2bb2c7fc-f65b-4dbc-8b9b-8f62dabbcdce
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:32.064753161Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:05.209332150Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1520"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:32 GMT
+ - Fri, 08 Dec 2023 16:04:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c777bcf-149c-413c-8a2d-98a112f1ece5
+ - 2d268d46-c28b-4552-9529-87185eb35911
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:32.064753Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:05.209332Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1517"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:32 GMT
+ - Fri, 08 Dec 2023 16:04:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f2e4bc89-40cc-487d-b3b9-fa7fcc5acf11
+ - 7fb0ec41-5321-484c-8c28-138f9e5341b3
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://50bd395d-9648-47b8-a97a-a07e3c98df0d.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.000671Z","created_at":"2023-11-13T13:51:18.000671Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.50bd395d-9648-47b8-a97a-a07e3c98df0d.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-11-13T13:51:32.064753Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://f1f77692-42d6-4003-916a-3262b3311f98.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:51.013646Z","created_at":"2023-12-08T16:03:51.013646Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f1f77692-42d6-4003-916a-3262b3311f98.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"f1f77692-42d6-4003-916a-3262b3311f98","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e01d1f09-ee72-44cf-8317-218d572b881f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:05.209332Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1517"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:37 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ddbe49d7-4b9d-46d4-80d8-4a14f4d0ae0f
+ - 14334ceb-a85f-4e67-8ec9-d9acf71046df
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"f1f77692-42d6-4003-916a-3262b3311f98","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:42 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9e8c9e39-4e85-4bec-8972-3e8ded70ad1a
+ - aff0727e-b758-451f-b604-e46d07bbd873
status: 404 Not Found
code: 404
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c4ca902e-f3d1-4dff-826c-9f983b165319
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/e01d1f09-ee72-44cf-8317-218d572b881f
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"e01d1f09-ee72-44cf-8317-218d572b881f","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:42 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22e7833b-8be2-4d1b-bd23-13f68610ccb0
+ - 0dcacbb2-3686-4c24-8da1-12b59b010ff2
status: 404 Not Found
code: 404
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/50bd395d-9648-47b8-a97a-a07e3c98df0d
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/f1f77692-42d6-4003-916a-3262b3311f98
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"50bd395d-9648-47b8-a97a-a07e3c98df0d","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"f1f77692-42d6-4003-916a-3262b3311f98","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:42 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 72d1b730-8269-4ef2-bedd-2f25794ca710
+ - 996d8850-8309-4bfe-9fe9-be48b00c22ec
status: 404 Not Found
code: 404
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c4ca902e-f3d1-4dff-826c-9f983b165319
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/e01d1f09-ee72-44cf-8317-218d572b881f
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"c4ca902e-f3d1-4dff-826c-9f983b165319","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"e01d1f09-ee72-44cf-8317-218d572b881f","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:42 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae41040b-35f8-420c-9c40-4b7ba2fbf4b9
+ - c5582ac2-40c9-4fac-99ae-b0b5cd47fa45
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-basic.cassette.yaml b/scaleway/testdata/k8s-cluster-basic.cassette.yaml
index 9b07a12042..ed2ef12cbf 100644
--- a/scaleway/testdata/k8s-cluster-basic.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-basic.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f460e344-1114-4fef-8301-325acb6053c5
+ - 722421db-3e8f-49b0-a61c-e25a323fa11b
status: 200 OK
code: 200
duration: ""
@@ -61,7 +61,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -71,7 +71,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 047c0833-b2dc-4c92-9669-96e9aa5b83d7
+ - 66a843b3-7b87-43dd-a7ae-62bfeffc2dfe
status: 200 OK
code: 200
duration: ""
@@ -87,7 +87,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:43.091315Z","dhcp_enabled":true,"id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:43.091315Z","id":"6d4afa64-9bed-4210-a3b5-dcdae6503771","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:51:43.091315Z"},{"created_at":"2023-11-13T13:51:43.091315Z","id":"c95f05e0-b838-4fe3-820a-d79ce0fe9c25","subnet":"fd63:256c:45f7:c40b::/64","updated_at":"2023-11-13T13:51:43.091315Z"}],"tags":[],"updated_at":"2023-11-13T13:51:43.091315Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:16.238622Z","dhcp_enabled":true,"id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:16.238622Z","id":"9f7d6185-53ff-491a-b3b6-dac31e794757","subnet":"172.16.28.0/22","updated_at":"2023-12-08T16:04:16.238622Z"},{"created_at":"2023-12-08T16:04:16.238622Z","id":"770af4f8-aa92-433d-9e67-453b745f95c5","subnet":"fd63:256c:45f7:c3f8::/64","updated_at":"2023-12-08T16:04:16.238622Z"}],"tags":[],"updated_at":"2023-12-08T16:04:16.238622Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "713"
@@ -96,7 +96,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:48 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -106,7 +106,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 94ad51ed-6593-471f-8541-4d18c16f9809
+ - 4890f0bb-2f7c-4faf-88d4-5aaa70873267
status: 200 OK
code: 200
duration: ""
@@ -117,10 +117,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ffba1c99-4cf3-4a48-9cf2-82769bb9a988
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b01756e5-7572-4bf9-8f33-713219cbdcc2
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:43.091315Z","dhcp_enabled":true,"id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:43.091315Z","id":"6d4afa64-9bed-4210-a3b5-dcdae6503771","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:51:43.091315Z"},{"created_at":"2023-11-13T13:51:43.091315Z","id":"c95f05e0-b838-4fe3-820a-d79ce0fe9c25","subnet":"fd63:256c:45f7:c40b::/64","updated_at":"2023-11-13T13:51:43.091315Z"}],"tags":[],"updated_at":"2023-11-13T13:51:43.091315Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:16.238622Z","dhcp_enabled":true,"id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:16.238622Z","id":"9f7d6185-53ff-491a-b3b6-dac31e794757","subnet":"172.16.28.0/22","updated_at":"2023-12-08T16:04:16.238622Z"},{"created_at":"2023-12-08T16:04:16.238622Z","id":"770af4f8-aa92-433d-9e67-453b745f95c5","subnet":"fd63:256c:45f7:c3f8::/64","updated_at":"2023-12-08T16:04:16.238622Z"}],"tags":[],"updated_at":"2023-12-08T16:04:16.238622Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "713"
@@ -129,7 +129,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:49 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -139,12 +139,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a67d5b53-24ea-4c2c-a669-3f9015b14f85
+ - 9578701d-2c7d-44f2-b447-c41a107a6b87
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.27.6","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.27.6","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2"}'
form: {}
headers:
Content-Type:
@@ -155,7 +155,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039988674Z","created_at":"2023-11-13T13:51:50.039988674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:50.190906559Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372266Z","created_at":"2023-12-08T16:04:17.385372266Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:17.393550364Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1503"
@@ -164,7 +164,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:50 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -174,7 +174,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 197d6143-149e-435c-b45e-cbd5393277dd
+ - 406dc80c-aa0b-4bce-90a4-057412c299c4
status: 200 OK
code: 200
duration: ""
@@ -185,10 +185,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:50.190907Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:17.393550Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1494"
@@ -197,7 +197,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:50 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -207,7 +207,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b49724cb-c5e7-41cf-86ed-05d9e0da93a2
+ - 8345aa1b-866a-4130-887b-ca666bbd3f19
status: 200 OK
code: 200
duration: ""
@@ -218,10 +218,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:53.292741Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:19.129147Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -230,7 +230,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -240,7 +240,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d84979ca-5052-4716-b898-9fe74dde66f3
+ - d72db476-2923-45d3-9258-9c52998991c7
status: 200 OK
code: 200
duration: ""
@@ -251,10 +251,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:53.292741Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:19.129147Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -263,7 +263,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -273,7 +273,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ee3ccc8-794c-45a3-81be-0a6223b06eab
+ - b16435ab-1659-4d8a-adfd-ca37a91ad727
status: 200 OK
code: 200
duration: ""
@@ -284,10 +284,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZNVTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVV4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUaXROQ201c1pXbHBNazR5ZUVSTlFWSmhaM2R2VjB4RWJGZHJiVkZQUXpkR2FHMDNkRWxwVTB3MFpWbEpUME5WVjFjMVdISnlkVzB4YVdaRVpXdGlLMFpxVW1ZS2JVRTRkSEpDVlN0NVRHZHZWbmxYTDFoM1lpOTVWMFp1ZG1RMlVFbGtPRTkxTkdoU2JtVkVXRGRpTTB0aGVFMVBWbGhTWWt0aWJVRnVWRU5PWlVSRldBcHVibGd4UTJ4R2FUWjBSV053ZGxCdWVXSmFVM0pzUVdvNE4yNXdSM1Y0U0VwUGJXODNMMVZFTlZOQ00wSnRNakJpV0RsSGVtTjFkM2xCWlRWTVluWm9DbWhpVGxCdFEzSlhNVGM1TXpKc1pYRnRTVzU1VEV0UlYyWklabXhtYzBkeGFWVnNPVzFEV2xWT1RsZDVTV3AyWTFreVpFTkJOVTk0YVc5WU5XY3diQ3NLWVU5VlkxUXlZMk5uU2pKUGRURTJUV0ZtVjIxR1dVRTNaVGhCYVhOaGVVcDVWemRzUlRKT2FXTjNXVWgyZERCUGEzUkZPRGx3TlRVd1EweHNVVkF5UkFvMWNtWk1iekZVUlRsSmRESk9RazVtVjJ4RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS09GSTNSbHBzZUdSWlNYSTJUbTlVVTNKcFJGY3hRa2MzUkRSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGREswOU5OR1ZaTVdaSmVtNVdSbmMxVTFKSFlYRnNWM0prUWtob1RXNTNXbE5xTkROQ01saHdNRWc0ZFVSWmFXcEhZd3BUY21sTGRYVm9PR1pIU1hReE9XbEVURUpJTVdRNE9HUXhNelExUzNGcFlXOVZSbGhQUjNKVVNqbE5TMk5yV0dZeU5tcGtSekpCVGxVd2F6ZFdSQzlYQ2xGaGFVUjFNMVpKTmtwTVJYaFplSGRRTkUxMFkyYzJZa2xyV1Vkc1RUWmtLMjV4Ym5oRmJYcFVhVzhyV1ZKblJFcExUSGhWYzI1MFJtSjFZVkJFVUhNS1JUSk1ZWEp4VlVSMWRXUkxTMko0ZGtSQ00zWXdTemMzTDJoMFFuZHFSWGQ2WlhsSGIxY3lVVEI1Wm5WelNWcHVNRk5ITUdjMWNUSmhVMkppT1hobU5ncERhbVl6TkVWb2NVaDBkSEZ1UTFoa2VrVndiRzExVlhSWGRISjFTa3B3TjNZMWFuaE5TRE5TZHpOQ09GaG1jRGREYkM5Qk1WQlFZa042V0dkUlRHdFdDakpSWkdGRmFtdEtXRWhyVm1GWmJHRTNaUzluTVhRelFqTlJlRVZqU25rM2JVOW9Od290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjI2ZWU2ZTEtM2JiMy00ZjNjLTgwZmMtZWI4MjRiZThkODQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKaXNjdlcxYm9FNTNTN0lNT2x5S2h4aDNnQ1hqd0dJa0N3VUVjeXVmcFFFaENlQ3pQMXRlWXFWaw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlRTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURTlyQ2tGQ05VMXlOWG81YW1aWFZFWkZOM2hDYkRkRGExUjBhV1JKU1ZkUE5HbGFVV3haTWtVeGVWRkxZeXRJZEd4Sk5qQlhXbEkwWWtGWkx6SlhielZ2ZFdzS2NHRk5hVWxtYzFSWGFEQTNTM2c1U2tWQmRrRnhZM0ZqZVU1T1EyWlBMM0ozZDFkWVJESjNaMFJ3TlRkM2JVMVBRMFJGWm5jMmVYQXpVR0puY0RaVmRRcG1NRUpIT1ZabVYwUnlkMEV4U1ZsYVIxcHdWVkZwUTJwdFEyOTVla00zSzBSWWJqRlpTbUZyZVhCbmF6ZDZabVJYV2xGdFl6bFBjVkZpSzFNMFNWVnNDbU5QUWs4MlFUQXljMHRZVGxKdWVHcGxVRGN3Y25SbldFZE1TV3BFZVM5d1dVSXlVamR2VEZWQk5rNUlkWE5UUW1sVFpFWmlXRmxaSzAxRFExZDFOM1lLVjJOSWJreFJSMlppY2t0UVRsSkdjbHBOTlhVd2RWQmpibEJPUTJWNVZEa3dWV2M1TVZKQ1R6RTRXVUoxWkU4MGMzVlpjVVp5TkZwRFJpOVhUV2xhZFFwV1YxVXpNSFZpU0VOUU5XNUhSbUkzVFhKalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1NsZG5Ra1pPYXpjeGNrTlViVmRSU0M5bU1HRlBUbGxNWTFwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1IxaEtSMnR3T0ZaRVFuaFNUekZRVFRZME9GRkdaMHBUUm10S2FrSnlWazFHT0M5SWQzZHZjRzF2VVVaek5scHNlQXB3VERkNVNrUm1jRUV5Vm10VUt6WXZTWGRrV25OTWVWSjVhMGx5VUZGclIxcHBOVzVIZERscVIzQnZlVEo1V1U5eVYwSmxUVmczVm5KTlFuTnJkSFpQQ25ZMmRXMXRXSFJZYkhCQ2JtSndlRGc1WW0xRlJWQjNNeTl4VlUxNVp6aHlZMWxOZVRnMlFrRXZZVnBrTmpoaVEyMVVXRGMxU0VoMVVteFdOR1pRWTJnS04waEhaVUp0YldoSVF6QkpjakV5TkhWVVFVc3ZWMVV5ZFhoTWVVeHVkVGxoVTJoa1R6VnBaalZ3TlhFdlpsSkdRVmR1YURCc1RYTlVkRU56YVVZeFVncEJTa05PU0dka1ZqQndRVGt6TjFObGJEUjRXWE5ZZFRWUWVFbHZiVkF3Y1UxSVZqYzBielZSTVVoeGJFRjJha04yT1ZWclZqUmxLMGxJZVdsT01IQkRDa2s0VmpKU2EzUTJNV1k0T1hsbk1uZFliRWh2WW1vNFdtRkVkVUZDUVZOQ1JWVkVkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDZiZTdiODAtY2JhMy00MzRhLTg4MWYtNzA2MWFiYjdiZGQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZNFFDVVRENmpNa2t6alNJcVBDWDc4ZXd2UXRPNGp6a0g5RGRaVnBYRms4b1E2V1hqd2ZvSGluRA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2590"
@@ -296,7 +296,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -306,7 +306,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bdc62423-b1a7-46eb-9ce5-215158e4ceac
+ - 7b6632fb-f825-4c0a-88ce-94f7c92972a5
status: 200 OK
code: 200
duration: ""
@@ -317,10 +317,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:53.292741Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:19.129147Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -329,7 +329,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -339,7 +339,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 10abdc3c-cacc-433b-a858-6eb12e90c3ba
+ - 70593482-f95d-4597-b452-c63a8665768f
status: 200 OK
code: 200
duration: ""
@@ -350,10 +350,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ffba1c99-4cf3-4a48-9cf2-82769bb9a988
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b01756e5-7572-4bf9-8f33-713219cbdcc2
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:43.091315Z","dhcp_enabled":true,"id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:43.091315Z","id":"6d4afa64-9bed-4210-a3b5-dcdae6503771","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:51:43.091315Z"},{"created_at":"2023-11-13T13:51:43.091315Z","id":"c95f05e0-b838-4fe3-820a-d79ce0fe9c25","subnet":"fd63:256c:45f7:c40b::/64","updated_at":"2023-11-13T13:51:43.091315Z"}],"tags":[],"updated_at":"2023-11-13T13:51:43.091315Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:16.238622Z","dhcp_enabled":true,"id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:16.238622Z","id":"9f7d6185-53ff-491a-b3b6-dac31e794757","subnet":"172.16.28.0/22","updated_at":"2023-12-08T16:04:16.238622Z"},{"created_at":"2023-12-08T16:04:16.238622Z","id":"770af4f8-aa92-433d-9e67-453b745f95c5","subnet":"fd63:256c:45f7:c3f8::/64","updated_at":"2023-12-08T16:04:16.238622Z"}],"tags":[],"updated_at":"2023-12-08T16:04:16.238622Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "713"
@@ -362,7 +362,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -372,7 +372,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e9c36252-3922-433d-9a07-57c24d6ed7d9
+ - e154eaa5-6677-4f25-9ac3-6dccc5b227f6
status: 200 OK
code: 200
duration: ""
@@ -383,10 +383,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:53.292741Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:19.129147Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -395,7 +395,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -405,7 +405,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32a7c144-b9e7-4021-a717-12ff19aaa652
+ - 9d385d57-17a2-4763-b5df-6ab5b4da1c03
status: 200 OK
code: 200
duration: ""
@@ -416,10 +416,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZNVTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVV4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUaXROQ201c1pXbHBNazR5ZUVSTlFWSmhaM2R2VjB4RWJGZHJiVkZQUXpkR2FHMDNkRWxwVTB3MFpWbEpUME5WVjFjMVdISnlkVzB4YVdaRVpXdGlLMFpxVW1ZS2JVRTRkSEpDVlN0NVRHZHZWbmxYTDFoM1lpOTVWMFp1ZG1RMlVFbGtPRTkxTkdoU2JtVkVXRGRpTTB0aGVFMVBWbGhTWWt0aWJVRnVWRU5PWlVSRldBcHVibGd4UTJ4R2FUWjBSV053ZGxCdWVXSmFVM0pzUVdvNE4yNXdSM1Y0U0VwUGJXODNMMVZFTlZOQ00wSnRNakJpV0RsSGVtTjFkM2xCWlRWTVluWm9DbWhpVGxCdFEzSlhNVGM1TXpKc1pYRnRTVzU1VEV0UlYyWklabXhtYzBkeGFWVnNPVzFEV2xWT1RsZDVTV3AyWTFreVpFTkJOVTk0YVc5WU5XY3diQ3NLWVU5VlkxUXlZMk5uU2pKUGRURTJUV0ZtVjIxR1dVRTNaVGhCYVhOaGVVcDVWemRzUlRKT2FXTjNXVWgyZERCUGEzUkZPRGx3TlRVd1EweHNVVkF5UkFvMWNtWk1iekZVUlRsSmRESk9RazVtVjJ4RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS09GSTNSbHBzZUdSWlNYSTJUbTlVVTNKcFJGY3hRa2MzUkRSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGREswOU5OR1ZaTVdaSmVtNVdSbmMxVTFKSFlYRnNWM0prUWtob1RXNTNXbE5xTkROQ01saHdNRWc0ZFVSWmFXcEhZd3BUY21sTGRYVm9PR1pIU1hReE9XbEVURUpJTVdRNE9HUXhNelExUzNGcFlXOVZSbGhQUjNKVVNqbE5TMk5yV0dZeU5tcGtSekpCVGxVd2F6ZFdSQzlYQ2xGaGFVUjFNMVpKTmtwTVJYaFplSGRRTkUxMFkyYzJZa2xyV1Vkc1RUWmtLMjV4Ym5oRmJYcFVhVzhyV1ZKblJFcExUSGhWYzI1MFJtSjFZVkJFVUhNS1JUSk1ZWEp4VlVSMWRXUkxTMko0ZGtSQ00zWXdTemMzTDJoMFFuZHFSWGQ2WlhsSGIxY3lVVEI1Wm5WelNWcHVNRk5ITUdjMWNUSmhVMkppT1hobU5ncERhbVl6TkVWb2NVaDBkSEZ1UTFoa2VrVndiRzExVlhSWGRISjFTa3B3TjNZMWFuaE5TRE5TZHpOQ09GaG1jRGREYkM5Qk1WQlFZa042V0dkUlRHdFdDakpSWkdGRmFtdEtXRWhyVm1GWmJHRTNaUzluTVhRelFqTlJlRVZqU25rM2JVOW9Od290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjI2ZWU2ZTEtM2JiMy00ZjNjLTgwZmMtZWI4MjRiZThkODQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKaXNjdlcxYm9FNTNTN0lNT2x5S2h4aDNnQ1hqd0dJa0N3VUVjeXVmcFFFaENlQ3pQMXRlWXFWaw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlRTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURTlyQ2tGQ05VMXlOWG81YW1aWFZFWkZOM2hDYkRkRGExUjBhV1JKU1ZkUE5HbGFVV3haTWtVeGVWRkxZeXRJZEd4Sk5qQlhXbEkwWWtGWkx6SlhielZ2ZFdzS2NHRk5hVWxtYzFSWGFEQTNTM2c1U2tWQmRrRnhZM0ZqZVU1T1EyWlBMM0ozZDFkWVJESjNaMFJ3TlRkM2JVMVBRMFJGWm5jMmVYQXpVR0puY0RaVmRRcG1NRUpIT1ZabVYwUnlkMEV4U1ZsYVIxcHdWVkZwUTJwdFEyOTVla00zSzBSWWJqRlpTbUZyZVhCbmF6ZDZabVJYV2xGdFl6bFBjVkZpSzFNMFNWVnNDbU5QUWs4MlFUQXljMHRZVGxKdWVHcGxVRGN3Y25SbldFZE1TV3BFZVM5d1dVSXlVamR2VEZWQk5rNUlkWE5UUW1sVFpFWmlXRmxaSzAxRFExZDFOM1lLVjJOSWJreFJSMlppY2t0UVRsSkdjbHBOTlhVd2RWQmpibEJPUTJWNVZEa3dWV2M1TVZKQ1R6RTRXVUoxWkU4MGMzVlpjVVp5TkZwRFJpOVhUV2xhZFFwV1YxVXpNSFZpU0VOUU5XNUhSbUkzVFhKalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1NsZG5Ra1pPYXpjeGNrTlViVmRSU0M5bU1HRlBUbGxNWTFwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1IxaEtSMnR3T0ZaRVFuaFNUekZRVFRZME9GRkdaMHBUUm10S2FrSnlWazFHT0M5SWQzZHZjRzF2VVVaek5scHNlQXB3VERkNVNrUm1jRUV5Vm10VUt6WXZTWGRrV25OTWVWSjVhMGx5VUZGclIxcHBOVzVIZERscVIzQnZlVEo1V1U5eVYwSmxUVmczVm5KTlFuTnJkSFpQQ25ZMmRXMXRXSFJZYkhCQ2JtSndlRGc1WW0xRlJWQjNNeTl4VlUxNVp6aHlZMWxOZVRnMlFrRXZZVnBrTmpoaVEyMVVXRGMxU0VoMVVteFdOR1pRWTJnS04waEhaVUp0YldoSVF6QkpjakV5TkhWVVFVc3ZWMVV5ZFhoTWVVeHVkVGxoVTJoa1R6VnBaalZ3TlhFdlpsSkdRVmR1YURCc1RYTlVkRU56YVVZeFVncEJTa05PU0dka1ZqQndRVGt6TjFObGJEUjRXWE5ZZFRWUWVFbHZiVkF3Y1UxSVZqYzBielZSTVVoeGJFRjJha04yT1ZWclZqUmxLMGxJZVdsT01IQkRDa2s0VmpKU2EzUTJNV1k0T1hsbk1uZFliRWh2WW1vNFdtRkVkVUZDUVZOQ1JWVkVkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDZiZTdiODAtY2JhMy00MzRhLTg4MWYtNzA2MWFiYjdiZGQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZNFFDVVRENmpNa2t6alNJcVBDWDc4ZXd2UXRPNGp6a0g5RGRaVnBYRms4b1E2V1hqd2ZvSGluRA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2590"
@@ -428,7 +428,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -438,7 +438,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4b48f02-e86f-4748-bc21-44d2cb7cb372
+ - 92ff9c1c-86be-45a5-86a7-11dc5f5bfd4d
status: 200 OK
code: 200
duration: ""
@@ -449,10 +449,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ffba1c99-4cf3-4a48-9cf2-82769bb9a988
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b01756e5-7572-4bf9-8f33-713219cbdcc2
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:43.091315Z","dhcp_enabled":true,"id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:43.091315Z","id":"6d4afa64-9bed-4210-a3b5-dcdae6503771","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:51:43.091315Z"},{"created_at":"2023-11-13T13:51:43.091315Z","id":"c95f05e0-b838-4fe3-820a-d79ce0fe9c25","subnet":"fd63:256c:45f7:c40b::/64","updated_at":"2023-11-13T13:51:43.091315Z"}],"tags":[],"updated_at":"2023-11-13T13:51:43.091315Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:16.238622Z","dhcp_enabled":true,"id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:16.238622Z","id":"9f7d6185-53ff-491a-b3b6-dac31e794757","subnet":"172.16.28.0/22","updated_at":"2023-12-08T16:04:16.238622Z"},{"created_at":"2023-12-08T16:04:16.238622Z","id":"770af4f8-aa92-433d-9e67-453b745f95c5","subnet":"fd63:256c:45f7:c3f8::/64","updated_at":"2023-12-08T16:04:16.238622Z"}],"tags":[],"updated_at":"2023-12-08T16:04:16.238622Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "713"
@@ -461,7 +461,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -471,7 +471,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 303e86aa-b2ec-46c1-8d3c-5c1de5d319a3
+ - 201bcab6-1027-4e02-8d74-b00229346f80
status: 200 OK
code: 200
duration: ""
@@ -482,10 +482,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:53.292741Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:19.129147Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -494,7 +494,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -504,7 +504,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 78b43964-a7d4-45f6-9bdc-01ecaccd773b
+ - 77f77768-b1f4-4714-bd60-d524c674d6a4
status: 200 OK
code: 200
duration: ""
@@ -515,10 +515,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZNVTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVV4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUaXROQ201c1pXbHBNazR5ZUVSTlFWSmhaM2R2VjB4RWJGZHJiVkZQUXpkR2FHMDNkRWxwVTB3MFpWbEpUME5WVjFjMVdISnlkVzB4YVdaRVpXdGlLMFpxVW1ZS2JVRTRkSEpDVlN0NVRHZHZWbmxYTDFoM1lpOTVWMFp1ZG1RMlVFbGtPRTkxTkdoU2JtVkVXRGRpTTB0aGVFMVBWbGhTWWt0aWJVRnVWRU5PWlVSRldBcHVibGd4UTJ4R2FUWjBSV053ZGxCdWVXSmFVM0pzUVdvNE4yNXdSM1Y0U0VwUGJXODNMMVZFTlZOQ00wSnRNakJpV0RsSGVtTjFkM2xCWlRWTVluWm9DbWhpVGxCdFEzSlhNVGM1TXpKc1pYRnRTVzU1VEV0UlYyWklabXhtYzBkeGFWVnNPVzFEV2xWT1RsZDVTV3AyWTFreVpFTkJOVTk0YVc5WU5XY3diQ3NLWVU5VlkxUXlZMk5uU2pKUGRURTJUV0ZtVjIxR1dVRTNaVGhCYVhOaGVVcDVWemRzUlRKT2FXTjNXVWgyZERCUGEzUkZPRGx3TlRVd1EweHNVVkF5UkFvMWNtWk1iekZVUlRsSmRESk9RazVtVjJ4RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS09GSTNSbHBzZUdSWlNYSTJUbTlVVTNKcFJGY3hRa2MzUkRSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGREswOU5OR1ZaTVdaSmVtNVdSbmMxVTFKSFlYRnNWM0prUWtob1RXNTNXbE5xTkROQ01saHdNRWc0ZFVSWmFXcEhZd3BUY21sTGRYVm9PR1pIU1hReE9XbEVURUpJTVdRNE9HUXhNelExUzNGcFlXOVZSbGhQUjNKVVNqbE5TMk5yV0dZeU5tcGtSekpCVGxVd2F6ZFdSQzlYQ2xGaGFVUjFNMVpKTmtwTVJYaFplSGRRTkUxMFkyYzJZa2xyV1Vkc1RUWmtLMjV4Ym5oRmJYcFVhVzhyV1ZKblJFcExUSGhWYzI1MFJtSjFZVkJFVUhNS1JUSk1ZWEp4VlVSMWRXUkxTMko0ZGtSQ00zWXdTemMzTDJoMFFuZHFSWGQ2WlhsSGIxY3lVVEI1Wm5WelNWcHVNRk5ITUdjMWNUSmhVMkppT1hobU5ncERhbVl6TkVWb2NVaDBkSEZ1UTFoa2VrVndiRzExVlhSWGRISjFTa3B3TjNZMWFuaE5TRE5TZHpOQ09GaG1jRGREYkM5Qk1WQlFZa042V0dkUlRHdFdDakpSWkdGRmFtdEtXRWhyVm1GWmJHRTNaUzluTVhRelFqTlJlRVZqU25rM2JVOW9Od290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjI2ZWU2ZTEtM2JiMy00ZjNjLTgwZmMtZWI4MjRiZThkODQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKaXNjdlcxYm9FNTNTN0lNT2x5S2h4aDNnQ1hqd0dJa0N3VUVjeXVmcFFFaENlQ3pQMXRlWXFWaw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlRTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURTlyQ2tGQ05VMXlOWG81YW1aWFZFWkZOM2hDYkRkRGExUjBhV1JKU1ZkUE5HbGFVV3haTWtVeGVWRkxZeXRJZEd4Sk5qQlhXbEkwWWtGWkx6SlhielZ2ZFdzS2NHRk5hVWxtYzFSWGFEQTNTM2c1U2tWQmRrRnhZM0ZqZVU1T1EyWlBMM0ozZDFkWVJESjNaMFJ3TlRkM2JVMVBRMFJGWm5jMmVYQXpVR0puY0RaVmRRcG1NRUpIT1ZabVYwUnlkMEV4U1ZsYVIxcHdWVkZwUTJwdFEyOTVla00zSzBSWWJqRlpTbUZyZVhCbmF6ZDZabVJYV2xGdFl6bFBjVkZpSzFNMFNWVnNDbU5QUWs4MlFUQXljMHRZVGxKdWVHcGxVRGN3Y25SbldFZE1TV3BFZVM5d1dVSXlVamR2VEZWQk5rNUlkWE5UUW1sVFpFWmlXRmxaSzAxRFExZDFOM1lLVjJOSWJreFJSMlppY2t0UVRsSkdjbHBOTlhVd2RWQmpibEJPUTJWNVZEa3dWV2M1TVZKQ1R6RTRXVUoxWkU4MGMzVlpjVVp5TkZwRFJpOVhUV2xhZFFwV1YxVXpNSFZpU0VOUU5XNUhSbUkzVFhKalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1NsZG5Ra1pPYXpjeGNrTlViVmRSU0M5bU1HRlBUbGxNWTFwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1IxaEtSMnR3T0ZaRVFuaFNUekZRVFRZME9GRkdaMHBUUm10S2FrSnlWazFHT0M5SWQzZHZjRzF2VVVaek5scHNlQXB3VERkNVNrUm1jRUV5Vm10VUt6WXZTWGRrV25OTWVWSjVhMGx5VUZGclIxcHBOVzVIZERscVIzQnZlVEo1V1U5eVYwSmxUVmczVm5KTlFuTnJkSFpQQ25ZMmRXMXRXSFJZYkhCQ2JtSndlRGc1WW0xRlJWQjNNeTl4VlUxNVp6aHlZMWxOZVRnMlFrRXZZVnBrTmpoaVEyMVVXRGMxU0VoMVVteFdOR1pRWTJnS04waEhaVUp0YldoSVF6QkpjakV5TkhWVVFVc3ZWMVV5ZFhoTWVVeHVkVGxoVTJoa1R6VnBaalZ3TlhFdlpsSkdRVmR1YURCc1RYTlVkRU56YVVZeFVncEJTa05PU0dka1ZqQndRVGt6TjFObGJEUjRXWE5ZZFRWUWVFbHZiVkF3Y1UxSVZqYzBielZSTVVoeGJFRjJha04yT1ZWclZqUmxLMGxJZVdsT01IQkRDa2s0VmpKU2EzUTJNV1k0T1hsbk1uZFliRWh2WW1vNFdtRkVkVUZDUVZOQ1JWVkVkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDZiZTdiODAtY2JhMy00MzRhLTg4MWYtNzA2MWFiYjdiZGQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZNFFDVVRENmpNa2t6alNJcVBDWDc4ZXd2UXRPNGp6a0g5RGRaVnBYRms4b1E2V1hqd2ZvSGluRA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2590"
@@ -527,7 +527,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -537,7 +537,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 921f98ba-68ed-49ab-a8b4-456a1c40b080
+ - 50662a55-7ce4-461c-a144-0a04b85d9a7a
status: 200 OK
code: 200
duration: ""
@@ -548,10 +548,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:53.292741Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:19.129147Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -560,7 +560,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:57 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -570,7 +570,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5173682b-5e8c-46fb-bec8-0dbaf443aed0
+ - b12315b0-11f1-4202-84b6-ab3f0ffedc4c
status: 200 OK
code: 200
duration: ""
@@ -583,10 +583,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:57.491993017Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:24.593294684Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1497"
@@ -595,7 +595,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:57 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -605,7 +605,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1234a6fb-80f9-401e-ab52-76a5b1d0bec5
+ - e72a6a9e-ff4f-4011-8a87-941925badf0e
status: 200 OK
code: 200
duration: ""
@@ -616,10 +616,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:57.491993Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:24.593295Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1494"
@@ -628,7 +628,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:57 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -638,7 +638,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56401ef5-8e2f-4fba-824d-043f9290d1f7
+ - 7cf6940a-1313-4d1a-b71e-eda3a8f3e248
status: 200 OK
code: 200
duration: ""
@@ -649,43 +649,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:57.491993Z","upgrade_available":true,"version":"1.27.6"}'
- headers:
- Content-Length:
- - "1494"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:52:02 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0c12131d-f23a-48bf-b8fb-4d69397d49c9
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:04.011298Z","upgrade_available":true,"version":"1.27.6"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:25.730394Z","upgrade_available":true,"version":"1.27.6"}'
headers:
Content-Length:
- "1499"
@@ -694,7 +661,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:07 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -704,7 +671,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b85bfb5-7e6e-47e2-87fe-59b71f856476
+ - 28494023-72de-4b79-ae14-4b81bf58eb13
status: 200 OK
code: 200
duration: ""
@@ -717,10 +684,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841/upgrade
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1/upgrade
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:07.917700772Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:29.830322194Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1498"
@@ -729,7 +696,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:07 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -739,7 +706,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d6fcb19-033e-4761-884f-3fb7ae96bf19
+ - 879d7d75-b845-4619-a8e7-9968c30becdb
status: 200 OK
code: 200
duration: ""
@@ -750,10 +717,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:07.917701Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:29.830322Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1495"
@@ -762,7 +729,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:07 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -772,7 +739,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5f96fd04-e81d-4d7d-b2c9-48409cd39af0
+ - 7131fbb3-c616-4ed7-8426-8a9e77523a30
status: 200 OK
code: 200
duration: ""
@@ -783,10 +750,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:09.055827Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:31.032962Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -795,7 +762,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -805,7 +772,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a67b3e87-5f94-41bc-9fc0-e0fffbbc1a7f
+ - 8fbdb98c-7d11-4bd8-afd4-3c3728204f38
status: 200 OK
code: 200
duration: ""
@@ -816,10 +783,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:09.055827Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:31.032962Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -828,7 +795,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -838,7 +805,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - de7a73ee-97af-4da2-8864-c7edfb7794c4
+ - adf000fd-c7c7-463a-bb8d-b259a019c0dc
status: 200 OK
code: 200
duration: ""
@@ -849,10 +816,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZNVTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVV4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUaXROQ201c1pXbHBNazR5ZUVSTlFWSmhaM2R2VjB4RWJGZHJiVkZQUXpkR2FHMDNkRWxwVTB3MFpWbEpUME5WVjFjMVdISnlkVzB4YVdaRVpXdGlLMFpxVW1ZS2JVRTRkSEpDVlN0NVRHZHZWbmxYTDFoM1lpOTVWMFp1ZG1RMlVFbGtPRTkxTkdoU2JtVkVXRGRpTTB0aGVFMVBWbGhTWWt0aWJVRnVWRU5PWlVSRldBcHVibGd4UTJ4R2FUWjBSV053ZGxCdWVXSmFVM0pzUVdvNE4yNXdSM1Y0U0VwUGJXODNMMVZFTlZOQ00wSnRNakJpV0RsSGVtTjFkM2xCWlRWTVluWm9DbWhpVGxCdFEzSlhNVGM1TXpKc1pYRnRTVzU1VEV0UlYyWklabXhtYzBkeGFWVnNPVzFEV2xWT1RsZDVTV3AyWTFreVpFTkJOVTk0YVc5WU5XY3diQ3NLWVU5VlkxUXlZMk5uU2pKUGRURTJUV0ZtVjIxR1dVRTNaVGhCYVhOaGVVcDVWemRzUlRKT2FXTjNXVWgyZERCUGEzUkZPRGx3TlRVd1EweHNVVkF5UkFvMWNtWk1iekZVUlRsSmRESk9RazVtVjJ4RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS09GSTNSbHBzZUdSWlNYSTJUbTlVVTNKcFJGY3hRa2MzUkRSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGREswOU5OR1ZaTVdaSmVtNVdSbmMxVTFKSFlYRnNWM0prUWtob1RXNTNXbE5xTkROQ01saHdNRWc0ZFVSWmFXcEhZd3BUY21sTGRYVm9PR1pIU1hReE9XbEVURUpJTVdRNE9HUXhNelExUzNGcFlXOVZSbGhQUjNKVVNqbE5TMk5yV0dZeU5tcGtSekpCVGxVd2F6ZFdSQzlYQ2xGaGFVUjFNMVpKTmtwTVJYaFplSGRRTkUxMFkyYzJZa2xyV1Vkc1RUWmtLMjV4Ym5oRmJYcFVhVzhyV1ZKblJFcExUSGhWYzI1MFJtSjFZVkJFVUhNS1JUSk1ZWEp4VlVSMWRXUkxTMko0ZGtSQ00zWXdTemMzTDJoMFFuZHFSWGQ2WlhsSGIxY3lVVEI1Wm5WelNWcHVNRk5ITUdjMWNUSmhVMkppT1hobU5ncERhbVl6TkVWb2NVaDBkSEZ1UTFoa2VrVndiRzExVlhSWGRISjFTa3B3TjNZMWFuaE5TRE5TZHpOQ09GaG1jRGREYkM5Qk1WQlFZa042V0dkUlRHdFdDakpSWkdGRmFtdEtXRWhyVm1GWmJHRTNaUzluTVhRelFqTlJlRVZqU25rM2JVOW9Od290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjI2ZWU2ZTEtM2JiMy00ZjNjLTgwZmMtZWI4MjRiZThkODQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKaXNjdlcxYm9FNTNTN0lNT2x5S2h4aDNnQ1hqd0dJa0N3VUVjeXVmcFFFaENlQ3pQMXRlWXFWaw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlRTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURTlyQ2tGQ05VMXlOWG81YW1aWFZFWkZOM2hDYkRkRGExUjBhV1JKU1ZkUE5HbGFVV3haTWtVeGVWRkxZeXRJZEd4Sk5qQlhXbEkwWWtGWkx6SlhielZ2ZFdzS2NHRk5hVWxtYzFSWGFEQTNTM2c1U2tWQmRrRnhZM0ZqZVU1T1EyWlBMM0ozZDFkWVJESjNaMFJ3TlRkM2JVMVBRMFJGWm5jMmVYQXpVR0puY0RaVmRRcG1NRUpIT1ZabVYwUnlkMEV4U1ZsYVIxcHdWVkZwUTJwdFEyOTVla00zSzBSWWJqRlpTbUZyZVhCbmF6ZDZabVJYV2xGdFl6bFBjVkZpSzFNMFNWVnNDbU5QUWs4MlFUQXljMHRZVGxKdWVHcGxVRGN3Y25SbldFZE1TV3BFZVM5d1dVSXlVamR2VEZWQk5rNUlkWE5UUW1sVFpFWmlXRmxaSzAxRFExZDFOM1lLVjJOSWJreFJSMlppY2t0UVRsSkdjbHBOTlhVd2RWQmpibEJPUTJWNVZEa3dWV2M1TVZKQ1R6RTRXVUoxWkU4MGMzVlpjVVp5TkZwRFJpOVhUV2xhZFFwV1YxVXpNSFZpU0VOUU5XNUhSbUkzVFhKalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1NsZG5Ra1pPYXpjeGNrTlViVmRSU0M5bU1HRlBUbGxNWTFwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1IxaEtSMnR3T0ZaRVFuaFNUekZRVFRZME9GRkdaMHBUUm10S2FrSnlWazFHT0M5SWQzZHZjRzF2VVVaek5scHNlQXB3VERkNVNrUm1jRUV5Vm10VUt6WXZTWGRrV25OTWVWSjVhMGx5VUZGclIxcHBOVzVIZERscVIzQnZlVEo1V1U5eVYwSmxUVmczVm5KTlFuTnJkSFpQQ25ZMmRXMXRXSFJZYkhCQ2JtSndlRGc1WW0xRlJWQjNNeTl4VlUxNVp6aHlZMWxOZVRnMlFrRXZZVnBrTmpoaVEyMVVXRGMxU0VoMVVteFdOR1pRWTJnS04waEhaVUp0YldoSVF6QkpjakV5TkhWVVFVc3ZWMVV5ZFhoTWVVeHVkVGxoVTJoa1R6VnBaalZ3TlhFdlpsSkdRVmR1YURCc1RYTlVkRU56YVVZeFVncEJTa05PU0dka1ZqQndRVGt6TjFObGJEUjRXWE5ZZFRWUWVFbHZiVkF3Y1UxSVZqYzBielZSTVVoeGJFRjJha04yT1ZWclZqUmxLMGxJZVdsT01IQkRDa2s0VmpKU2EzUTJNV1k0T1hsbk1uZFliRWh2WW1vNFdtRkVkVUZDUVZOQ1JWVkVkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDZiZTdiODAtY2JhMy00MzRhLTg4MWYtNzA2MWFiYjdiZGQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZNFFDVVRENmpNa2t6alNJcVBDWDc4ZXd2UXRPNGp6a0g5RGRaVnBYRms4b1E2V1hqd2ZvSGluRA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2590"
@@ -861,7 +828,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -871,7 +838,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d82a6f16-5b33-4029-ab50-b9fd63937c76
+ - 788f87f3-675e-41cc-8053-a0bcd2897b5f
status: 200 OK
code: 200
duration: ""
@@ -882,10 +849,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:09.055827Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:31.032962Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -894,7 +861,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -904,7 +871,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c9a04882-e9b7-4de4-9754-2b2d1cf98233
+ - b85bebf2-bd84-4c36-a26b-c7c5ea4ea983
status: 200 OK
code: 200
duration: ""
@@ -915,10 +882,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ffba1c99-4cf3-4a48-9cf2-82769bb9a988
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b01756e5-7572-4bf9-8f33-713219cbdcc2
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:43.091315Z","dhcp_enabled":true,"id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:43.091315Z","id":"6d4afa64-9bed-4210-a3b5-dcdae6503771","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:51:43.091315Z"},{"created_at":"2023-11-13T13:51:43.091315Z","id":"c95f05e0-b838-4fe3-820a-d79ce0fe9c25","subnet":"fd63:256c:45f7:c40b::/64","updated_at":"2023-11-13T13:51:43.091315Z"}],"tags":[],"updated_at":"2023-11-13T13:51:43.091315Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:16.238622Z","dhcp_enabled":true,"id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:16.238622Z","id":"9f7d6185-53ff-491a-b3b6-dac31e794757","subnet":"172.16.28.0/22","updated_at":"2023-12-08T16:04:16.238622Z"},{"created_at":"2023-12-08T16:04:16.238622Z","id":"770af4f8-aa92-433d-9e67-453b745f95c5","subnet":"fd63:256c:45f7:c3f8::/64","updated_at":"2023-12-08T16:04:16.238622Z"}],"tags":[],"updated_at":"2023-12-08T16:04:16.238622Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "713"
@@ -927,7 +894,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -937,7 +904,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e5791aea-6af5-415a-9b5e-cd161c0c38b0
+ - 94e588e6-0ee5-419f-a206-dac29d06b94f
status: 200 OK
code: 200
duration: ""
@@ -948,10 +915,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:09.055827Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:31.032962Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -960,7 +927,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -970,7 +937,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cd04b857-2a5d-4e37-9289-0c2194de65b1
+ - f4794c5c-1003-483b-9e66-39b5ddb8f2da
status: 200 OK
code: 200
duration: ""
@@ -981,10 +948,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZNVTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVV4VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUaXROQ201c1pXbHBNazR5ZUVSTlFWSmhaM2R2VjB4RWJGZHJiVkZQUXpkR2FHMDNkRWxwVTB3MFpWbEpUME5WVjFjMVdISnlkVzB4YVdaRVpXdGlLMFpxVW1ZS2JVRTRkSEpDVlN0NVRHZHZWbmxYTDFoM1lpOTVWMFp1ZG1RMlVFbGtPRTkxTkdoU2JtVkVXRGRpTTB0aGVFMVBWbGhTWWt0aWJVRnVWRU5PWlVSRldBcHVibGd4UTJ4R2FUWjBSV053ZGxCdWVXSmFVM0pzUVdvNE4yNXdSM1Y0U0VwUGJXODNMMVZFTlZOQ00wSnRNakJpV0RsSGVtTjFkM2xCWlRWTVluWm9DbWhpVGxCdFEzSlhNVGM1TXpKc1pYRnRTVzU1VEV0UlYyWklabXhtYzBkeGFWVnNPVzFEV2xWT1RsZDVTV3AyWTFreVpFTkJOVTk0YVc5WU5XY3diQ3NLWVU5VlkxUXlZMk5uU2pKUGRURTJUV0ZtVjIxR1dVRTNaVGhCYVhOaGVVcDVWemRzUlRKT2FXTjNXVWgyZERCUGEzUkZPRGx3TlRVd1EweHNVVkF5UkFvMWNtWk1iekZVUlRsSmRESk9RazVtVjJ4RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS09GSTNSbHBzZUdSWlNYSTJUbTlVVTNKcFJGY3hRa2MzUkRSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGREswOU5OR1ZaTVdaSmVtNVdSbmMxVTFKSFlYRnNWM0prUWtob1RXNTNXbE5xTkROQ01saHdNRWc0ZFVSWmFXcEhZd3BUY21sTGRYVm9PR1pIU1hReE9XbEVURUpJTVdRNE9HUXhNelExUzNGcFlXOVZSbGhQUjNKVVNqbE5TMk5yV0dZeU5tcGtSekpCVGxVd2F6ZFdSQzlYQ2xGaGFVUjFNMVpKTmtwTVJYaFplSGRRTkUxMFkyYzJZa2xyV1Vkc1RUWmtLMjV4Ym5oRmJYcFVhVzhyV1ZKblJFcExUSGhWYzI1MFJtSjFZVkJFVUhNS1JUSk1ZWEp4VlVSMWRXUkxTMko0ZGtSQ00zWXdTemMzTDJoMFFuZHFSWGQ2WlhsSGIxY3lVVEI1Wm5WelNWcHVNRk5ITUdjMWNUSmhVMkppT1hobU5ncERhbVl6TkVWb2NVaDBkSEZ1UTFoa2VrVndiRzExVlhSWGRISjFTa3B3TjNZMWFuaE5TRE5TZHpOQ09GaG1jRGREYkM5Qk1WQlFZa042V0dkUlRHdFdDakpSWkdGRmFtdEtXRWhyVm1GWmJHRTNaUzluTVhRelFqTlJlRVZqU25rM2JVOW9Od290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjI2ZWU2ZTEtM2JiMy00ZjNjLTgwZmMtZWI4MjRiZThkODQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKaXNjdlcxYm9FNTNTN0lNT2x5S2h4aDNnQ1hqd0dJa0N3VUVjeXVmcFFFaENlQ3pQMXRlWXFWaw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlRTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURTlyQ2tGQ05VMXlOWG81YW1aWFZFWkZOM2hDYkRkRGExUjBhV1JKU1ZkUE5HbGFVV3haTWtVeGVWRkxZeXRJZEd4Sk5qQlhXbEkwWWtGWkx6SlhielZ2ZFdzS2NHRk5hVWxtYzFSWGFEQTNTM2c1U2tWQmRrRnhZM0ZqZVU1T1EyWlBMM0ozZDFkWVJESjNaMFJ3TlRkM2JVMVBRMFJGWm5jMmVYQXpVR0puY0RaVmRRcG1NRUpIT1ZabVYwUnlkMEV4U1ZsYVIxcHdWVkZwUTJwdFEyOTVla00zSzBSWWJqRlpTbUZyZVhCbmF6ZDZabVJYV2xGdFl6bFBjVkZpSzFNMFNWVnNDbU5QUWs4MlFUQXljMHRZVGxKdWVHcGxVRGN3Y25SbldFZE1TV3BFZVM5d1dVSXlVamR2VEZWQk5rNUlkWE5UUW1sVFpFWmlXRmxaSzAxRFExZDFOM1lLVjJOSWJreFJSMlppY2t0UVRsSkdjbHBOTlhVd2RWQmpibEJPUTJWNVZEa3dWV2M1TVZKQ1R6RTRXVUoxWkU4MGMzVlpjVVp5TkZwRFJpOVhUV2xhZFFwV1YxVXpNSFZpU0VOUU5XNUhSbUkzVFhKalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1NsZG5Ra1pPYXpjeGNrTlViVmRSU0M5bU1HRlBUbGxNWTFwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1IxaEtSMnR3T0ZaRVFuaFNUekZRVFRZME9GRkdaMHBUUm10S2FrSnlWazFHT0M5SWQzZHZjRzF2VVVaek5scHNlQXB3VERkNVNrUm1jRUV5Vm10VUt6WXZTWGRrV25OTWVWSjVhMGx5VUZGclIxcHBOVzVIZERscVIzQnZlVEo1V1U5eVYwSmxUVmczVm5KTlFuTnJkSFpQQ25ZMmRXMXRXSFJZYkhCQ2JtSndlRGc1WW0xRlJWQjNNeTl4VlUxNVp6aHlZMWxOZVRnMlFrRXZZVnBrTmpoaVEyMVVXRGMxU0VoMVVteFdOR1pRWTJnS04waEhaVUp0YldoSVF6QkpjakV5TkhWVVFVc3ZWMVV5ZFhoTWVVeHVkVGxoVTJoa1R6VnBaalZ3TlhFdlpsSkdRVmR1YURCc1RYTlVkRU56YVVZeFVncEJTa05PU0dka1ZqQndRVGt6TjFObGJEUjRXWE5ZZFRWUWVFbHZiVkF3Y1UxSVZqYzBielZSTVVoeGJFRjJha04yT1ZWclZqUmxLMGxJZVdsT01IQkRDa2s0VmpKU2EzUTJNV1k0T1hsbk1uZFliRWh2WW1vNFdtRkVkVUZDUVZOQ1JWVkVkZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDZiZTdiODAtY2JhMy00MzRhLTg4MWYtNzA2MWFiYjdiZGQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZNFFDVVRENmpNa2t6alNJcVBDWDc4ZXd2UXRPNGp6a0g5RGRaVnBYRms4b1E2V1hqd2ZvSGluRA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2590"
@@ -993,7 +960,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:17 GMT
+ - Fri, 08 Dec 2023 16:04:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1003,7 +970,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 83f75158-fff1-45fe-a395-57d305db587d
+ - 41c669d7-88fb-4a4b-a854-ed49776bf257
status: 200 OK
code: 200
duration: ""
@@ -1014,10 +981,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:18.133645593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:36.625000023Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1498"
@@ -1026,7 +993,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 16:04:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1036,7 +1003,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b8ac402-c8d8-4bc3-8d92-c21047c27299
+ - 5ae475c6-8765-4ded-9c64-997b7b3f1a90
status: 200 OK
code: 200
duration: ""
@@ -1047,19 +1014,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:18.133646Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:36.625Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1495"
+ - "1492"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 16:04:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1069,7 +1036,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f383b31-24ae-4458-934f-a3f25827d2a0
+ - 46270cfb-5275-481f-a454-dd720ab1ab01
status: 200 OK
code: 200
duration: ""
@@ -1080,19 +1047,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:50.039989Z","created_at":"2023-11-13T13:51:50.039989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b26ee6e1-3bb3-4f3c-80fc-eb824be8d841.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:52:18.133646Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6be7b80-cba3-434a-881f-7061abb7bdd1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:17.385372Z","created_at":"2023-12-08T16:04:17.385372Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6be7b80-cba3-434a-881f-7061abb7bdd1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:36.625Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1495"
+ - "1492"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:23 GMT
+ - Fri, 08 Dec 2023 16:04:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1102,7 +1069,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 532650d9-771b-4b30-b34f-b8a1a369dcd8
+ - 45f303c5-cd7e-442f-a641-1bc5915c5a7c
status: 200 OK
code: 200
duration: ""
@@ -1113,10 +1080,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -1125,7 +1092,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:28 GMT
+ - Fri, 08 Dec 2023 16:04:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1135,7 +1102,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8dd09a1c-96f9-40c1-b012-844f1d256a45
+ - 18e6bcd6-1256-4e0a-b859-7a1eeb2b70e7
status: 404 Not Found
code: 404
duration: ""
@@ -1146,10 +1113,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ffba1c99-4cf3-4a48-9cf2-82769bb9a988
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b01756e5-7572-4bf9-8f33-713219cbdcc2
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -1158,7 +1125,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:28 GMT
+ - Fri, 08 Dec 2023 16:04:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1168,7 +1135,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e0b8ee3-9efe-4d20-97b4-d9a870b96d8a
+ - 245d1e3b-f093-480a-9cc7-934f7fa6319e
status: 404 Not Found
code: 404
duration: ""
@@ -1179,10 +1146,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b26ee6e1-3bb3-4f3c-80fc-eb824be8d841
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6be7b80-cba3-434a-881f-7061abb7bdd1
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"b26ee6e1-3bb3-4f3c-80fc-eb824be8d841","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"d6be7b80-cba3-434a-881f-7061abb7bdd1","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -1191,7 +1158,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:28 GMT
+ - Fri, 08 Dec 2023 16:04:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1201,7 +1168,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 18a6ed8e-1818-4b3f-9beb-d66bc8d31896
+ - ed5e27b7-888c-437f-8a21-c5928349c0de
status: 404 Not Found
code: 404
duration: ""
@@ -1212,10 +1179,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ffba1c99-4cf3-4a48-9cf2-82769bb9a988
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b01756e5-7572-4bf9-8f33-713219cbdcc2
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"ffba1c99-4cf3-4a48-9cf2-82769bb9a988","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"b01756e5-7572-4bf9-8f33-713219cbdcc2","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -1224,7 +1191,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:28 GMT
+ - Fri, 08 Dec 2023 16:04:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1234,7 +1201,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ac1b43c6-b2c5-48df-95aa-466870c8dbc6
+ - 685b20b7-b089-4c58-81be-4a522560a967
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml b/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml
index 216df5cb4f..753d2df8f0 100644
--- a/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,12 +34,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5441cef2-9c99-4aef-bb82-ffd77b7402a2
+ - cd93c4d5-56de-48b7-bde1-2cb3882ee72f
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-multicloud","description":"","tags":null,"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-multicloud","description":"","tags":null,"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
form: {}
headers:
Content-Type:
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735276Z","created_at":"2023-11-13T13:56:57.749735276Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762284850Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575787531Z","created_at":"2023-12-08T16:04:29.575787531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266423Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1423"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:57 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e13cca62-aa70-44d6-a714-b1df7855117c
+ - 7e118b8b-c5f1-4702-857f-0ac77979ffd6
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:57 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,7 +102,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6195575-4e53-4446-ae8b-5dee2b0e87ad
+ - e20102de-0e68-4dcc-8308-5e9f348f3e97
status: 200 OK
code: 200
duration: ""
@@ -113,10 +113,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -125,7 +125,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:02 GMT
+ - Fri, 08 Dec 2023 16:04:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -135,7 +135,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67dd4f74-8b40-43db-ab0e-5e6347d00f84
+ - 50daa26e-21f1-41f7-9c0a-0f32ccdd3328
status: 200 OK
code: 200
duration: ""
@@ -146,10 +146,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -158,7 +158,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:07 GMT
+ - Fri, 08 Dec 2023 16:04:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -168,7 +168,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 41000383-aa78-4101-91ae-099eb63334b7
+ - fe7caa49-f87c-47ca-a443-c6d8fd5833c5
status: 200 OK
code: 200
duration: ""
@@ -179,10 +179,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -191,7 +191,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:13 GMT
+ - Fri, 08 Dec 2023 16:04:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -201,7 +201,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e256630-13ef-424f-a004-1e907119b927
+ - adaedbd3-eef4-4547-92b9-89c7f107e98a
status: 200 OK
code: 200
duration: ""
@@ -212,10 +212,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -224,7 +224,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:18 GMT
+ - Fri, 08 Dec 2023 16:04:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -234,7 +234,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1db4cab8-4246-4c07-8534-4e20e1402a08
+ - a71c543f-cc74-4221-8186-8389e13ccc8e
status: 200 OK
code: 200
duration: ""
@@ -245,10 +245,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -257,7 +257,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -267,7 +267,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fada5e8e-ab67-4861-bc2e-0b379504300b
+ - ca93a862-32ad-4a9c-9e3b-7738050293dd
status: 200 OK
code: 200
duration: ""
@@ -278,10 +278,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -290,7 +290,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:28 GMT
+ - Fri, 08 Dec 2023 16:05:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -300,7 +300,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a9de70d1-effe-4206-948f-2a1298146708
+ - 8d9967ae-7773-4e6f-b2a4-36244174f94c
status: 200 OK
code: 200
duration: ""
@@ -311,10 +311,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -323,7 +323,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:33 GMT
+ - Fri, 08 Dec 2023 16:05:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -333,7 +333,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b28e6c56-1a33-4757-b99d-28884c4a51ec
+ - ee361252-be54-4f98-a026-4386d6d5a7c9
status: 200 OK
code: 200
duration: ""
@@ -344,10 +344,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -356,7 +356,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:38 GMT
+ - Fri, 08 Dec 2023 16:05:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -366,7 +366,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 10d22137-2000-4ea6-acb3-7910e9a57446
+ - 0dcd63af-e227-4666-9b0f-c2ef78476fcd
status: 200 OK
code: 200
duration: ""
@@ -377,10 +377,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -389,7 +389,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:43 GMT
+ - Fri, 08 Dec 2023 16:05:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -399,7 +399,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f9a37d56-a0ae-4525-a41d-b5958b8e7081
+ - 368dc18a-4e59-4d0e-bf81-22a796809a09
status: 200 OK
code: 200
duration: ""
@@ -410,10 +410,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -422,7 +422,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:48 GMT
+ - Fri, 08 Dec 2023 16:05:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -432,7 +432,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dc344366-884f-4215-b21e-4084acb96f69
+ - 8fa416e2-6ce1-4d09-a8bf-6f8796212c96
status: 200 OK
code: 200
duration: ""
@@ -443,10 +443,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -455,7 +455,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:53 GMT
+ - Fri, 08 Dec 2023 16:05:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -465,7 +465,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e26d239b-2113-4243-a267-3a48cd3a68d3
+ - ac8ae865-e5ab-48b3-acb2-a11651d18f1f
status: 200 OK
code: 200
duration: ""
@@ -476,10 +476,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -488,7 +488,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:58 GMT
+ - Fri, 08 Dec 2023 16:05:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -498,7 +498,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 407e9985-182e-4e68-9f3e-459109590786
+ - 7fb35e97-acb3-4c97-b9d3-2fd659101092
status: 200 OK
code: 200
duration: ""
@@ -509,10 +509,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:56:57.762285Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -521,7 +521,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:03 GMT
+ - Fri, 08 Dec 2023 16:05:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -531,7 +531,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9bd5847b-bba1-45d0-81cd-a60213b93b4c
+ - 8a327e52-2b29-41e5-ac24-1ed1ffbf1b56
status: 200 OK
code: 200
duration: ""
@@ -542,19 +542,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:58:06.341379Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:04:29.593266Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1411"
+ - "1414"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:08 GMT
+ - Fri, 08 Dec 2023 16:05:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -564,7 +564,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d1ba858b-3df8-4c1f-902b-f36682331565
+ - 19b8c224-7efc-430d-8366-e463059ec5d4
status: 200 OK
code: 200
duration: ""
@@ -575,10 +575,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:58:06.341379Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:05:42.724390Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1411"
@@ -587,40 +587,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7644d85b-7432-4e86-a4cf-201fcf14c6bc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c/kubeconfig
- method: GET
- response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUlpNVTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRmt4VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVlJhQ2s5b1NGUXlkWFp6VTAxclNtOUhRM2RRVjJGcE1UQnNSbEZDYkhGWlRsaG5iVUl5YTNsWWVERlZWM1pNVmtGdmFVOUxkMXBOYTFaUU5tcE5WMlJ1WkRVS2JrSk9MMVZUWm01SVNtNWxaa2gwYmtaeFoxZDNaMlZPVnpaVkwwSjBjVWhSU2tkNVpsaGlUeXRqVW1SQ2RITXdUR1YyVkVSeVdUZHJNMmczZVVwWFJnbzNVVkF4TTNodVJHTnFZVWcxZDJOb09WRmpla1E0VFVSd1NrVmlPSGxhZUhKRGRrTTBVQ3QxU25SRk1GTm9kSEZLTHprM2FrRkZNbmQwYjBkWmNFSktDbXhKYTNaSFdEZDZWMWR4YzBZd2NsUkxaazloWVhWV2FrSlNibHBqVjNaRU0yZEJTVkJFTkhCQlIzTlBTMGRCWXpCaVFVTklTRGRaY0RGemNXTmtTbEVLY0RaTmNWUjBhMW9yZWt0WGVsWlNUWGR4UlZoTk4zQkVTMUozT0VsaVdtMVFjSFlyTlhVd1RFd3hjbGR0VXpsRWIycEJVM0ZWUVU5dVZHa3JVa0lyY2dveVJVOXdZbkZvWm14VGRXVmtTV1pQUlZFd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSlpGWk5XRnBtUkVOalJVbDRhblZuYm1aMWFYcHRURkJUZFhGTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2NYRnJRMDlPYUdoalVWUkVWa0p1UjNWeWRIRkRUa3RLVVZCeldIcGpha3RsVDFOTU9UTmFNbk5uZEhaMU16ZFpVZ3BSY0RSU04wcERSelEwYW1nM1ZVbERibVJ2YTJWaGFDOXZXVEpSYlVrd1VrZDZUV3BoTURWb01YSkdNRGhWWW5WVE1YSjZhQzl4VjNWMVkzVk5OekZrQ21sYWJWZGthSFF6U1dRMVltbzBXRzlJV1RNcldFNTVjR2RTWjNSRGVFMHJRMmxrWmpaclkwZFpTV1pVS3pkQmVEazVMM0pFUzBwNlJrazVhVVZoSzJzS09FbEZRbFZxVkdReVZWQldVRGx1TlZOQmNFeEhRVEJ5U2tsS1RHbDJVekJoU1hKd1JEZzRMemxJS3pCaVV6RXZWblpMUjFVdmJESTFLMUYyWW1sS1N3cHdZak53VjFaTVVWZFRkMFpRVkRWTk5EUXJkR0pKUjNaa2JFeEZVa2xPVFZSdmVXcEtiVVZxVUhSNllrWTFaRUY1TnpkelZXeEJiSGx5TlVWM2FVSllDbTluYUU5NVJIcGtZelpqUVRKRFlVUmlRM0YwVVRWTlZUUkdaMXBzTkUxd1IxSkZhd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOWQ1NzUzZTEtZTU2Zi00MThhLTkyZTMtOGEyNjRiNzFlNzNjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1SlJ2YmRtM21FTlJDRnVnamF0UVkzNVU5a2pId2Y4MFpVOGEzejNKZXBNZ2c2Q3JzNVluTDhSMw==","content_type":"application/octet-stream","name":"kubeconfig"}'
- headers:
- Content-Length:
- - "2614"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
+ - Fri, 08 Dec 2023 16:05:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -630,7 +597,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7b957bf0-4009-453e-ad5a-09dbe2fe3083
+ - 9b602806-0e2b-4027-a12f-3f213a9f02fe
status: 200 OK
code: 200
duration: ""
@@ -641,10 +608,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:58:06.341379Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:05:42.724390Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1411"
@@ -653,174 +620,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3b594f31-332d-49e0-ae6d-27f207040698
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"name":"test-multicloud","node_type":"DEV1-M","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c/pools
- method: POST
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521721997Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "629"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2ea3716e-4c8a-4ad3-aa8e-e0b520b28cbe
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "626"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:10 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c0fc6401-6446-4943-b806-28149d56422d
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "626"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e318afe5-9324-43d1-88a4-16e114a3b9f6
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "626"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:20 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 76a61d40-294e-4a93-ba80-a31e5e8a1510
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "626"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:25 GMT
+ - Fri, 08 Dec 2023 16:05:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -830,7 +630,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 61decd27-dab3-4898-8d31-457b80761cac
+ - 52fed2d9-8711-4697-9950-797a9e6a8136
status: 200 OK
code: 200
duration: ""
@@ -841,19 +641,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e/kubeconfig
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlazFXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY2VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZHQ2sxVVZXTlBPRnAwV2xwck5tZDZjRWhSWnpBeldEUmxSRWxLZVcxeFJGZEtTR3hrTjJwUVdIcG9aVzlzZGtWUmRsSXZOa2RzVjNaa1dtUjBjM294YlV3S1NVcHdSVkZsZFUxSmVuSTNlRVpvTTBwaVRXMHlPRzVKU2xoUVRIQjJjM2hoWkdWak4xZ3JTM0UzY0dGTk0yUldSazFUT1Rkdk9VaGhWbFZtTDNOUmJBcFdhazFEUlRGQ05HeE1jV1pvTTFORU1WRk5lamcwTkVGVmRESnJjVGxpYzNsTmFHNXBSVzlMVjFwUVVGaE5iVkUwWVdSNmJ6bExMMDFtU0ZVM1prcEJDakZvVXpZeFdHVnJXVXBtVUZrelNFZGhSbmx2VHpaTUwxbGpNbEJ4YzFoVlRraGplRVpZWkdoNlNuUXZZVmx4VDJkT2VWTnZiazByUVRSRlJVUk1LM0VLYmtaTUsyUlFZekpEZG1oUVdHNVJSME5QWlc5UVpEUjFSRmc0T0ZoUVYzSnRVa1ZDTm1wNGR6RnVSVkZFV1ZaT1pGQldNemRWVEU5Nk1uRTRTVGw2T0FwaWVXZFpRbE5HUVZweFFrOU9lRkpEYTA1alEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS1VXWnJNU3RNYUd3d1NrbzNRMWR6YURoMFNGcG1OVk14VG1GTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RUVmlaWGhJV2l0VFJtWmhiV1pOTnpNeWRIQTVVV1pMVEVOeWFWRk1UelkwYkdKcWFXbFdiM014UTJKNVVVUTVXZ3BQUjFBM1NGbGlkeTl6WlhoVmNqQmpabHBxZFRsak9ERm1WVEVyU2tkTmJHRmFZalJxVUU5eVdTOXJOVFUxWW5nek5XMXhPVGxhS3pKc1MySXlNVGRLQ21OUVVEZE9lalJCVjFScmVFTlhSbTFxWXk5aE9GTjViMWd5ZVhweU5qWmpWbkJrTVROeFkzRlBZV0ZrTUhCWE9XeGxLMkprWWxaaE9VWldZVWg1TldVS09VbHVkV2NyYTBwQk5uaEVOak1yVHpWemIyVllVbVo0S3pjelJqaEJlR0YyV1drdmJrUndURE4wSzBRcmQycHNiRkZFWkZRcmRuSnhUVGRsWmpSTGJ3b3phMDVMTDIxdllVVTRZMHRpWmtGUGRFOW5OMmN4ZDNoWU0yZFBjRzFvVTB0UlZHNXpjMjFJZWtOc09GWTNPWFZYVDAxS1ZHWjFNemxCU2pSRWFVbFVDbTVWZENzeVVFVTJkRFJEV1V4d1oxbzRkMUEyZERoclIxZEhSMkphZVRCSVptOXVVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjhjODEzY2MtYTY5Zi00NTlmLTg1ZTktYTMzNjk1NmIzODllLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBTQWdOeDFRWDhNa3RaVTJJNHhTeG40MDZZb3pXc200WGZqWm5hUVNlUUF3OFJLNHEzWXJ6UXBSVw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "626"
+ - "2614"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:30 GMT
+ - Fri, 08 Dec 2023 16:05:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -863,7 +663,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33283414-47e8-4dd4-873a-c78f1549239b
+ - b5d646ec-799a-4fe4-b876-b2cff37fc77c
status: 200 OK
code: 200
duration: ""
@@ -874,19 +674,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:05:42.724390Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "626"
+ - "1411"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:35 GMT
+ - Fri, 08 Dec 2023 16:05:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -896,96 +696,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f4c3ada2-3f6d-43d2-9f41-6e069fd4e9a6
+ - d170076a-65e2-4180-bd45-5d45aaa612bf
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"name":"test-multicloud","node_type":"DEV1-M","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
form: {}
headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "626"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
- Date:
- - Mon, 13 Nov 2023 13:58:40 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 711e98de-8525-47e6-aac6-4822a8716357
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "626"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c97bc235-dde8-4d77-a727-3bf1d55b3f5d
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e/pools
+ method: POST
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062346Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "629"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:50 GMT
+ - Fri, 08 Dec 2023 16:05:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -995,7 +731,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a487a3b2-37c9-4518-8c03-0ddb52ad73f4
+ - 0fec45f5-3a3c-4e61-8d9e-b3d5fe5084c4
status: 200 OK
code: 200
duration: ""
@@ -1006,10 +742,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1018,7 +754,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:55 GMT
+ - Fri, 08 Dec 2023 16:05:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1028,7 +764,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8d36fe55-9321-463d-8435-f2273bcb9a20
+ - f31cc580-19da-4ffb-9d76-2cad7a73c3c5
status: 200 OK
code: 200
duration: ""
@@ -1039,10 +775,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1051,7 +787,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:00 GMT
+ - Fri, 08 Dec 2023 16:05:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1061,7 +797,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eb82d10e-f762-44bc-9cdc-044956414769
+ - 40bac087-c9fe-4fd5-a5e1-b6c3c4be2b76
status: 200 OK
code: 200
duration: ""
@@ -1072,10 +808,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1084,7 +820,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:05 GMT
+ - Fri, 08 Dec 2023 16:05:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1094,7 +830,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a2a5a998-616b-4a47-94b6-23771902235e
+ - 86d1a3ac-1745-4931-97c6-96e5b69ae0eb
status: 200 OK
code: 200
duration: ""
@@ -1105,10 +841,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1117,7 +853,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:10 GMT
+ - Fri, 08 Dec 2023 16:06:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1127,7 +863,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8064b447-3bc1-43a1-a39f-f2a627ed8398
+ - 7970e554-e867-4ad4-be91-23aac2ac8aba
status: 200 OK
code: 200
duration: ""
@@ -1138,10 +874,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1150,7 +886,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:15 GMT
+ - Fri, 08 Dec 2023 16:06:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1160,7 +896,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4410b20e-297c-456f-94b9-32741791afa7
+ - b4cec5d3-c7f3-4780-82ee-ce2454b8a3b4
status: 200 OK
code: 200
duration: ""
@@ -1171,10 +907,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1183,7 +919,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:20 GMT
+ - Fri, 08 Dec 2023 16:06:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1193,7 +929,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2ca34062-b2f1-4071-b31f-712602fa9be0
+ - 2d0cda13-30da-4767-8bab-e3a0e1907a2c
status: 200 OK
code: 200
duration: ""
@@ -1204,10 +940,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1216,7 +952,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:25 GMT
+ - Fri, 08 Dec 2023 16:06:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1226,7 +962,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a9e3121-fd59-4023-8d8a-acb8daadad14
+ - 3c33d82e-5bb9-4b2d-9257-f553c685509e
status: 200 OK
code: 200
duration: ""
@@ -1237,10 +973,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1249,7 +985,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:30 GMT
+ - Fri, 08 Dec 2023 16:06:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1259,7 +995,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4304fa3d-4475-4800-a479-5f651ca2d12c
+ - e6f50e0f-2429-40d1-9cc6-3a8aa0d5b967
status: 200 OK
code: 200
duration: ""
@@ -1270,10 +1006,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1282,7 +1018,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:36 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1292,7 +1028,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 076f72fd-c5d4-43f6-b84a-0fe303808d9d
+ - e0a93400-ff79-4fa6-9eb4-2da6f2aa26f1
status: 200 OK
code: 200
duration: ""
@@ -1303,10 +1039,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1315,7 +1051,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:41 GMT
+ - Fri, 08 Dec 2023 16:06:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1325,7 +1061,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c22155a4-5460-423e-9508-0866444b04d5
+ - bb15d0d5-cb4c-4035-84c2-5f27a53a7f23
status: 200 OK
code: 200
duration: ""
@@ -1336,10 +1072,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1348,7 +1084,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:46 GMT
+ - Fri, 08 Dec 2023 16:06:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1358,7 +1094,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6fc1924a-eee5-47bd-95b4-9253ddccf0d9
+ - 31ef49c4-e7da-4afc-a98e-16f7dba31899
status: 200 OK
code: 200
duration: ""
@@ -1369,10 +1105,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1381,7 +1117,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:51 GMT
+ - Fri, 08 Dec 2023 16:06:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1391,7 +1127,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01367821-a170-49b6-b7b4-49e6b3731063
+ - 6bcccfec-3b42-4ecd-8b85-dc718152ba64
status: 200 OK
code: 200
duration: ""
@@ -1402,10 +1138,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1414,7 +1150,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:56 GMT
+ - Fri, 08 Dec 2023 16:06:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1424,7 +1160,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df5aa39b-edac-408e-ba26-bfd8b95c2132
+ - 626d51a5-b792-47c6-9140-765c839a1876
status: 200 OK
code: 200
duration: ""
@@ -1435,10 +1171,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1447,7 +1183,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:02 GMT
+ - Fri, 08 Dec 2023 16:06:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1457,7 +1193,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 25a9b895-1f92-4108-9e33-69728f501098
+ - 113a244e-37a7-47dd-9ea4-0dda7c4d6da9
status: 200 OK
code: 200
duration: ""
@@ -1468,10 +1204,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1480,7 +1216,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:07 GMT
+ - Fri, 08 Dec 2023 16:06:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1490,7 +1226,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3628bde3-163f-4fc7-b46b-ce3dd8518e7d
+ - d8436b54-08a5-4a62-99a5-141a20cadaef
status: 200 OK
code: 200
duration: ""
@@ -1501,10 +1237,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1513,7 +1249,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:12 GMT
+ - Fri, 08 Dec 2023 16:07:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1523,7 +1259,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fb5a4c17-f71f-456a-acaf-2fe0cd9d7180
+ - f18d0cee-9942-4f0e-8132-a3a27290c932
status: 200 OK
code: 200
duration: ""
@@ -1534,10 +1270,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1546,7 +1282,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:17 GMT
+ - Fri, 08 Dec 2023 16:07:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1556,7 +1292,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d67d6374-d247-45e0-8c98-86ddf6d5da4d
+ - 5e71c0cd-9eab-49f6-921f-e9302dce9358
status: 200 OK
code: 200
duration: ""
@@ -1567,10 +1303,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1579,7 +1315,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:22 GMT
+ - Fri, 08 Dec 2023 16:07:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1589,7 +1325,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee2a4869-7f32-45fc-8431-76b17974abf4
+ - 36d34275-d1ca-4cee-a198-44b054d5a45f
status: 200 OK
code: 200
duration: ""
@@ -1600,10 +1336,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1612,7 +1348,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:28 GMT
+ - Fri, 08 Dec 2023 16:07:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1622,7 +1358,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 514d4833-541f-46fa-be52-040dd7a5b85a
+ - 01696b96-82e8-4a0f-bd03-588c47251391
status: 200 OK
code: 200
duration: ""
@@ -1633,10 +1369,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1645,7 +1381,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:07:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1655,7 +1391,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1fd4719a-36a7-4a8e-b055-c87334114fe9
+ - 7b526b8a-5474-4725-8045-a70ba5fee8d2
status: 200 OK
code: 200
duration: ""
@@ -1666,10 +1402,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1678,7 +1414,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:38 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1688,7 +1424,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e016c802-ebbd-45c0-a1b5-135b3a6aab7c
+ - fcaa6297-a156-4946-b624-a2ea5ef2cfa2
status: 200 OK
code: 200
duration: ""
@@ -1699,10 +1435,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1711,7 +1447,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1721,7 +1457,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e08d236-4713-4c00-ad47-ddf69ecaf301
+ - d1a17752-d6e3-448f-b09a-90f6196efefa
status: 200 OK
code: 200
duration: ""
@@ -1732,10 +1468,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1744,7 +1480,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:48 GMT
+ - Fri, 08 Dec 2023 16:07:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1754,7 +1490,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 95484bf8-25bc-4946-8ae7-0cbaee1e0dae
+ - 76a357a6-95cd-4922-88df-891aca1e8f9d
status: 200 OK
code: 200
duration: ""
@@ -1765,10 +1501,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1777,7 +1513,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:53 GMT
+ - Fri, 08 Dec 2023 16:07:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1787,7 +1523,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4cdecd52-b3b0-4520-8ce3-9c93e82be610
+ - b3721d71-3b05-49cf-94f6-22818758e3d8
status: 200 OK
code: 200
duration: ""
@@ -1798,10 +1534,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1810,7 +1546,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:58 GMT
+ - Fri, 08 Dec 2023 16:07:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1820,7 +1556,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8bf9658d-34d8-4214-af74-f3ae106580e4
+ - 6bd7074b-991a-409e-8c43-6dcdcaddebed
status: 200 OK
code: 200
duration: ""
@@ -1831,10 +1567,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1843,7 +1579,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:03 GMT
+ - Fri, 08 Dec 2023 16:07:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1853,7 +1589,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4e00efe-0cdc-411d-8798-1bf038e733db
+ - e027d13e-548c-49a1-bec0-b2264bd0fa01
status: 200 OK
code: 200
duration: ""
@@ -1864,10 +1600,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1876,7 +1612,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:08 GMT
+ - Fri, 08 Dec 2023 16:07:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1886,7 +1622,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cbe6dabe-5e2d-4380-850b-84ba5ae7eff2
+ - 64a88c56-406b-4cc6-8a0a-fcdd9c949781
status: 200 OK
code: 200
duration: ""
@@ -1897,10 +1633,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1909,7 +1645,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:14 GMT
+ - Fri, 08 Dec 2023 16:08:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1919,7 +1655,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8c8a4c05-73ad-407b-b50e-54dc11d45866
+ - 6b50edb6-41d3-41a5-8b6f-fd8ef2a9f133
status: 200 OK
code: 200
duration: ""
@@ -1930,10 +1666,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1942,7 +1678,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:19 GMT
+ - Fri, 08 Dec 2023 16:08:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1952,7 +1688,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1701d4bf-c17f-48c4-9258-6c2be4bd3acc
+ - 8a3a608e-c554-4118-8c4c-6680d76682dc
status: 200 OK
code: 200
duration: ""
@@ -1963,10 +1699,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1975,7 +1711,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:24 GMT
+ - Fri, 08 Dec 2023 16:08:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1985,7 +1721,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d8bc7657-735e-4180-ae30-f3f9a5fe30d5
+ - 90928629-0bce-4a3a-bf18-044b994fceec
status: 200 OK
code: 200
duration: ""
@@ -1996,10 +1732,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2008,7 +1744,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:29 GMT
+ - Fri, 08 Dec 2023 16:08:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2018,7 +1754,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea14352c-40e3-4411-8773-4a4b17939da2
+ - ca98554d-81ee-424c-b85d-f5062a5e3b1c
status: 200 OK
code: 200
duration: ""
@@ -2029,10 +1765,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2041,7 +1777,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:34 GMT
+ - Fri, 08 Dec 2023 16:08:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2051,7 +1787,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d03dc82e-22d5-47ef-b437-e6bb1dd3d712
+ - 7ce338dc-5438-4371-9c83-856e684a50af
status: 200 OK
code: 200
duration: ""
@@ -2062,10 +1798,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2074,7 +1810,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:39 GMT
+ - Fri, 08 Dec 2023 16:08:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2084,7 +1820,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 262d0f70-fd97-4620-9152-4bc8815260bc
+ - ada03b5f-db43-4e02-bf98-c2713c78c2af
status: 200 OK
code: 200
duration: ""
@@ -2095,10 +1831,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2107,7 +1843,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:44 GMT
+ - Fri, 08 Dec 2023 16:08:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2117,7 +1853,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9f2d4f4a-9287-4072-8317-aecd0276894e
+ - 37d883fb-4f8f-45b5-abfd-74886190b90e
status: 200 OK
code: 200
duration: ""
@@ -2128,10 +1864,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2140,7 +1876,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:49 GMT
+ - Fri, 08 Dec 2023 16:08:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2150,7 +1886,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 11778a85-ed5d-451c-9d72-119d4506ca64
+ - d41f98f2-2005-4b98-9ae6-ae87d7a1e9d7
status: 200 OK
code: 200
duration: ""
@@ -2161,10 +1897,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2173,7 +1909,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:54 GMT
+ - Fri, 08 Dec 2023 16:08:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2183,7 +1919,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a6171e1-ac90-4569-9920-e8a8f36b2377
+ - d1f9b009-efc2-4d10-918a-433c0aa74c8f
status: 200 OK
code: 200
duration: ""
@@ -2194,10 +1930,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2206,7 +1942,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:59 GMT
+ - Fri, 08 Dec 2023 16:08:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2216,7 +1952,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f257a811-8882-485f-a670-35e15e94da6f
+ - 450f1dcf-cd85-415a-b090-7015031dbc33
status: 200 OK
code: 200
duration: ""
@@ -2227,10 +1963,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2239,7 +1975,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:04 GMT
+ - Fri, 08 Dec 2023 16:08:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2249,7 +1985,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 14ffce76-f23a-433c-b7c2-f50babea1514
+ - 1805af76-741a-402b-ba0b-83a212cc0e3d
status: 200 OK
code: 200
duration: ""
@@ -2260,10 +1996,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2272,7 +2008,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:10 GMT
+ - Fri, 08 Dec 2023 16:08:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2282,7 +2018,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8cba8a61-55f6-4d7d-9dca-dd938678c9e2
+ - 80c7fbbf-3ca1-405e-abdb-59330e122b82
status: 200 OK
code: 200
duration: ""
@@ -2293,10 +2029,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2305,7 +2041,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:15 GMT
+ - Fri, 08 Dec 2023 16:09:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2315,7 +2051,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 722e9c39-2d0c-4530-b776-a4338c0df0f6
+ - f7d5eca1-7c70-4a61-843a-ef52c8414caa
status: 200 OK
code: 200
duration: ""
@@ -2326,10 +2062,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2338,7 +2074,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:20 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2348,7 +2084,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 57959404-3559-4975-b336-8d2d50b049e2
+ - 57f9972c-eb07-480b-9beb-3bea9044b879
status: 200 OK
code: 200
duration: ""
@@ -2359,10 +2095,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2371,7 +2107,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:25 GMT
+ - Fri, 08 Dec 2023 16:09:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2381,7 +2117,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d93db1e6-4398-4f9f-8e52-0f63e35ae313
+ - b86bb54a-23d5-4e02-b6f3-d44440478862
status: 200 OK
code: 200
duration: ""
@@ -2392,10 +2128,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2404,7 +2140,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:30 GMT
+ - Fri, 08 Dec 2023 16:09:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2414,7 +2150,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9bc098e1-cc55-4c7b-bb47-358a233146d2
+ - 0599b0d1-cc9c-4783-b076-fbcdeb58b6ba
status: 200 OK
code: 200
duration: ""
@@ -2425,10 +2161,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2437,7 +2173,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:35 GMT
+ - Fri, 08 Dec 2023 16:09:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2447,7 +2183,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bb2c49fb-4073-4d43-acee-eefefbd3fa2d
+ - d7d0a350-9218-4be1-8689-8b7fd0e35ac8
status: 200 OK
code: 200
duration: ""
@@ -2458,10 +2194,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2470,7 +2206,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:40 GMT
+ - Fri, 08 Dec 2023 16:09:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2480,7 +2216,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 769d64f4-fab1-4b11-ad7d-55beef053532
+ - ba1cf2c5-24e2-4845-b4cf-4f6e214fef68
status: 200 OK
code: 200
duration: ""
@@ -2491,10 +2227,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2503,7 +2239,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:45 GMT
+ - Fri, 08 Dec 2023 16:09:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2513,7 +2249,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4f59ff9-27cc-4c24-9a76-e1c89fd3594a
+ - 260f8d0a-791e-410f-9322-ef01c8daf5dc
status: 200 OK
code: 200
duration: ""
@@ -2524,10 +2260,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2536,7 +2272,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:50 GMT
+ - Fri, 08 Dec 2023 16:09:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2546,7 +2282,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0f1e72a-9e1e-4814-a83f-747cb2762f59
+ - 50bb2ec4-0472-4ac9-bf8e-93fae6d18cd8
status: 200 OK
code: 200
duration: ""
@@ -2557,10 +2293,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2569,7 +2305,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:55 GMT
+ - Fri, 08 Dec 2023 16:09:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2579,7 +2315,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65b0dd94-9db1-4baf-bc79-861d16da2a98
+ - 35fcc105-10a7-451e-932c-e9b9a94a6c94
status: 200 OK
code: 200
duration: ""
@@ -2590,10 +2326,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2602,7 +2338,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:00 GMT
+ - Fri, 08 Dec 2023 16:09:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2612,7 +2348,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2461c4a-0683-4ec9-a457-d2024d5ea2c0
+ - daa52b7a-fcc4-4d6e-948f-c920e2940fc9
status: 200 OK
code: 200
duration: ""
@@ -2623,10 +2359,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2635,7 +2371,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:05 GMT
+ - Fri, 08 Dec 2023 16:09:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2645,7 +2381,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1e2fb66-2607-4095-aaba-02630f7d6c29
+ - c54c18ac-4dd6-429f-9a0d-8b0ccd527880
status: 200 OK
code: 200
duration: ""
@@ -2656,10 +2392,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2668,7 +2404,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:10 GMT
+ - Fri, 08 Dec 2023 16:09:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2678,7 +2414,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0b09a6b0-b5e1-4726-9004-fb17e0cdf001
+ - 4f92d233-0ba1-4a45-b47b-45e44e5c39be
status: 200 OK
code: 200
duration: ""
@@ -2689,10 +2425,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2701,7 +2437,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:15 GMT
+ - Fri, 08 Dec 2023 16:10:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2711,7 +2447,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04a797dc-8722-42ad-8c6e-1d186953fbd9
+ - e46b95a6-256f-4696-b083-9b75f63c2b85
status: 200 OK
code: 200
duration: ""
@@ -2722,10 +2458,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2734,7 +2470,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:20 GMT
+ - Fri, 08 Dec 2023 16:10:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2744,7 +2480,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c04a8dc-5dbe-4bc9-8573-22d960a8d729
+ - b1245234-1cc0-4e65-a766-e0d8b6ba0baf
status: 200 OK
code: 200
duration: ""
@@ -2755,10 +2491,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2767,7 +2503,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:25 GMT
+ - Fri, 08 Dec 2023 16:10:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2777,7 +2513,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9633ab91-5c0e-4e49-ad98-f84e1dbc2b40
+ - c81a2675-f442-4f2c-a1fb-27ffad1cf8da
status: 200 OK
code: 200
duration: ""
@@ -2788,10 +2524,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:09.521722Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:05:45.933062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -2800,7 +2536,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:30 GMT
+ - Fri, 08 Dec 2023 16:10:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2810,7 +2546,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d920a02e-a94b-44a6-8819-03aaa470930c
+ - 4b7fb73b-563d-45b7-9e70-250d8e3f2cb3
status: 200 OK
code: 200
duration: ""
@@ -2821,10 +2557,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:32.482424Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:23.612740Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -2833,7 +2569,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:35 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2843,7 +2579,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bdb143c6-5119-4934-b9c0-3b52d889fbac
+ - 16697906-bf80-4b83-926f-520e541924b4
status: 200 OK
code: 200
duration: ""
@@ -2854,10 +2590,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:32.482424Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:23.612740Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -2866,7 +2602,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:35 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2876,7 +2612,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b060ab3b-db2a-49bc-85bf-72585e233258
+ - 1464093a-6d19-4106-bae6-48ef3fea73c4
status: 200 OK
code: 200
duration: ""
@@ -2887,19 +2623,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c/nodes?order_by=created_at_asc&page=1&pool_id=08a60501-a029-4538-bdc9-1e4c9d090746&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e/nodes?order_by=created_at_asc&page=1&pool_id=f2c09336-283f-4495-b52d-e2919daadbbc&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-11-13T14:00:44.407595Z","error_message":null,"id":"ccc6e7fc-334f-4c79-b647-11648974f0d9","name":"scw-test-multicloud-test-multicloud-ccc6e7fc33","pool_id":"08a60501-a029-4538-bdc9-1e4c9d090746","provider_id":"scaleway://instance/fr-par-1/5d0904e8-ce63-4f20-a298-9ab2f0e3c022","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:03:32.470625Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-12-08T16:08:20.916838Z","error_message":null,"id":"803ee47a-d69d-4271-bead-08155b586d42","name":"scw-test-multicloud-test-multicloud-803ee47ad6","pool_id":"f2c09336-283f-4495-b52d-e2919daadbbc","provider_id":"scaleway://instance/fr-par-1/11502587-a10f-4c17-af45-5104f35c1ece","public_ip_v4":"212.47.247.189","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:23.592080Z"}],"total_count":1}'
headers:
Content-Length:
- - "623"
+ - "622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:36 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2909,7 +2645,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 64318d59-5194-46a2-b981-83a6ce15a9ac
+ - 3c25321d-9b7b-4350-95fa-ad79089513a9
status: 200 OK
code: 200
duration: ""
@@ -2920,10 +2656,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:58:06.341379Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:05:42.724390Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1411"
@@ -2932,7 +2668,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:36 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2942,7 +2678,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 19c65043-3021-4e7f-860a-8b0f0dbf0055
+ - 191585cd-9f05-4f55-b00c-e50e2b17d940
status: 200 OK
code: 200
duration: ""
@@ -2953,10 +2689,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-11-13T13:58:06.341379Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:05:42.724390Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1411"
@@ -2965,7 +2701,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:36 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2975,7 +2711,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a3eaf69d-7633-4704-bc72-add1b48ddfa6
+ - ea2e9566-7733-4e94-b7ac-fc631a0b9f80
status: 200 OK
code: 200
duration: ""
@@ -2986,10 +2722,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUlpNVTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRmt4VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVlJhQ2s5b1NGUXlkWFp6VTAxclNtOUhRM2RRVjJGcE1UQnNSbEZDYkhGWlRsaG5iVUl5YTNsWWVERlZWM1pNVmtGdmFVOUxkMXBOYTFaUU5tcE5WMlJ1WkRVS2JrSk9MMVZUWm01SVNtNWxaa2gwYmtaeFoxZDNaMlZPVnpaVkwwSjBjVWhSU2tkNVpsaGlUeXRqVW1SQ2RITXdUR1YyVkVSeVdUZHJNMmczZVVwWFJnbzNVVkF4TTNodVJHTnFZVWcxZDJOb09WRmpla1E0VFVSd1NrVmlPSGxhZUhKRGRrTTBVQ3QxU25SRk1GTm9kSEZLTHprM2FrRkZNbmQwYjBkWmNFSktDbXhKYTNaSFdEZDZWMWR4YzBZd2NsUkxaazloWVhWV2FrSlNibHBqVjNaRU0yZEJTVkJFTkhCQlIzTlBTMGRCWXpCaVFVTklTRGRaY0RGemNXTmtTbEVLY0RaTmNWUjBhMW9yZWt0WGVsWlNUWGR4UlZoTk4zQkVTMUozT0VsaVdtMVFjSFlyTlhVd1RFd3hjbGR0VXpsRWIycEJVM0ZWUVU5dVZHa3JVa0lyY2dveVJVOXdZbkZvWm14VGRXVmtTV1pQUlZFd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSlpGWk5XRnBtUkVOalJVbDRhblZuYm1aMWFYcHRURkJUZFhGTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2NYRnJRMDlPYUdoalVWUkVWa0p1UjNWeWRIRkRUa3RLVVZCeldIcGpha3RsVDFOTU9UTmFNbk5uZEhaMU16ZFpVZ3BSY0RSU04wcERSelEwYW1nM1ZVbERibVJ2YTJWaGFDOXZXVEpSYlVrd1VrZDZUV3BoTURWb01YSkdNRGhWWW5WVE1YSjZhQzl4VjNWMVkzVk5OekZrQ21sYWJWZGthSFF6U1dRMVltbzBXRzlJV1RNcldFNTVjR2RTWjNSRGVFMHJRMmxrWmpaclkwZFpTV1pVS3pkQmVEazVMM0pFUzBwNlJrazVhVVZoSzJzS09FbEZRbFZxVkdReVZWQldVRGx1TlZOQmNFeEhRVEJ5U2tsS1RHbDJVekJoU1hKd1JEZzRMemxJS3pCaVV6RXZWblpMUjFVdmJESTFLMUYyWW1sS1N3cHdZak53VjFaTVVWZFRkMFpRVkRWTk5EUXJkR0pKUjNaa2JFeEZVa2xPVFZSdmVXcEtiVVZxVUhSNllrWTFaRUY1TnpkelZXeEJiSGx5TlVWM2FVSllDbTluYUU5NVJIcGtZelpqUVRKRFlVUmlRM0YwVVRWTlZUUkdaMXBzTkUxd1IxSkZhd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOWQ1NzUzZTEtZTU2Zi00MThhLTkyZTMtOGEyNjRiNzFlNzNjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1SlJ2YmRtM21FTlJDRnVnamF0UVkzNVU5a2pId2Y4MFpVOGEzejNKZXBNZ2c2Q3JzNVluTDhSMw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlazFXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY2VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbEZHQ2sxVVZXTlBPRnAwV2xwck5tZDZjRWhSWnpBeldEUmxSRWxLZVcxeFJGZEtTR3hrTjJwUVdIcG9aVzlzZGtWUmRsSXZOa2RzVjNaa1dtUjBjM294YlV3S1NVcHdSVkZsZFUxSmVuSTNlRVpvTTBwaVRXMHlPRzVKU2xoUVRIQjJjM2hoWkdWak4xZ3JTM0UzY0dGTk0yUldSazFUT1Rkdk9VaGhWbFZtTDNOUmJBcFdhazFEUlRGQ05HeE1jV1pvTTFORU1WRk5lamcwTkVGVmRESnJjVGxpYzNsTmFHNXBSVzlMVjFwUVVGaE5iVkUwWVdSNmJ6bExMMDFtU0ZVM1prcEJDakZvVXpZeFdHVnJXVXBtVUZrelNFZGhSbmx2VHpaTUwxbGpNbEJ4YzFoVlRraGplRVpZWkdoNlNuUXZZVmx4VDJkT2VWTnZiazByUVRSRlJVUk1LM0VLYmtaTUsyUlFZekpEZG1oUVdHNVJSME5QWlc5UVpEUjFSRmc0T0ZoUVYzSnRVa1ZDTm1wNGR6RnVSVkZFV1ZaT1pGQldNemRWVEU5Nk1uRTRTVGw2T0FwaWVXZFpRbE5HUVZweFFrOU9lRkpEYTA1alEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS1VXWnJNU3RNYUd3d1NrbzNRMWR6YURoMFNGcG1OVk14VG1GTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RUVmlaWGhJV2l0VFJtWmhiV1pOTnpNeWRIQTVVV1pMVEVOeWFWRk1UelkwYkdKcWFXbFdiM014UTJKNVVVUTVXZ3BQUjFBM1NGbGlkeTl6WlhoVmNqQmpabHBxZFRsak9ERm1WVEVyU2tkTmJHRmFZalJxVUU5eVdTOXJOVFUxWW5nek5XMXhPVGxhS3pKc1MySXlNVGRLQ21OUVVEZE9lalJCVjFScmVFTlhSbTFxWXk5aE9GTjViMWd5ZVhweU5qWmpWbkJrTVROeFkzRlBZV0ZrTUhCWE9XeGxLMkprWWxaaE9VWldZVWg1TldVS09VbHVkV2NyYTBwQk5uaEVOak1yVHpWemIyVllVbVo0S3pjelJqaEJlR0YyV1drdmJrUndURE4wSzBRcmQycHNiRkZFWkZRcmRuSnhUVGRsWmpSTGJ3b3phMDVMTDIxdllVVTRZMHRpWmtGUGRFOW5OMmN4ZDNoWU0yZFBjRzFvVTB0UlZHNXpjMjFJZWtOc09GWTNPWFZYVDAxS1ZHWjFNemxCU2pSRWFVbFVDbTVWZENzeVVFVTJkRFJEV1V4d1oxbzRkMUEyZERoclIxZEhSMkphZVRCSVptOXVVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjhjODEzY2MtYTY5Zi00NTlmLTg1ZTktYTMzNjk1NmIzODllLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBTQWdOeDFRWDhNa3RaVTJJNHhTeG40MDZZb3pXc200WGZqWm5hUVNlUUF3OFJLNHEzWXJ6UXBSVw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2614"
@@ -2998,7 +2734,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:39 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3008,7 +2744,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 61830b10-ad1a-403f-a967-6e67539017c3
+ - 5772d202-90e3-48a2-ac2d-ade8908d7ffd
status: 200 OK
code: 200
duration: ""
@@ -3019,10 +2755,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:32.482424Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:23.612740Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -3031,7 +2767,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:39 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3041,7 +2777,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 58156101-3d24-4dcc-ac0a-945cd3d92aad
+ - c071007d-92d9-45d4-9aef-b6cca2b5acdf
status: 200 OK
code: 200
duration: ""
@@ -3052,19 +2788,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c/nodes?order_by=created_at_asc&page=1&pool_id=08a60501-a029-4538-bdc9-1e4c9d090746&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e/nodes?order_by=created_at_asc&page=1&pool_id=f2c09336-283f-4495-b52d-e2919daadbbc&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-11-13T14:00:44.407595Z","error_message":null,"id":"ccc6e7fc-334f-4c79-b647-11648974f0d9","name":"scw-test-multicloud-test-multicloud-ccc6e7fc33","pool_id":"08a60501-a029-4538-bdc9-1e4c9d090746","provider_id":"scaleway://instance/fr-par-1/5d0904e8-ce63-4f20-a298-9ab2f0e3c022","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:03:32.470625Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-12-08T16:08:20.916838Z","error_message":null,"id":"803ee47a-d69d-4271-bead-08155b586d42","name":"scw-test-multicloud-test-multicloud-803ee47ad6","pool_id":"f2c09336-283f-4495-b52d-e2919daadbbc","provider_id":"scaleway://instance/fr-par-1/11502587-a10f-4c17-af45-5104f35c1ece","public_ip_v4":"212.47.247.189","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:23.592080Z"}],"total_count":1}'
headers:
Content-Length:
- - "623"
+ - "622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:39 GMT
+ - Fri, 08 Dec 2023 16:10:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3074,7 +2810,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 594e4379-d6ce-4100-97dc-9310443f27bc
+ - 921ccf8a-40ef-4962-ae57-714463ceb7df
status: 200 OK
code: 200
duration: ""
@@ -3085,10 +2821,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111614613Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505277934Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3097,7 +2833,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:40 GMT
+ - Fri, 08 Dec 2023 16:10:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3107,7 +2843,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a24bb812-d24d-4c11-a712-a1599c8c3233
+ - 277da98b-d82c-4b1a-8b76-b2984981b90d
status: 200 OK
code: 200
duration: ""
@@ -3118,10 +2854,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3130,7 +2866,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:40 GMT
+ - Fri, 08 Dec 2023 16:10:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3140,7 +2876,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 25178837-0934-4074-ae67-25919b0ac82a
+ - 5d774f40-754a-4c8a-b1f2-42ff537a561f
status: 200 OK
code: 200
duration: ""
@@ -3151,10 +2887,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3163,7 +2899,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:45 GMT
+ - Fri, 08 Dec 2023 16:10:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3173,7 +2909,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 81b29b84-5aad-46a6-ab1f-93f28599a8e1
+ - 489ef411-e194-4573-b816-dd78dad780ce
status: 200 OK
code: 200
duration: ""
@@ -3184,10 +2920,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3196,7 +2932,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:50 GMT
+ - Fri, 08 Dec 2023 16:10:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3206,7 +2942,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 867021fb-91cf-481f-87f3-4add2b976f87
+ - 86b00e5a-b64c-438d-8dca-adb04cf9ef31
status: 200 OK
code: 200
duration: ""
@@ -3217,10 +2953,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3229,7 +2965,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:55 GMT
+ - Fri, 08 Dec 2023 16:10:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3239,7 +2975,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e2e0065a-c393-4860-b8d7-e8be769aa6b4
+ - 3f6d9a25-1e08-4b22-9364-c38a9496b9ae
status: 200 OK
code: 200
duration: ""
@@ -3250,10 +2986,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3262,7 +2998,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:01 GMT
+ - Fri, 08 Dec 2023 16:10:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3272,7 +3008,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f14fd5a0-e9c3-4924-afa1-7d8707c02ccd
+ - b88d6295-1bc3-4e9e-b695-7766aed10c99
status: 200 OK
code: 200
duration: ""
@@ -3283,10 +3019,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3295,7 +3031,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:06 GMT
+ - Fri, 08 Dec 2023 16:10:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3305,7 +3041,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d91785f-d1cc-4c66-b1d4-dfe93000ef90
+ - 651e253e-06cd-498c-953c-c947183279f4
status: 200 OK
code: 200
duration: ""
@@ -3316,10 +3052,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","container_runtime":"containerd","created_at":"2023-11-13T13:58:09.496558Z","id":"08a60501-a029-4538-bdc9-1e4c9d090746","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:40.111615Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"b8c813cc-a69f-459f-85e9-a336956b389e","container_runtime":"containerd","created_at":"2023-12-08T16:05:45.926607Z","id":"f2c09336-283f-4495-b52d-e2919daadbbc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:10:25.505278Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -3328,7 +3064,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:11 GMT
+ - Fri, 08 Dec 2023 16:10:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3338,7 +3074,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f582ab8-175a-48ac-be54-df19dd46e22c
+ - ad3c442c-766f-4fd5-8d72-946e5a2bf069
status: 200 OK
code: 200
duration: ""
@@ -3349,10 +3085,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/08a60501-a029-4538-bdc9-1e4c9d090746
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/f2c09336-283f-4495-b52d-e2919daadbbc
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"08a60501-a029-4538-bdc9-1e4c9d090746","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"f2c09336-283f-4495-b52d-e2919daadbbc","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3361,7 +3097,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:16 GMT
+ - Fri, 08 Dec 2023 16:11:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3371,7 +3107,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b860094-6f6b-4c56-9d4d-6526059b2b72
+ - d2b0c5f7-b7d6-4347-875c-5272058e52ee
status: 404 Not Found
code: 404
duration: ""
@@ -3382,10 +3118,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378411Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496220Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1417"
@@ -3394,73 +3130,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:16 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - eba0b072-5ba6-4231-b9e1-5fe407c8259d
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1414"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:16 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 86b6915e-455e-4820-bdfa-7db056b5e4a1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1414"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:21 GMT
+ - Fri, 08 Dec 2023 16:11:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3470,7 +3140,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e7278d8-3891-4dfa-ab64-c17268fd9ce7
+ - ca1fd6cd-8aad-4ae2-a6fc-86348f2d2146
status: 200 OK
code: 200
duration: ""
@@ -3481,10 +3151,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3493,7 +3163,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:26 GMT
+ - Fri, 08 Dec 2023 16:11:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3503,7 +3173,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c24d622c-277d-4511-b62f-e43a8fb8f3ef
+ - eed15671-f0ad-4016-8114-3cf13fec56bc
status: 200 OK
code: 200
duration: ""
@@ -3514,10 +3184,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3526,7 +3196,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:31 GMT
+ - Fri, 08 Dec 2023 16:11:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3536,7 +3206,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 893e74d0-556a-41f1-a953-cb29986362d3
+ - 99e65849-9abe-40ad-9b93-59d5c62c67d4
status: 200 OK
code: 200
duration: ""
@@ -3547,10 +3217,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3559,7 +3229,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:36 GMT
+ - Fri, 08 Dec 2023 16:11:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3569,7 +3239,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2d43861f-e9c7-4dad-be04-8e0b6d49b1b2
+ - 500f9718-024d-4b62-af52-5a6008f278d7
status: 200 OK
code: 200
duration: ""
@@ -3580,10 +3250,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3592,7 +3262,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:41 GMT
+ - Fri, 08 Dec 2023 16:11:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3602,7 +3272,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55bbd345-ee41-4287-bca0-364868dc45bd
+ - b493f2f4-58b7-445d-afa6-449d9ac3001b
status: 200 OK
code: 200
duration: ""
@@ -3613,10 +3283,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3625,7 +3295,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:46 GMT
+ - Fri, 08 Dec 2023 16:11:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3635,7 +3305,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 94035355-0425-4d05-839f-671ba489cc88
+ - 6118b579-19bc-4b2b-9b5f-5928445e8162
status: 200 OK
code: 200
duration: ""
@@ -3646,10 +3316,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3658,7 +3328,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:51 GMT
+ - Fri, 08 Dec 2023 16:11:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3668,7 +3338,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 766f90f9-6b94-4ccf-b2b3-aef22fa7bce5
+ - 7312e751-934e-4591-be44-146207f653df
status: 200 OK
code: 200
duration: ""
@@ -3679,10 +3349,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3691,7 +3361,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:57 GMT
+ - Fri, 08 Dec 2023 16:11:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3701,7 +3371,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 161111d1-202b-4a74-b911-52134cddb744
+ - cc6ec8fd-510e-4701-8e2a-c1c8c4f7f28e
status: 200 OK
code: 200
duration: ""
@@ -3712,10 +3382,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3724,7 +3394,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:02 GMT
+ - Fri, 08 Dec 2023 16:11:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3734,7 +3404,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5af53954-2056-47da-bf06-48304c3e9930
+ - 027e6e6c-62bb-4b62-a11c-598be0043b3e
status: 200 OK
code: 200
duration: ""
@@ -3745,10 +3415,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9d5753e1-e56f-418a-92e3-8a264b71e73c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T13:56:57.749735Z","created_at":"2023-11-13T13:56:57.749735Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9d5753e1-e56f-418a-92e3-8a264b71e73c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-11-13T14:04:16.293378Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b8c813cc-a69f-459f-85e9-a336956b389e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:04:29.575788Z","created_at":"2023-12-08T16:04:29.575788Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b8c813cc-a69f-459f-85e9-a336956b389e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b8c813cc-a69f-459f-85e9-a336956b389e","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-12-08T16:11:00.940496Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1414"
@@ -3757,7 +3427,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:07 GMT
+ - Fri, 08 Dec 2023 16:11:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3767,7 +3437,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d8c4ee35-ffbd-41c9-acd1-651b54284cfe
+ - 02b20660-3f57-43cb-b2af-8d05d587d835
status: 200 OK
code: 200
duration: ""
@@ -3778,10 +3448,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"b8c813cc-a69f-459f-85e9-a336956b389e","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3790,7 +3460,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:12 GMT
+ - Fri, 08 Dec 2023 16:11:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3800,7 +3470,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 88378af5-c4f1-42d0-b3c4-e76b985438ae
+ - 11f8fb29-cd32-4e8c-890f-32d817fe51c6
status: 404 Not Found
code: 404
duration: ""
@@ -3811,10 +3481,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9d5753e1-e56f-418a-92e3-8a264b71e73c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b8c813cc-a69f-459f-85e9-a336956b389e
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"9d5753e1-e56f-418a-92e3-8a264b71e73c","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"b8c813cc-a69f-459f-85e9-a336956b389e","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3823,7 +3493,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:12 GMT
+ - Fri, 08 Dec 2023 16:11:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3833,7 +3503,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a1ca3da-e3f1-4977-95ce-a6296e61d131
+ - 4fc44b86-1621-4726-9050-e193ba70d2f9
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-oidc.cassette.yaml b/scaleway/testdata/k8s-cluster-oidc.cassette.yaml
index 8e0dd3b24c..b2dd67bf6b 100644
--- a/scaleway/testdata/k8s-cluster-oidc.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-oidc.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - efc477bd-500e-466b-aadf-e8c7f55115e0
+ - 2838ad1e-ab08-46ad-964e-6c273f579948
status: 200 OK
code: 200
duration: ""
@@ -50,16 +50,16 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:57:16.266750Z","dhcp_enabled":true,"id":"dadf30db-2843-472e-aef7-c79c0d109bce","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:16.266750Z","id":"ac8861bf-7715-45e7-92d9-478558855535","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:16.266750Z"},{"created_at":"2023-11-13T13:57:16.266750Z","id":"d1a8b3ef-18d2-453f-9cce-336476cfc9d7","subnet":"fd63:256c:45f7:8aa6::/64","updated_at":"2023-11-13T13:57:16.266750Z"}],"tags":[],"updated_at":"2023-11-13T13:57:16.266750Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:03.157493Z","dhcp_enabled":true,"id":"c9fe354f-9b4b-4757-a215-823698044d99","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:03.157493Z","id":"db9c78b6-097b-4088-ae19-a5788e43c388","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:04:03.157493Z"},{"created_at":"2023-12-08T16:04:03.157493Z","id":"caef4f25-bb81-4200-b477-7c74860f084d","subnet":"fd63:256c:45f7:9248::/64","updated_at":"2023-12-08T16:04:03.157493Z"}],"tags":[],"updated_at":"2023-12-08T16:04:03.157493Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "710"
+ - "709"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:16 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d18727da-b7f7-4bf0-808a-162a2568ddaa
+ - d693f150-6c96-4223-af72-1cbc1755a506
status: 200 OK
code: 200
duration: ""
@@ -80,19 +80,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dadf30db-2843-472e-aef7-c79c0d109bce
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9fe354f-9b4b-4757-a215-823698044d99
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:16.266750Z","dhcp_enabled":true,"id":"dadf30db-2843-472e-aef7-c79c0d109bce","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:16.266750Z","id":"ac8861bf-7715-45e7-92d9-478558855535","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:16.266750Z"},{"created_at":"2023-11-13T13:57:16.266750Z","id":"d1a8b3ef-18d2-453f-9cce-336476cfc9d7","subnet":"fd63:256c:45f7:8aa6::/64","updated_at":"2023-11-13T13:57:16.266750Z"}],"tags":[],"updated_at":"2023-11-13T13:57:16.266750Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:03.157493Z","dhcp_enabled":true,"id":"c9fe354f-9b4b-4757-a215-823698044d99","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:03.157493Z","id":"db9c78b6-097b-4088-ae19-a5788e43c388","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:04:03.157493Z"},{"created_at":"2023-12-08T16:04:03.157493Z","id":"caef4f25-bb81-4200-b477-7c74860f084d","subnet":"fd63:256c:45f7:9248::/64","updated_at":"2023-12-08T16:04:03.157493Z"}],"tags":[],"updated_at":"2023-12-08T16:04:03.157493Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "710"
+ - "709"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:17 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2509a98-0f85-4c16-be3f-891ae8fe2f35
+ - 29d6fe3d-0287-4c58-8972-bfa280fc3d45
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-oidc","description":"","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":null,"groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":null},"apiserver_cert_sans":null,"private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-oidc","description":"","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":null,"groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":null},"apiserver_cert_sans":null,"private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428957828Z","created_at":"2023-11-13T13:57:17.428957828Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:17.448516742Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800015Z","created_at":"2023-12-08T16:04:04.129800015Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:04.139971575Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1566"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:17 GMT
+ - Fri, 08 Dec 2023 16:04:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8fc404f3-c646-4c61-85b0-ed5cca535e20
+ - fa4865b6-a389-495e-a53c-c5e85c27c831
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:17.448517Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:04.139972Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1557"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:17 GMT
+ - Fri, 08 Dec 2023 16:04:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 800f56f7-564e-439d-b3d1-5d746ab67feb
+ - 08fbe11d-ea43-4928-9014-cc9707677eba
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:20.213606Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:06.298828Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1562"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:22 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7accb93e-b602-4926-8735-8a081a730f2e
+ - 4deb3e4e-94ae-4277-88ab-29622ced5013
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:20.213606Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:06.298828Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1562"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:22 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ec7a67c-60f9-4a1b-9097-f62e1c45f9b3
+ - b85ee11b-4af4-4579-9e66-1260b2929624
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmplRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WR040VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVkJ5Q205aGFpczNWV3RsTVVWUWFFMXJXWFZHTm13eVZ6ZHNRVFZ5ZVZoTFRXaFlNVEpaZFdsRVdIZ3hibEEzZVZkRU5uSTJkMFl4WjBOVGNYaE1Na2RNTTJnS2Qwb3phRlJ3YUV4SlZWTk9RUzl2TUZabFFVdE9UVVZWVW1ORFUxUnhaM0JEVVdRdmNuY3paVzVpTlZGdVFVWmpaMVZ1WlM5bU1XVXlVSHBFWlRSelR3cDVNR3RuWm1GYU4zZ3pOelZZU0UxaFdVbGxkbTlKU25ORlZEUnJSbFZ4Y0c1MWFXODFVbGxyTmtWc05rb3dlazEwTnpFcmFuSkhTQ3RLTHpZNWJtUlFDbGRKWVdFMWNuUmxjRXhsWldOT0wycGpXbmxaWWpNMlFtMVdhRVZFV25wR09GSlBUalphWmpKelZXWmtkVlpaTjJ0MWVVNVRjbVp0UTBoT2FUUllhVXdLTmtzMVpXeEhNWEU0ZWxwMmNGZGxVV3R0ZGpodE4wc3JaRUpTWmtKeFJsRTFha2Q2YTJ0VGNUZFBZbE5WVWtFd1V6WnZkazVTVFZacmFHbDBkSEJIWndwT1drRm5lRkIzYVdGU1EybEhUVE5RVDJvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVdtNUNNMjVZTDNkS1VUbEdNSFpvT1dKNGNISkJLMk5JYTFWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlYyUlpkR1o2TWxSWVZHNUNka2N2VFhONk1YZHNVMEZHZEZVM1UyMTVabVFyTnpaWU9XbDJjRzlGTHpoT1QxQkJXZ3BGVEU1bGFYWkNPR3RNWnpsR016SlVSbkpKZUV0cVZGSjVWUzlrUVZaT01WWjVOV1Z0YmtRME9FTkZhWEJrVlZadlRVZzBSMk1yTjBKUFJYVlVhM00yQ2sxeFZYUnRiamRoWWxkT1VUWkJXa3cyWTFkUWNGVmhhRVZPTkhWM2NXWk5OeTlHYjBsWU1XdFpjRmRzUzBoMmRrMWlNVUZuVVhkTmJHcFFObTVMY0VzS1NsbHVUazh2YjJabksyaDZOalpDTUU5U1lucFNURXBxY0dSMFFYUlhiRlpZZDI1RGR6QmtRVmxQVjFkemNVbDRMMWg1YURCS09ESTJTbGxqWW5oeWJncENiM05QVlVWUGJIWjBiWEJqZGpoT1RTODNSV1JrTW1WYVIxQXZNMEo2T0hsUFkwOW5NV1pMTVZkVEt6ZFNhM050VTJ0MFNHMVBkR2hqZVhVemRFOW1DbXB2V1djeWNYSlBWVFZVV25oUGJGbHhOVTlOTjFVM1NubEJSWHBJTjNJeVQyVjJTd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDUxMWI3ZTgtMGY0Yy00NDY3LTkxYTktYTdjNWVjY2VmMDBjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBPMmFZenJEZExES0FSQjV3SFNmYmNyNWxJU1dLUGJOT1VXQjhKUjZJbFdyV3ZDY0pwTUlWN1VUdw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJkMDVXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkYzVGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbGhYQ2tGRlNXRmhNbkJMU1UxRmIxUm5OWGd5YW5KQ0wyRlhjSG80YzBoUFJFZEplVU01YW01RVJFcFNTakZwVjJOWVVGVnZOREZIUmtaV1VtSm1Nbk0zWWtVS2RuVnJWbXBISzBSak1TczJjM1JwUlVGT05raHhkVTVxYzFGMGVGZGtLMk5IWWs5RVl6SkNObGQwYzJkck1VUjVXRFExZFU5SlZpOUhRVFJJWkhsRVN3cHNUWGRsWTA1ckwwVjFjSEZJVWs1U1NHUndXVXc1WTJsTlYyZEdhVFpuZUhsT2IzTmhhRkF4UkZGUWVuWXlXWGRUUTBGWE4xWkJTbGxaUkc5b1ZXOHdDbEZEZDFoeFIwUlpia3RzWW0xdWVrcExZalJ2YlhaSU5qbEhRVGRUYjJacWNHazJielkxVXpKU1JURjRRMnhMVVdRM1QzQm5RME5QTDBWQ1UzQmhaVlFLTW5nd1prSnpUVWR0UVZad1RIaHJkMVF5SzFob2FsQlVUbGw2YkhsaWVEZGlUMWhxZHpCaVRrOXNhV3R0ZGpCd1EyZDZhM000WjJGaVZFWlNkMlppTWdvd2NscGpaRGRoZDFaMlMxbHpiMlpMVmxwRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VYSllOMWxFVjB4VVUwVmlPWFprZEUxNVp6WlJja0lyZW1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNVVlZlRFptZEhscWQzVkZlakZDY2taV1JHcHdTR0oyVjBKbVdVVlNhbTB4YVVoRFFVOTFNR3hQVDNaNFJXUm9VZ296Y25OUlRrVkZWblozUTBsWk9YZE1VRUZvUnpSc04ydzFOV1ZFWXpZNFdqWnlZalJTVXpGdFJGaEZWemhqWjNKVVUwcDNkRVpsWVZWNlZtMHdSemRQQ25Zdk0yVjRaMWRHTjJOVGJteHpSMEpXUjFaek0yUmhhVWR2V0dobFRGQnhVMG9yTVVKTFJVVlNTa2xFVEZSRmNuVnliM1UwU3pOa2JWbGlZak0yZDBjS1lVNHpNbGt3UlhWclNtdzVkRFJxYzJSUmFIUlpWWEE0VW1GRFV6QTBURmM1YzJka1ZURXlZblY0WmpadVpqWm9WV05XU0RWdkwwdFJRVVJEUVZkdWRRcHJSMlJvVHpadVZEaExXVFJvWkRaUWJISTJWak5zTUhRelVUaFNha1ZJZGxkV1NYRjVVVGQ1VUhZMmJ6SnFUbEpCVVhSUFlVTjRkVlZZYW5kRGVVRmxDbUZwVFVNNVVsTnZaVkJZTXpka1V6RTVkR0V5T0U1b1FuRXpTMkZ4VG1WVVZqWlNZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZTZhOWM1OTItODhhYS00OTYyLThjNzAtOTkwNmVmNDAyYTljLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNbndjclNkWEEwbHBMbXFzTjlxdVpibGFuNmNpVDJ2T1dvaU1LOVBRckgxd1ZJWHk2N3BQdUxPVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2566"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:22 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d37c63a3-4a14-4867-b04c-c6a65cce6f77
+ - a4763c3b-5dd3-4e73-9e0c-14f506790dbb
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:20.213606Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:06.298828Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1562"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:22 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2c54dc99-ccc3-4de3-9b15-56a9a60c122b
+ - 2b38fb97-5cd3-4e46-928b-9c56047cd6ed
status: 200 OK
code: 200
duration: ""
@@ -313,19 +313,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dadf30db-2843-472e-aef7-c79c0d109bce
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9fe354f-9b4b-4757-a215-823698044d99
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:16.266750Z","dhcp_enabled":true,"id":"dadf30db-2843-472e-aef7-c79c0d109bce","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:16.266750Z","id":"ac8861bf-7715-45e7-92d9-478558855535","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:16.266750Z"},{"created_at":"2023-11-13T13:57:16.266750Z","id":"d1a8b3ef-18d2-453f-9cce-336476cfc9d7","subnet":"fd63:256c:45f7:8aa6::/64","updated_at":"2023-11-13T13:57:16.266750Z"}],"tags":[],"updated_at":"2023-11-13T13:57:16.266750Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:03.157493Z","dhcp_enabled":true,"id":"c9fe354f-9b4b-4757-a215-823698044d99","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:03.157493Z","id":"db9c78b6-097b-4088-ae19-a5788e43c388","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:04:03.157493Z"},{"created_at":"2023-12-08T16:04:03.157493Z","id":"caef4f25-bb81-4200-b477-7c74860f084d","subnet":"fd63:256c:45f7:9248::/64","updated_at":"2023-12-08T16:04:03.157493Z"}],"tags":[],"updated_at":"2023-12-08T16:04:03.157493Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "710"
+ - "709"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,7 +335,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 52b4f4d2-426c-48ed-80b1-0f506bc8f06a
+ - 845b0c99-09c2-426a-b6e7-cab1451815d0
status: 200 OK
code: 200
duration: ""
@@ -346,10 +346,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:20.213606Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:06.298828Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1562"
@@ -358,7 +358,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -368,7 +368,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2e508360-25a2-499a-9adf-0cfaf388879b
+ - 02b09b36-7551-49d7-812a-78afe334c538
status: 200 OK
code: 200
duration: ""
@@ -379,10 +379,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmplRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WR040VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVkJ5Q205aGFpczNWV3RsTVVWUWFFMXJXWFZHTm13eVZ6ZHNRVFZ5ZVZoTFRXaFlNVEpaZFdsRVdIZ3hibEEzZVZkRU5uSTJkMFl4WjBOVGNYaE1Na2RNTTJnS2Qwb3phRlJ3YUV4SlZWTk9RUzl2TUZabFFVdE9UVVZWVW1ORFUxUnhaM0JEVVdRdmNuY3paVzVpTlZGdVFVWmpaMVZ1WlM5bU1XVXlVSHBFWlRSelR3cDVNR3RuWm1GYU4zZ3pOelZZU0UxaFdVbGxkbTlKU25ORlZEUnJSbFZ4Y0c1MWFXODFVbGxyTmtWc05rb3dlazEwTnpFcmFuSkhTQ3RLTHpZNWJtUlFDbGRKWVdFMWNuUmxjRXhsWldOT0wycGpXbmxaWWpNMlFtMVdhRVZFV25wR09GSlBUalphWmpKelZXWmtkVlpaTjJ0MWVVNVRjbVp0UTBoT2FUUllhVXdLTmtzMVpXeEhNWEU0ZWxwMmNGZGxVV3R0ZGpodE4wc3JaRUpTWmtKeFJsRTFha2Q2YTJ0VGNUZFBZbE5WVWtFd1V6WnZkazVTVFZacmFHbDBkSEJIWndwT1drRm5lRkIzYVdGU1EybEhUVE5RVDJvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVdtNUNNMjVZTDNkS1VUbEdNSFpvT1dKNGNISkJLMk5JYTFWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlYyUlpkR1o2TWxSWVZHNUNka2N2VFhONk1YZHNVMEZHZEZVM1UyMTVabVFyTnpaWU9XbDJjRzlGTHpoT1QxQkJXZ3BGVEU1bGFYWkNPR3RNWnpsR016SlVSbkpKZUV0cVZGSjVWUzlrUVZaT01WWjVOV1Z0YmtRME9FTkZhWEJrVlZadlRVZzBSMk1yTjBKUFJYVlVhM00yQ2sxeFZYUnRiamRoWWxkT1VUWkJXa3cyWTFkUWNGVmhhRVZPTkhWM2NXWk5OeTlHYjBsWU1XdFpjRmRzUzBoMmRrMWlNVUZuVVhkTmJHcFFObTVMY0VzS1NsbHVUazh2YjJabksyaDZOalpDTUU5U1lucFNURXBxY0dSMFFYUlhiRlpZZDI1RGR6QmtRVmxQVjFkemNVbDRMMWg1YURCS09ESTJTbGxqWW5oeWJncENiM05QVlVWUGJIWjBiWEJqZGpoT1RTODNSV1JrTW1WYVIxQXZNMEo2T0hsUFkwOW5NV1pMTVZkVEt6ZFNhM050VTJ0MFNHMVBkR2hqZVhVemRFOW1DbXB2V1djeWNYSlBWVFZVV25oUGJGbHhOVTlOTjFVM1NubEJSWHBJTjNJeVQyVjJTd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDUxMWI3ZTgtMGY0Yy00NDY3LTkxYTktYTdjNWVjY2VmMDBjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBPMmFZenJEZExES0FSQjV3SFNmYmNyNWxJU1dLUGJOT1VXQjhKUjZJbFdyV3ZDY0pwTUlWN1VUdw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJkMDVXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkYzVGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbGhYQ2tGRlNXRmhNbkJMU1UxRmIxUm5OWGd5YW5KQ0wyRlhjSG80YzBoUFJFZEplVU01YW01RVJFcFNTakZwVjJOWVVGVnZOREZIUmtaV1VtSm1Nbk0zWWtVS2RuVnJWbXBISzBSak1TczJjM1JwUlVGT05raHhkVTVxYzFGMGVGZGtLMk5IWWs5RVl6SkNObGQwYzJkck1VUjVXRFExZFU5SlZpOUhRVFJJWkhsRVN3cHNUWGRsWTA1ckwwVjFjSEZJVWs1U1NHUndXVXc1WTJsTlYyZEdhVFpuZUhsT2IzTmhhRkF4UkZGUWVuWXlXWGRUUTBGWE4xWkJTbGxaUkc5b1ZXOHdDbEZEZDFoeFIwUlpia3RzWW0xdWVrcExZalJ2YlhaSU5qbEhRVGRUYjJacWNHazJielkxVXpKU1JURjRRMnhMVVdRM1QzQm5RME5QTDBWQ1UzQmhaVlFLTW5nd1prSnpUVWR0UVZad1RIaHJkMVF5SzFob2FsQlVUbGw2YkhsaWVEZGlUMWhxZHpCaVRrOXNhV3R0ZGpCd1EyZDZhM000WjJGaVZFWlNkMlppTWdvd2NscGpaRGRoZDFaMlMxbHpiMlpMVmxwRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VYSllOMWxFVjB4VVUwVmlPWFprZEUxNVp6WlJja0lyZW1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNVVlZlRFptZEhscWQzVkZlakZDY2taV1JHcHdTR0oyVjBKbVdVVlNhbTB4YVVoRFFVOTFNR3hQVDNaNFJXUm9VZ296Y25OUlRrVkZWblozUTBsWk9YZE1VRUZvUnpSc04ydzFOV1ZFWXpZNFdqWnlZalJTVXpGdFJGaEZWemhqWjNKVVUwcDNkRVpsWVZWNlZtMHdSemRQQ25Zdk0yVjRaMWRHTjJOVGJteHpSMEpXUjFaek0yUmhhVWR2V0dobFRGQnhVMG9yTVVKTFJVVlNTa2xFVEZSRmNuVnliM1UwU3pOa2JWbGlZak0yZDBjS1lVNHpNbGt3UlhWclNtdzVkRFJxYzJSUmFIUlpWWEE0VW1GRFV6QTBURmM1YzJka1ZURXlZblY0WmpadVpqWm9WV05XU0RWdkwwdFJRVVJEUVZkdWRRcHJSMlJvVHpadVZEaExXVFJvWkRaUWJISTJWak5zTUhRelVUaFNha1ZJZGxkV1NYRjVVVGQ1VUhZMmJ6SnFUbEpCVVhSUFlVTjRkVlZZYW5kRGVVRmxDbUZwVFVNNVVsTnZaVkJZTXpka1V6RTVkR0V5T0U1b1FuRXpTMkZ4VG1WVVZqWlNZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZTZhOWM1OTItODhhYS00OTYyLThjNzAtOTkwNmVmNDAyYTljLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNbndjclNkWEEwbHBMbXFzTjlxdVpibGFuNmNpVDJ2T1dvaU1LOVBRckgxd1ZJWHk2N3BQdUxPVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2566"
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -401,7 +401,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8cd527f-0000-4f16-bf25-838cbcecf462
+ - e0f62749-1722-47ee-af40-ba847fe5c1ac
status: 200 OK
code: 200
duration: ""
@@ -412,19 +412,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dadf30db-2843-472e-aef7-c79c0d109bce
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9fe354f-9b4b-4757-a215-823698044d99
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:16.266750Z","dhcp_enabled":true,"id":"dadf30db-2843-472e-aef7-c79c0d109bce","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:16.266750Z","id":"ac8861bf-7715-45e7-92d9-478558855535","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:16.266750Z"},{"created_at":"2023-11-13T13:57:16.266750Z","id":"d1a8b3ef-18d2-453f-9cce-336476cfc9d7","subnet":"fd63:256c:45f7:8aa6::/64","updated_at":"2023-11-13T13:57:16.266750Z"}],"tags":[],"updated_at":"2023-11-13T13:57:16.266750Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:03.157493Z","dhcp_enabled":true,"id":"c9fe354f-9b4b-4757-a215-823698044d99","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:03.157493Z","id":"db9c78b6-097b-4088-ae19-a5788e43c388","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:04:03.157493Z"},{"created_at":"2023-12-08T16:04:03.157493Z","id":"caef4f25-bb81-4200-b477-7c74860f084d","subnet":"fd63:256c:45f7:9248::/64","updated_at":"2023-12-08T16:04:03.157493Z"}],"tags":[],"updated_at":"2023-12-08T16:04:03.157493Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "710"
+ - "709"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -434,7 +434,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0d5c9262-0ba6-47f8-ac45-58539e904737
+ - 995a8640-ec34-4767-9a8c-a28843d1ec78
status: 200 OK
code: 200
duration: ""
@@ -445,10 +445,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:20.213606Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:06.298828Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1562"
@@ -457,7 +457,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -467,7 +467,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6fc7192a-9445-4afb-a92c-054d95e8b529
+ - 861dcaa0-083a-404e-bc3d-72d8c9c23192
status: 200 OK
code: 200
duration: ""
@@ -478,10 +478,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmplRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WR040VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVkJ5Q205aGFpczNWV3RsTVVWUWFFMXJXWFZHTm13eVZ6ZHNRVFZ5ZVZoTFRXaFlNVEpaZFdsRVdIZ3hibEEzZVZkRU5uSTJkMFl4WjBOVGNYaE1Na2RNTTJnS2Qwb3phRlJ3YUV4SlZWTk9RUzl2TUZabFFVdE9UVVZWVW1ORFUxUnhaM0JEVVdRdmNuY3paVzVpTlZGdVFVWmpaMVZ1WlM5bU1XVXlVSHBFWlRSelR3cDVNR3RuWm1GYU4zZ3pOelZZU0UxaFdVbGxkbTlKU25ORlZEUnJSbFZ4Y0c1MWFXODFVbGxyTmtWc05rb3dlazEwTnpFcmFuSkhTQ3RLTHpZNWJtUlFDbGRKWVdFMWNuUmxjRXhsWldOT0wycGpXbmxaWWpNMlFtMVdhRVZFV25wR09GSlBUalphWmpKelZXWmtkVlpaTjJ0MWVVNVRjbVp0UTBoT2FUUllhVXdLTmtzMVpXeEhNWEU0ZWxwMmNGZGxVV3R0ZGpodE4wc3JaRUpTWmtKeFJsRTFha2Q2YTJ0VGNUZFBZbE5WVWtFd1V6WnZkazVTVFZacmFHbDBkSEJIWndwT1drRm5lRkIzYVdGU1EybEhUVE5RVDJvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVdtNUNNMjVZTDNkS1VUbEdNSFpvT1dKNGNISkJLMk5JYTFWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlYyUlpkR1o2TWxSWVZHNUNka2N2VFhONk1YZHNVMEZHZEZVM1UyMTVabVFyTnpaWU9XbDJjRzlGTHpoT1QxQkJXZ3BGVEU1bGFYWkNPR3RNWnpsR016SlVSbkpKZUV0cVZGSjVWUzlrUVZaT01WWjVOV1Z0YmtRME9FTkZhWEJrVlZadlRVZzBSMk1yTjBKUFJYVlVhM00yQ2sxeFZYUnRiamRoWWxkT1VUWkJXa3cyWTFkUWNGVmhhRVZPTkhWM2NXWk5OeTlHYjBsWU1XdFpjRmRzUzBoMmRrMWlNVUZuVVhkTmJHcFFObTVMY0VzS1NsbHVUazh2YjJabksyaDZOalpDTUU5U1lucFNURXBxY0dSMFFYUlhiRlpZZDI1RGR6QmtRVmxQVjFkemNVbDRMMWg1YURCS09ESTJTbGxqWW5oeWJncENiM05QVlVWUGJIWjBiWEJqZGpoT1RTODNSV1JrTW1WYVIxQXZNMEo2T0hsUFkwOW5NV1pMTVZkVEt6ZFNhM050VTJ0MFNHMVBkR2hqZVhVemRFOW1DbXB2V1djeWNYSlBWVFZVV25oUGJGbHhOVTlOTjFVM1NubEJSWHBJTjNJeVQyVjJTd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDUxMWI3ZTgtMGY0Yy00NDY3LTkxYTktYTdjNWVjY2VmMDBjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBPMmFZenJEZExES0FSQjV3SFNmYmNyNWxJU1dLUGJOT1VXQjhKUjZJbFdyV3ZDY0pwTUlWN1VUdw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJkMDVXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkYzVGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbGhYQ2tGRlNXRmhNbkJMU1UxRmIxUm5OWGd5YW5KQ0wyRlhjSG80YzBoUFJFZEplVU01YW01RVJFcFNTakZwVjJOWVVGVnZOREZIUmtaV1VtSm1Nbk0zWWtVS2RuVnJWbXBISzBSak1TczJjM1JwUlVGT05raHhkVTVxYzFGMGVGZGtLMk5IWWs5RVl6SkNObGQwYzJkck1VUjVXRFExZFU5SlZpOUhRVFJJWkhsRVN3cHNUWGRsWTA1ckwwVjFjSEZJVWs1U1NHUndXVXc1WTJsTlYyZEdhVFpuZUhsT2IzTmhhRkF4UkZGUWVuWXlXWGRUUTBGWE4xWkJTbGxaUkc5b1ZXOHdDbEZEZDFoeFIwUlpia3RzWW0xdWVrcExZalJ2YlhaSU5qbEhRVGRUYjJacWNHazJielkxVXpKU1JURjRRMnhMVVdRM1QzQm5RME5QTDBWQ1UzQmhaVlFLTW5nd1prSnpUVWR0UVZad1RIaHJkMVF5SzFob2FsQlVUbGw2YkhsaWVEZGlUMWhxZHpCaVRrOXNhV3R0ZGpCd1EyZDZhM000WjJGaVZFWlNkMlppTWdvd2NscGpaRGRoZDFaMlMxbHpiMlpMVmxwRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VYSllOMWxFVjB4VVUwVmlPWFprZEUxNVp6WlJja0lyZW1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNVVlZlRFptZEhscWQzVkZlakZDY2taV1JHcHdTR0oyVjBKbVdVVlNhbTB4YVVoRFFVOTFNR3hQVDNaNFJXUm9VZ296Y25OUlRrVkZWblozUTBsWk9YZE1VRUZvUnpSc04ydzFOV1ZFWXpZNFdqWnlZalJTVXpGdFJGaEZWemhqWjNKVVUwcDNkRVpsWVZWNlZtMHdSemRQQ25Zdk0yVjRaMWRHTjJOVGJteHpSMEpXUjFaek0yUmhhVWR2V0dobFRGQnhVMG9yTVVKTFJVVlNTa2xFVEZSRmNuVnliM1UwU3pOa2JWbGlZak0yZDBjS1lVNHpNbGt3UlhWclNtdzVkRFJxYzJSUmFIUlpWWEE0VW1GRFV6QTBURmM1YzJka1ZURXlZblY0WmpadVpqWm9WV05XU0RWdkwwdFJRVVJEUVZkdWRRcHJSMlJvVHpadVZEaExXVFJvWkRaUWJISTJWak5zTUhRelVUaFNha1ZJZGxkV1NYRjVVVGQ1VUhZMmJ6SnFUbEpCVVhSUFlVTjRkVlZZYW5kRGVVRmxDbUZwVFVNNVVsTnZaVkJZTXpka1V6RTVkR0V5T0U1b1FuRXpTMkZ4VG1WVVZqWlNZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZTZhOWM1OTItODhhYS00OTYyLThjNzAtOTkwNmVmNDAyYTljLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNbndjclNkWEEwbHBMbXFzTjlxdVpibGFuNmNpVDJ2T1dvaU1LOVBRckgxd1ZJWHk2N3BQdUxPVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2566"
@@ -490,7 +490,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:23 GMT
+ - Fri, 08 Dec 2023 16:04:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -500,7 +500,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 35980103-1cff-4f30-b546-5ed1d275628a
+ - 18b14fff-61b3-4c59-920e-468fe35e14b5
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:24.518197891Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:11.519414619Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1548"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:24 GMT
+ - Fri, 08 Dec 2023 16:04:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22f06764-fe48-46a4-bbe6-0a616fdb1fe8
+ - ad02f6e4-0fbc-41f6-ae9e-d3941a420f27
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:24.518198Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:11.519415Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1545"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:24 GMT
+ - Fri, 08 Dec 2023 16:04:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 998671ec-78e3-492a-b268-03c98d117c12
+ - 06502365-73d7-439c-92c1-95d4701c3ef0
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:25.718116Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:12.623259Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1550"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:29 GMT
+ - Fri, 08 Dec 2023 16:04:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 401a89be-3ac8-4fee-bdce-1828c202722a
+ - 804801c3-715f-40cf-8bc1-64a8dccc39d7
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:25.718116Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:12.623259Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1550"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:29 GMT
+ - Fri, 08 Dec 2023 16:04:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b76d50ff-1117-432f-a5cd-09a853a1e964
+ - 0f0a810d-b2b5-420d-8ac6-303ffad973f2
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmplRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WR040VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVkJ5Q205aGFpczNWV3RsTVVWUWFFMXJXWFZHTm13eVZ6ZHNRVFZ5ZVZoTFRXaFlNVEpaZFdsRVdIZ3hibEEzZVZkRU5uSTJkMFl4WjBOVGNYaE1Na2RNTTJnS2Qwb3phRlJ3YUV4SlZWTk9RUzl2TUZabFFVdE9UVVZWVW1ORFUxUnhaM0JEVVdRdmNuY3paVzVpTlZGdVFVWmpaMVZ1WlM5bU1XVXlVSHBFWlRSelR3cDVNR3RuWm1GYU4zZ3pOelZZU0UxaFdVbGxkbTlKU25ORlZEUnJSbFZ4Y0c1MWFXODFVbGxyTmtWc05rb3dlazEwTnpFcmFuSkhTQ3RLTHpZNWJtUlFDbGRKWVdFMWNuUmxjRXhsWldOT0wycGpXbmxaWWpNMlFtMVdhRVZFV25wR09GSlBUalphWmpKelZXWmtkVlpaTjJ0MWVVNVRjbVp0UTBoT2FUUllhVXdLTmtzMVpXeEhNWEU0ZWxwMmNGZGxVV3R0ZGpodE4wc3JaRUpTWmtKeFJsRTFha2Q2YTJ0VGNUZFBZbE5WVWtFd1V6WnZkazVTVFZacmFHbDBkSEJIWndwT1drRm5lRkIzYVdGU1EybEhUVE5RVDJvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVdtNUNNMjVZTDNkS1VUbEdNSFpvT1dKNGNISkJLMk5JYTFWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlYyUlpkR1o2TWxSWVZHNUNka2N2VFhONk1YZHNVMEZHZEZVM1UyMTVabVFyTnpaWU9XbDJjRzlGTHpoT1QxQkJXZ3BGVEU1bGFYWkNPR3RNWnpsR016SlVSbkpKZUV0cVZGSjVWUzlrUVZaT01WWjVOV1Z0YmtRME9FTkZhWEJrVlZadlRVZzBSMk1yTjBKUFJYVlVhM00yQ2sxeFZYUnRiamRoWWxkT1VUWkJXa3cyWTFkUWNGVmhhRVZPTkhWM2NXWk5OeTlHYjBsWU1XdFpjRmRzUzBoMmRrMWlNVUZuVVhkTmJHcFFObTVMY0VzS1NsbHVUazh2YjJabksyaDZOalpDTUU5U1lucFNURXBxY0dSMFFYUlhiRlpZZDI1RGR6QmtRVmxQVjFkemNVbDRMMWg1YURCS09ESTJTbGxqWW5oeWJncENiM05QVlVWUGJIWjBiWEJqZGpoT1RTODNSV1JrTW1WYVIxQXZNMEo2T0hsUFkwOW5NV1pMTVZkVEt6ZFNhM050VTJ0MFNHMVBkR2hqZVhVemRFOW1DbXB2V1djeWNYSlBWVFZVV25oUGJGbHhOVTlOTjFVM1NubEJSWHBJTjNJeVQyVjJTd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDUxMWI3ZTgtMGY0Yy00NDY3LTkxYTktYTdjNWVjY2VmMDBjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBPMmFZenJEZExES0FSQjV3SFNmYmNyNWxJU1dLUGJOT1VXQjhKUjZJbFdyV3ZDY0pwTUlWN1VUdw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJkMDVXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkYzVGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbGhYQ2tGRlNXRmhNbkJMU1UxRmIxUm5OWGd5YW5KQ0wyRlhjSG80YzBoUFJFZEplVU01YW01RVJFcFNTakZwVjJOWVVGVnZOREZIUmtaV1VtSm1Nbk0zWWtVS2RuVnJWbXBISzBSak1TczJjM1JwUlVGT05raHhkVTVxYzFGMGVGZGtLMk5IWWs5RVl6SkNObGQwYzJkck1VUjVXRFExZFU5SlZpOUhRVFJJWkhsRVN3cHNUWGRsWTA1ckwwVjFjSEZJVWs1U1NHUndXVXc1WTJsTlYyZEdhVFpuZUhsT2IzTmhhRkF4UkZGUWVuWXlXWGRUUTBGWE4xWkJTbGxaUkc5b1ZXOHdDbEZEZDFoeFIwUlpia3RzWW0xdWVrcExZalJ2YlhaSU5qbEhRVGRUYjJacWNHazJielkxVXpKU1JURjRRMnhMVVdRM1QzQm5RME5QTDBWQ1UzQmhaVlFLTW5nd1prSnpUVWR0UVZad1RIaHJkMVF5SzFob2FsQlVUbGw2YkhsaWVEZGlUMWhxZHpCaVRrOXNhV3R0ZGpCd1EyZDZhM000WjJGaVZFWlNkMlppTWdvd2NscGpaRGRoZDFaMlMxbHpiMlpMVmxwRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VYSllOMWxFVjB4VVUwVmlPWFprZEUxNVp6WlJja0lyZW1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNVVlZlRFptZEhscWQzVkZlakZDY2taV1JHcHdTR0oyVjBKbVdVVlNhbTB4YVVoRFFVOTFNR3hQVDNaNFJXUm9VZ296Y25OUlRrVkZWblozUTBsWk9YZE1VRUZvUnpSc04ydzFOV1ZFWXpZNFdqWnlZalJTVXpGdFJGaEZWemhqWjNKVVUwcDNkRVpsWVZWNlZtMHdSemRQQ25Zdk0yVjRaMWRHTjJOVGJteHpSMEpXUjFaek0yUmhhVWR2V0dobFRGQnhVMG9yTVVKTFJVVlNTa2xFVEZSRmNuVnliM1UwU3pOa2JWbGlZak0yZDBjS1lVNHpNbGt3UlhWclNtdzVkRFJxYzJSUmFIUlpWWEE0VW1GRFV6QTBURmM1YzJka1ZURXlZblY0WmpadVpqWm9WV05XU0RWdkwwdFJRVVJEUVZkdWRRcHJSMlJvVHpadVZEaExXVFJvWkRaUWJISTJWak5zTUhRelVUaFNha1ZJZGxkV1NYRjVVVGQ1VUhZMmJ6SnFUbEpCVVhSUFlVTjRkVlZZYW5kRGVVRmxDbUZwVFVNNVVsTnZaVkJZTXpka1V6RTVkR0V5T0U1b1FuRXpTMkZ4VG1WVVZqWlNZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZTZhOWM1OTItODhhYS00OTYyLThjNzAtOTkwNmVmNDAyYTljLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNbndjclNkWEEwbHBMbXFzTjlxdVpibGFuNmNpVDJ2T1dvaU1LOVBRckgxd1ZJWHk2N3BQdUxPVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2566"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:29 GMT
+ - Fri, 08 Dec 2023 16:04:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aa67c902-3ec2-4870-af08-dd6212d95d46
+ - e54af246-ca35-4287-b06c-8aca0f67ae1b
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:25.718116Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:12.623259Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1550"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:04:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8aae3b64-c1a6-4bf1-a5e6-8bf8ce6dd841
+ - 8e7ae880-0c63-4708-afb2-bf4167b6bae5
status: 200 OK
code: 200
duration: ""
@@ -711,19 +711,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dadf30db-2843-472e-aef7-c79c0d109bce
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9fe354f-9b4b-4757-a215-823698044d99
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:16.266750Z","dhcp_enabled":true,"id":"dadf30db-2843-472e-aef7-c79c0d109bce","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:16.266750Z","id":"ac8861bf-7715-45e7-92d9-478558855535","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:16.266750Z"},{"created_at":"2023-11-13T13:57:16.266750Z","id":"d1a8b3ef-18d2-453f-9cce-336476cfc9d7","subnet":"fd63:256c:45f7:8aa6::/64","updated_at":"2023-11-13T13:57:16.266750Z"}],"tags":[],"updated_at":"2023-11-13T13:57:16.266750Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:03.157493Z","dhcp_enabled":true,"id":"c9fe354f-9b4b-4757-a215-823698044d99","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:03.157493Z","id":"db9c78b6-097b-4088-ae19-a5788e43c388","subnet":"172.16.0.0/22","updated_at":"2023-12-08T16:04:03.157493Z"},{"created_at":"2023-12-08T16:04:03.157493Z","id":"caef4f25-bb81-4200-b477-7c74860f084d","subnet":"fd63:256c:45f7:9248::/64","updated_at":"2023-12-08T16:04:03.157493Z"}],"tags":[],"updated_at":"2023-12-08T16:04:03.157493Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "710"
+ - "709"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4275805-ce52-4416-ae71-5455b8d3179b
+ - 21a6cbda-d293-42d2-9ef1-98d483485629
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:25.718116Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:12.623259Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1550"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb0492a2-a546-4195-9be3-fd731c12b313
+ - 332f4417-281c-4760-bdd1-5781f7d25502
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmplRTlXYjFoRVZFMTZUVlJGZUUxcVJYcE9WR040VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVkJ5Q205aGFpczNWV3RsTVVWUWFFMXJXWFZHTm13eVZ6ZHNRVFZ5ZVZoTFRXaFlNVEpaZFdsRVdIZ3hibEEzZVZkRU5uSTJkMFl4WjBOVGNYaE1Na2RNTTJnS2Qwb3phRlJ3YUV4SlZWTk9RUzl2TUZabFFVdE9UVVZWVW1ORFUxUnhaM0JEVVdRdmNuY3paVzVpTlZGdVFVWmpaMVZ1WlM5bU1XVXlVSHBFWlRSelR3cDVNR3RuWm1GYU4zZ3pOelZZU0UxaFdVbGxkbTlKU25ORlZEUnJSbFZ4Y0c1MWFXODFVbGxyTmtWc05rb3dlazEwTnpFcmFuSkhTQ3RLTHpZNWJtUlFDbGRKWVdFMWNuUmxjRXhsWldOT0wycGpXbmxaWWpNMlFtMVdhRVZFV25wR09GSlBUalphWmpKelZXWmtkVlpaTjJ0MWVVNVRjbVp0UTBoT2FUUllhVXdLTmtzMVpXeEhNWEU0ZWxwMmNGZGxVV3R0ZGpodE4wc3JaRUpTWmtKeFJsRTFha2Q2YTJ0VGNUZFBZbE5WVWtFd1V6WnZkazVTVFZacmFHbDBkSEJIWndwT1drRm5lRkIzYVdGU1EybEhUVE5RVDJvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVdtNUNNMjVZTDNkS1VUbEdNSFpvT1dKNGNISkJLMk5JYTFWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlYyUlpkR1o2TWxSWVZHNUNka2N2VFhONk1YZHNVMEZHZEZVM1UyMTVabVFyTnpaWU9XbDJjRzlGTHpoT1QxQkJXZ3BGVEU1bGFYWkNPR3RNWnpsR016SlVSbkpKZUV0cVZGSjVWUzlrUVZaT01WWjVOV1Z0YmtRME9FTkZhWEJrVlZadlRVZzBSMk1yTjBKUFJYVlVhM00yQ2sxeFZYUnRiamRoWWxkT1VUWkJXa3cyWTFkUWNGVmhhRVZPTkhWM2NXWk5OeTlHYjBsWU1XdFpjRmRzUzBoMmRrMWlNVUZuVVhkTmJHcFFObTVMY0VzS1NsbHVUazh2YjJabksyaDZOalpDTUU5U1lucFNURXBxY0dSMFFYUlhiRlpZZDI1RGR6QmtRVmxQVjFkemNVbDRMMWg1YURCS09ESTJTbGxqWW5oeWJncENiM05QVlVWUGJIWjBiWEJqZGpoT1RTODNSV1JrTW1WYVIxQXZNMEo2T0hsUFkwOW5NV1pMTVZkVEt6ZFNhM050VTJ0MFNHMVBkR2hqZVhVemRFOW1DbXB2V1djeWNYSlBWVFZVV25oUGJGbHhOVTlOTjFVM1NubEJSWHBJTjNJeVQyVjJTd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDUxMWI3ZTgtMGY0Yy00NDY3LTkxYTktYTdjNWVjY2VmMDBjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBPMmFZenJEZExES0FSQjV3SFNmYmNyNWxJU1dLUGJOT1VXQjhKUjZJbFdyV3ZDY0pwTUlWN1VUdw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJkMDVXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkYzVGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbGhYQ2tGRlNXRmhNbkJMU1UxRmIxUm5OWGd5YW5KQ0wyRlhjSG80YzBoUFJFZEplVU01YW01RVJFcFNTakZwVjJOWVVGVnZOREZIUmtaV1VtSm1Nbk0zWWtVS2RuVnJWbXBISzBSak1TczJjM1JwUlVGT05raHhkVTVxYzFGMGVGZGtLMk5IWWs5RVl6SkNObGQwYzJkck1VUjVXRFExZFU5SlZpOUhRVFJJWkhsRVN3cHNUWGRsWTA1ckwwVjFjSEZJVWs1U1NHUndXVXc1WTJsTlYyZEdhVFpuZUhsT2IzTmhhRkF4UkZGUWVuWXlXWGRUUTBGWE4xWkJTbGxaUkc5b1ZXOHdDbEZEZDFoeFIwUlpia3RzWW0xdWVrcExZalJ2YlhaSU5qbEhRVGRUYjJacWNHazJielkxVXpKU1JURjRRMnhMVVdRM1QzQm5RME5QTDBWQ1UzQmhaVlFLTW5nd1prSnpUVWR0UVZad1RIaHJkMVF5SzFob2FsQlVUbGw2YkhsaWVEZGlUMWhxZHpCaVRrOXNhV3R0ZGpCd1EyZDZhM000WjJGaVZFWlNkMlppTWdvd2NscGpaRGRoZDFaMlMxbHpiMlpMVmxwRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VYSllOMWxFVjB4VVUwVmlPWFprZEUxNVp6WlJja0lyZW1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNVVlZlRFptZEhscWQzVkZlakZDY2taV1JHcHdTR0oyVjBKbVdVVlNhbTB4YVVoRFFVOTFNR3hQVDNaNFJXUm9VZ296Y25OUlRrVkZWblozUTBsWk9YZE1VRUZvUnpSc04ydzFOV1ZFWXpZNFdqWnlZalJTVXpGdFJGaEZWemhqWjNKVVUwcDNkRVpsWVZWNlZtMHdSemRQQ25Zdk0yVjRaMWRHTjJOVGJteHpSMEpXUjFaek0yUmhhVWR2V0dobFRGQnhVMG9yTVVKTFJVVlNTa2xFVEZSRmNuVnliM1UwU3pOa2JWbGlZak0yZDBjS1lVNHpNbGt3UlhWclNtdzVkRFJxYzJSUmFIUlpWWEE0VW1GRFV6QTBURmM1YzJka1ZURXlZblY0WmpadVpqWm9WV05XU0RWdkwwdFJRVVJEUVZkdWRRcHJSMlJvVHpadVZEaExXVFJvWkRaUWJISTJWak5zTUhRelVUaFNha1ZJZGxkV1NYRjVVVGQ1VUhZMmJ6SnFUbEpCVVhSUFlVTjRkVlZZYW5kRGVVRmxDbUZwVFVNNVVsTnZaVkJZTXpka1V6RTVkR0V5T0U1b1FuRXpTMkZ4VG1WVVZqWlNZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZTZhOWM1OTItODhhYS00OTYyLThjNzAtOTkwNmVmNDAyYTljLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNbndjclNkWEEwbHBMbXFzTjlxdVpibGFuNmNpVDJ2T1dvaU1LOVBRckgxd1ZJWHk2N3BQdUxPVg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2566"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69537163-e4bf-4d19-87e1-b68144076ac2
+ - 1e2c9236-ca41-48f8-97cb-c970779ee71f
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:31.311882461Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:18.392833607Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1548"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:31 GMT
+ - Fri, 08 Dec 2023 16:04:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5480b15-07fc-4cb7-a004-c5cd4f4f91d6
+ - 386111d8-9a5f-4daf-9770-e34c32834034
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:31.311882Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:18.392834Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1545"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:31 GMT
+ - Fri, 08 Dec 2023 16:04:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 15240bf2-8125-4ec3-9d06-4b3e48b8815b
+ - 018d3779-5ba3-42ae-bfc8-88b26203691c
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4511b7e8-0f4c-4467-91a9-a7c5eccef00c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:17.428958Z","created_at":"2023-11-13T13:57:17.428958Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4511b7e8-0f4c-4467-91a9-a7c5eccef00c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dadf30db-2843-472e-aef7-c79c0d109bce","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-11-13T13:57:31.311882Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e6a9c592-88aa-4962-8c70-9906ef402a9c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:04.129800Z","created_at":"2023-12-08T16:04:04.129800Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e6a9c592-88aa-4962-8c70-9906ef402a9c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c9fe354f-9b4b-4757-a215-823698044d99","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-12-08T16:04:18.392834Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1545"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:36 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 053a8cf8-4e5a-48d9-a422-dbbf676b8165
+ - d00837ec-3f27-475f-ba39-3b8115de7356
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:41 GMT
+ - Fri, 08 Dec 2023 16:04:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 45e82601-4d40-4dfa-ad0c-25ab3a4e44be
+ - abac0adb-da29-4695-a65b-7ed41dcb832a
status: 404 Not Found
code: 404
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dadf30db-2843-472e-aef7-c79c0d109bce
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9fe354f-9b4b-4757-a215-823698044d99
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"dadf30db-2843-472e-aef7-c79c0d109bce","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"c9fe354f-9b4b-4757-a215-823698044d99","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:41 GMT
+ - Fri, 08 Dec 2023 16:04:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74b39d69-d6c3-4589-bc7a-b0fb023fcfa0
+ - 6cfd4e80-a0a1-401a-a844-5796533f871f
status: 404 Not Found
code: 404
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4511b7e8-0f4c-4467-91a9-a7c5eccef00c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e6a9c592-88aa-4962-8c70-9906ef402a9c
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"4511b7e8-0f4c-4467-91a9-a7c5eccef00c","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"e6a9c592-88aa-4962-8c70-9906ef402a9c","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:41 GMT
+ - Fri, 08 Dec 2023 16:04:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a8dd3d8-27b7-4293-82bc-268cd44ff51a
+ - cb5543ef-9bd4-4e13-afbe-05f5973c4838
status: 404 Not Found
code: 404
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dadf30db-2843-472e-aef7-c79c0d109bce
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9fe354f-9b4b-4757-a215-823698044d99
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"dadf30db-2843-472e-aef7-c79c0d109bce","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"c9fe354f-9b4b-4757-a215-823698044d99","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:41 GMT
+ - Fri, 08 Dec 2023 16:04:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f240fb3e-45aa-4574-aed8-06639f474977
+ - ed89b019-2fa9-4494-ba55-cb2f155d90bd
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml
index 4840eb3582..a7a0642b4c 100644
--- a/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:52 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1c894128-db10-4807-9a16-7e708364af63
+ - 8d9abd8d-adb8-4999-a960-f7518fbd4908
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "718"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:02 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 818cc06c-ec5b-4edd-9efc-e7a286c4206d
+ - 748d56d7-63ad-4e5b-8181-50f33f95017c
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "718"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:02 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 642d0da8-41ba-432c-a208-e3470da3b57a
+ - 58fc0c63-4ccf-4c7a-b780-0f0968d07c8e
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977894979Z","created_at":"2023-11-13T14:04:02.977894979Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:04:02.997883984Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870300Z","created_at":"2023-12-08T15:58:33.085870300Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.111396284Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1509"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:03 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c352026-5edb-4e9e-9ac2-04d335a842e5
+ - 4af12785-c29d-40c8-84b9-8614e6b9372a
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:04:02.997884Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.111396Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:03 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b855d19c-0cdf-4f69-851b-47034ddec560
+ - 17e5d561-77b3-40a9-ac9c-e3c87985343f
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:04:04.699204Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.707388Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1505"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:08 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f5d8756-af14-49a6-9d0a-67412074490b
+ - 72066c75-044e-428e-aaea-0465e44d2750
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:04:04.699204Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.707388Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1505"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:08 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c78372e7-f68d-477a-a93e-bcf2e292dec0
+ - 4a1fa2ea-17e1-404a-aa10-eee957aeb35e
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSUmQwNUdiMWhFVkUxNlRWUkZlRTFxUlRCTlJGRjNUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRpdG9Da1JtV1hWRE1WTnRkME5ZWlRCeWVGRjZNRWREYWxCd1ZWRlplRlJ4WTBka1lYVjZhSE0yT1RCVlkzWnpabWRUVDJsdGJHVkRjbmRVVm5aS1pYTklURlFLY21GclpFa3JkRTVQWmtOMlkzQnFNbVZQUkZSUFlXNVZjVzFvYjBJNVQzcGtVbnBwZGxaaGJUTTJhMkZJYjFGeU1HRlZjbXhaTUZvdllTOURLMDkzYWdwa1VscDFUMEpFVmpBdmVsWklVR2haV0hwbWFYSlNVR0pJTHpOWlJrMU5ia0ZpZFRRMGJHNTVSRFJGTUVscVZXWm1kSHBKTDJ4VVZXZFpOV1pTVkRrMENtNUpSR3d4V1UwMVEyOW5SVkpuVVVOdmRXY3lia1EwWTFCUVpFcEZRa3BIVDNOellWaFpkM3B1UVVKc1NWUXpURnBrU1N0MWVpOXFTSGhyVHpWcmVWWUthWGRPUTFNeGFVdzJUR0UwVHpsWVdWSXZiSGxTWkRSbFMxRTNPV1J3ZGtOQ1NHUndlRzVGUXpKR2FYRXdNRGNyZVZkbmRtUXJaV3c0T1VNcldXSnZXUXBXVHpoMWJ6TnNSRTAxWlZCellUaFVPRkJWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpRTlZwVFJ6SnpNVTh4V1N0MVMzWnpXRkJMUVZrM1ZtWllORUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYlU5R05HUkRieTlWU2tWR2RubGFUVzlLVmt4TFRraGlWemh0VTFwdmJqRk5kRWN5Y0V4c01UQnNUVm81VkdwRE1ncE1jV2RsTWpkNlRYUmtPSEZ1U1M5U2VUbG9UekJrWTJkWU9ETm1jMVV5YlZaNGRHb3dZamxYVURGMGFrdzBTbkJ4ZFVGblNFODBhbVZzZG1WV1kyZGpDbFZNV1ZabmVGUmFLMVEzTlZGTlluZHVjRmREVHpRdllXUklaaXRzVEZGUmNVZFNLMFJpWnl0NlUyTTBObGx4WlZOQkwydFVOemx3ZFcxa1MyRmxVRkFLVTB4elpWZENUVGxaWW1WYU1FSmtTSHBCV0c1bVFYSlZXVEpXZW10d1Fua3JZemRTYjB4Q2IyWmhVR015VFhWRWFXOUNibnBYWlc0NVEyOVZLMWhYVEFwUGFpdERXbVJWU0hkclMyZzNTR3A1U2pSd2RXZDRRMFUwZHpKVWJ5dE1SR1Z4UVU5UlVtbFNhVEJ4ZGtGNlNIZ3ZWRVpvYlV4Q1R6VlVUV1o1TlhFMkNrRlhVbkJ0WkdNeFNXVjBkbVpYWTNaalNEVkVhRkJOV0VNcmVEQlhhazU0YlVWTmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4NTY5NS0wNmM3LTQ2NGEtODMzYy0zZDM5NjVjYWZhYTkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYYll5dk9xWEdZclJ2NmdFTHViRG82ZVo3UkF6VUY1MTNMdFBwTkhMeHpsNkZQZEdGc3owcGdKag==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVGRnJDa1ZHWW5OUVUwdE1Oa2RZTDFOeWVuUldOVkpaZHk5TlNVdHVLMkZoUW5CNWJYcE1Vbk16U0VKT2NGVXZMMjlKVEdwd2JYTlRTRGhTVmsxa1oyTm9hRzBLZFd4dFNubFRRMFpVZFhsdFFUZG5aV0pzVVN0R00wbHFWRFpuVmxSM2JXNW5ObkpPUWsxNVVqZFNiMWswUkZZMldXUk1TVzl2TWxvNVMyWnlaemRzT0FwSFYwY3pjMVJwVm10eFlWcDFaMVZKUzBoWmFUUmlkVWN4VFc4d1RGcGtTM3BEU0VKYWFHUXZOMFppWVdoWWJUUXlRVTVRWWtGdk5qa3JVbkIxTW5wekNrRmtkR2hDV1c4dlNFeFNZVWxNTHpaeE1HTTJjVUZpUVRNMlpVbFBVMHcyWm1WRFpuVmxPVTVMYWpOc1JIZEdOR05OYURoMGNVZExNaXRzTmtaRlVGa0tkV1Z1YmxCeFpYbHFjM0JJTm0xeVZ6RlVaRzlDYVV0UVYzWkdXbFV3U1N0NE1WWTRUWGRTUzJobWVYY3JNMEZUTW5FeE5rbE5VVkZITUdGQ2VUTmxad3BGY21ReGEwc3pUMFJZUlVWaGNDdG1Na05OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKZDI1dFYwRlpMMFZXV25CRWFWSmlSRnBHVURoMFJWRnVSM05OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEUldOc1dITmhVSHB0WVhOUmRERkxUR1paWm1oNlNIQnNjMWhoUkdOdWVIVnFZVmd4ZGxKQmNIUjNXbUZTWjNwck1BcDVjV3AwWW1kMGJYSm9NRUl2SzNaMk9GSlZRMjV2UTJoaFJqWmpURzh5TUhBMldFcFZNazQxWkZkSmNtNWFhV3R0U1U0NFNtVnhMeXRDVFVVeFl5OUdDa1YyZEhaa1dtUlhNV04xV1RoNVRIQkhlSHBuTDNkbU0weFFTVnBxYUZReVRqTlRNMlpWYjBScFJVdHdNSHA1UWk5bVNFaDBlakk1YjFkTlpWQnhjM2tLUWxkVGFFTm5SbHBQSzJFMVozQTVlQzh6Y3paQ09FTnZhWFVyWm1sb01rMVpWWFpNVkUxQ1N6aEhRM292WXpaS2JtRmtOV0poY1ZaU1JuaHpWV3QxYVFwTFRsaGhhelJQWVZZeVkyTnROMnBpZUdwMVRVcHNlalZtYVhoQldrNWtOVm94T0VSU09XZ3piRUkzVDJGVUx6VTVWVkZIVUVWTFZteFVhRU01VTNNNENrcG9MMEpuVWk5aldVMDVOa0U1YzJZNWRsSnBlVTQ1T1ZOQlRUUnVZemhoUWxvdmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYTY5NWFlNi1hMjAwLTQ0N2EtOWNkOC00MjRmMjQwM2RiZGIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBoMlRlZERiY0ZYVnFYdHhtOW0xQW1rb3hkbElzdmJJN0RNOEViZVRTbXM0ZjNWZzhDdU8zMHpaSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:08 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2db4ca99-cf6d-44c5-aa1b-19d6398695ed
+ - 747b451a-1f7e-4c0a-af87-2aa5de673c5a
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:04:04.699204Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.707388Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1505"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:08 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a56a236-ce80-4dc2-b1ef-4ff2975a908a
+ - cdddf406-3f7d-4dec-b3b4-177bbc98f91b
status: 200 OK
code: 200
duration: ""
@@ -315,10 +315,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/pools
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/pools
method: POST
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720483Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644932952Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "681"
@@ -327,7 +327,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:08 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -337,7 +337,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f2d156e0-aaa9-42c5-b7af-a2df69b31095
+ - 311b1a15-b825-4156-a70b-ec61ac8ff8ff
status: 200 OK
code: 200
duration: ""
@@ -348,10 +348,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -360,7 +360,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:08 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -370,7 +370,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0457209d-2f55-49d3-87e3-c3fed66d519b
+ - 647df312-fd87-4b0d-9c9f-9687c0d3f6ca
status: 200 OK
code: 200
duration: ""
@@ -381,10 +381,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -393,7 +393,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:14 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -403,7 +403,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 243e4c93-60a7-4116-8ec7-8d804ae78b2e
+ - a4a6c072-8f23-4414-83d6-069414d5d0fe
status: 200 OK
code: 200
duration: ""
@@ -414,10 +414,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -426,7 +426,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:19 GMT
+ - Fri, 08 Dec 2023 15:58:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -436,7 +436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04510260-aac1-4fd4-8dc5-5a456ad76cf2
+ - ca8c61f7-a46c-44f3-b9d4-406cc039f700
status: 200 OK
code: 200
duration: ""
@@ -447,10 +447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -459,7 +459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:24 GMT
+ - Fri, 08 Dec 2023 15:58:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -469,7 +469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 78dc48c9-0d78-491e-9ca0-4d7fd108dcd2
+ - 5b8757a3-e95f-40a6-9037-037eda00c51f
status: 200 OK
code: 200
duration: ""
@@ -480,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -492,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:29 GMT
+ - Fri, 08 Dec 2023 15:59:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7da7734d-7a8b-49a1-9e32-1025b4c716ed
+ - 5ad86b6a-a40f-4076-af97-9083b5274eb3
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:34 GMT
+ - Fri, 08 Dec 2023 15:59:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea57b71f-9c91-4908-ac64-b4824c6dc81c
+ - c210244e-1d9d-4a64-b644-fdd733a6d888
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:39 GMT
+ - Fri, 08 Dec 2023 15:59:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3c7fcdf4-af01-46d5-a345-c988edb8cded
+ - 452459be-410d-4bfc-9d90-df46a90962c7
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:44 GMT
+ - Fri, 08 Dec 2023 15:59:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8db586f4-e3ee-4106-b673-9f0a0f43b7e3
+ - 17f3d128-d608-48a9-af3a-d934377edeb0
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:49 GMT
+ - Fri, 08 Dec 2023 15:59:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d1fbf654-9b18-4db2-888c-ab9de81690c2
+ - ad57a2ee-d40c-42dc-a000-fcfb09d74c32
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:54 GMT
+ - Fri, 08 Dec 2023 15:59:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7ef4258d-03c2-40ef-8f47-de7829ad8b9e
+ - 04d3a4a0-db97-46aa-8a0f-e36082227a5b
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:59 GMT
+ - Fri, 08 Dec 2023 15:59:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 993fa765-7536-4799-b421-fb281531a203
+ - fc0eea64-8c3a-46f7-b0b3-6c877ea738e8
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:04 GMT
+ - Fri, 08 Dec 2023 15:59:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7bbff841-f9bf-4088-94b6-a70887858686
+ - 08fc1ed6-3507-4d87-afb6-9eb1fee2b855
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:10 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eae65c80-27a2-4a33-abef-450f067d1c1f
+ - 6a132ff1-898b-4cc8-80c3-ecc110de72cf
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:15 GMT
+ - Fri, 08 Dec 2023 15:59:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9734e0ab-20eb-45d6-a374-f1aaab8e4f21
+ - 9dc4fc3b-3f57-498f-abb1-20d915f25745
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:20 GMT
+ - Fri, 08 Dec 2023 15:59:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 871d62b2-afd2-44ac-b81d-b67e2d7105ca
+ - 3b97842d-c34b-4312-9529-b8cc5349e2cd
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:25 GMT
+ - Fri, 08 Dec 2023 15:59:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8bdb496-c90d-4f62-9056-8ac2d140f4bf
+ - 67a012e5-bfe9-414c-8d1c-312086b79854
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:30 GMT
+ - Fri, 08 Dec 2023 16:00:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8ea2241-0ffb-4280-baec-e58d92772d2a
+ - bfa55fa6-3b91-4709-81a7-0a81b533eabc
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:35 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - efaf597d-3770-44ae-9637-254d3a2cb445
+ - 33bfe7a1-7663-4408-8397-789cfd8f800d
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:40 GMT
+ - Fri, 08 Dec 2023 16:00:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 60b3e7ef-3979-4c02-8a30-746fb9c351b2
+ - c5caa7a8-c1c1-466c-8c6c-1e36988144a6
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:45 GMT
+ - Fri, 08 Dec 2023 16:00:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4c085f5-bdc5-47b7-87b8-7a1e0f1b980e
+ - 828f0bc3-12ce-456a-bbcc-60f7d0da1a62
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:51 GMT
+ - Fri, 08 Dec 2023 16:00:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4119f00d-3410-4c0e-810b-1f68aaeb1f72
+ - b66b158b-44b1-4c2d-86d7-96ef62ac498b
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1053,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:56 GMT
+ - Fri, 08 Dec 2023 16:00:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f5c3f67e-c34d-42d1-a491-001a8bbc1d80
+ - d0d6e556-171a-4d15-8f1b-83b0bbfef5fb
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1086,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:01 GMT
+ - Fri, 08 Dec 2023 16:00:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a3635b65-885d-4067-87da-920ec1c4fd2f
+ - 78ea330c-fcd7-429c-9d3f-21b18662ab29
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1119,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:06 GMT
+ - Fri, 08 Dec 2023 16:01:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 179e2eee-3920-4482-9af7-0a25b76672ea
+ - 7b991e23-e4d6-4641-8661-b101806b3dd0
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1152,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:11 GMT
+ - Fri, 08 Dec 2023 16:01:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 46761e87-6b7e-4b82-8c8c-0e9c4ec0c6a7
+ - 6f875557-d334-47ef-b656-6f74600f8e63
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1185,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:16 GMT
+ - Fri, 08 Dec 2023 16:01:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce461ea6-3bab-4f66-964c-b278b2068839
+ - e263e7ec-169b-4c17-9375-6b66e7f1c1ac
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1218,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:21 GMT
+ - Fri, 08 Dec 2023 16:01:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 02e30df9-9379-4edb-a6d6-408152c47743
+ - 53b74eb6-0eb5-4f29-add9-59a30bb042ea
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:26 GMT
+ - Fri, 08 Dec 2023 16:01:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d10df4a-c88e-4be6-be62-7098cbf8fa7a
+ - ee7e5387-253a-4b26-ae38-c8d730bb1ef7
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1284,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:31 GMT
+ - Fri, 08 Dec 2023 16:01:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 095dbfef-d08a-446a-a095-bfe0f3ca8b39
+ - 4249f0f9-30eb-432b-9c90-b22ea9318f22
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1317,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:36 GMT
+ - Fri, 08 Dec 2023 16:01:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 45961c1a-ec70-478b-81b4-ecdbd867697f
+ - 7f0020ee-35f1-45db-a211-5f09aaa70de5
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1350,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:41 GMT
+ - Fri, 08 Dec 2023 16:01:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee5a8a67-f229-44ed-bae5-69df93c23a6b
+ - 075af98b-a5a4-4155-93ef-15511aa29b4d
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1383,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:46 GMT
+ - Fri, 08 Dec 2023 16:01:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fba68daa-ce95-41e4-b7e8-20a0ee9adc03
+ - 02ce64bc-a913-42e7-9bd2-bb0b1dbad939
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1416,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:51 GMT
+ - Fri, 08 Dec 2023 16:01:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eaad233a-fdbc-4fb7-86e1-5f50e3dbc82c
+ - d0f8daba-5408-4fcd-9032-2e0a34b06a33
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1449,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:56 GMT
+ - Fri, 08 Dec 2023 16:01:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aff549f5-c8b2-459c-b924-e18e03a3e480
+ - 9fe0ad41-c9cf-4b31-9775-f97bd1d850b8
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1482,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:01 GMT
+ - Fri, 08 Dec 2023 16:02:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d02e3158-f0b7-404e-bf9c-f78ce5581543
+ - 523c10ff-2e24-4dd4-b526-7460de1a807e
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:07 GMT
+ - Fri, 08 Dec 2023 16:02:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e5ecb72-8f64-4c65-bff4-0725b793d16a
+ - 1d27d793-4975-41ca-9c1b-84d28da38e05
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1548,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:12 GMT
+ - Fri, 08 Dec 2023 16:02:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f3eb68d5-3aa6-4a44-96f0-2e8ae4368580
+ - f40893a2-f7fb-4638-86f2-1396e3e12b7c
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1581,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:17 GMT
+ - Fri, 08 Dec 2023 16:02:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 051ac4b9-6ba8-4d23-8660-51703c604704
+ - 2fee51ed-f617-4b4d-8e82-6185325f980a
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1614,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:22 GMT
+ - Fri, 08 Dec 2023 16:02:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2361441-3d52-4167-924c-eba7cb74d13e
+ - b1096ac9-f7d0-4bb5-aadd-a6d4c2d56325
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1647,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:27 GMT
+ - Fri, 08 Dec 2023 16:02:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dbd37742-f76b-493a-8387-4f962d190591
+ - e1d7ca53-d949-43bc-b816-ec931075a76f
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1680,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:32 GMT
+ - Fri, 08 Dec 2023 16:02:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ed9f7fc4-d170-4f77-bf58-9cba2b21f948
+ - 076ac9e7-6dbc-424a-8421-b79fd03b1ddd
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1713,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:38 GMT
+ - Fri, 08 Dec 2023 16:02:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 644dddf3-4831-4270-84c1-3394286f1a82
+ - 4a2b8f0b-7e03-40a7-b69c-0b5cb3c25d4a
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1746,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:43 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 99877c3d-6bb8-4f9f-ae2d-b9fe53c18763
+ - 2364de12-578d-4875-ae01-45a8bd716aa8
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1779,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:48 GMT
+ - Fri, 08 Dec 2023 16:02:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 02c80ca0-9833-4b2e-b930-8f5b5735716a
+ - ac012d36-c0ab-48ab-a369-5872a6bd1aad
status: 200 OK
code: 200
duration: ""
@@ -1800,10 +1800,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1812,7 +1812,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:53 GMT
+ - Fri, 08 Dec 2023 16:02:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 324e6a2b-aa25-41c2-afb3-ab789ee17f6e
+ - df3d9b13-67c5-45df-ac51-0faf2f2f4096
status: 200 OK
code: 200
duration: ""
@@ -1833,10 +1833,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1845,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:58 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fe673bf9-ad0b-4e93-a1ea-ec452daf82cf
+ - 971ca2db-70a5-4a3d-a195-6e6e52ba9424
status: 200 OK
code: 200
duration: ""
@@ -1866,10 +1866,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1878,7 +1878,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:03 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 61b6fe9f-64f5-4982-88ca-9f185242a603
+ - 713bd714-7f9f-4f82-8fa3-a5446e402a69
status: 200 OK
code: 200
duration: ""
@@ -1899,10 +1899,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1911,7 +1911,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:08 GMT
+ - Fri, 08 Dec 2023 16:03:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - af83417b-69ca-45b9-9697-cb281293d1a1
+ - a8469702-12fa-47d9-80eb-ce77cc0f004c
status: 200 OK
code: 200
duration: ""
@@ -1932,10 +1932,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1944,7 +1944,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:14 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1954,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce7f18d6-7f29-4e1f-92f8-c9c7f5da8ed0
+ - c94d58b8-4cb0-4544-88da-ec928aad8667
status: 200 OK
code: 200
duration: ""
@@ -1965,10 +1965,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -1977,7 +1977,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:19 GMT
+ - Fri, 08 Dec 2023 16:03:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1987,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1497d641-14e6-43b3-bc84-e3db7cb40531
+ - 2fb39a91-f2f3-4f52-a659-650a529c7467
status: 200 OK
code: 200
duration: ""
@@ -1998,10 +1998,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -2010,7 +2010,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:24 GMT
+ - Fri, 08 Dec 2023 16:03:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2020,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9335077e-7054-4f6c-853d-3336a036630a
+ - 70b828df-b896-427e-9696-d4a315457671
status: 200 OK
code: 200
duration: ""
@@ -2031,10 +2031,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -2043,7 +2043,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:29 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2053,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a2d08d4-c2bb-4284-a19b-a490b9569237
+ - c2a622c1-5a09-414e-a326-d1029d8da77f
status: 200 OK
code: 200
duration: ""
@@ -2064,10 +2064,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -2076,7 +2076,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:34 GMT
+ - Fri, 08 Dec 2023 16:03:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2086,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 91a92da2-889d-42f7-85cd-63087c2b5c80
+ - 238b9665-0e2b-40e0-9197-706778dcaa26
status: 200 OK
code: 200
duration: ""
@@ -2097,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -2109,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:39 GMT
+ - Fri, 08 Dec 2023 16:03:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2119,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1a0d2c38-f008-4bc1-ad36-3dd018e7cb7a
+ - 080be5e4-387f-4aa3-8a5d-de951bae9d1b
status: 200 OK
code: 200
duration: ""
@@ -2130,10 +2130,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:04:08.620720Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -2142,7 +2142,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:45 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2152,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6632915f-1930-4405-9deb-ee301cba0b6e
+ - 86ac191e-70da-4bed-b7a3-145b886718d3
status: 200 OK
code: 200
duration: ""
@@ -2163,52 +2163,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T15:58:38.644933Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "676"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9babb750-4f7f-4955-8215-32c273faa438
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1497"
+ - "678"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2218,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66de6ea3-adf6-4a4f-8caf-75a310d437c1
+ - 0ad562d3-a920-4985-8b08-beee42133509
status: 200 OK
code: 200
duration: ""
@@ -2229,10 +2196,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "676"
@@ -2241,40 +2208,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8eee218e-4035-4b22-bc35-2688599b711c
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
- method: GET
- response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:08:48.018318Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "658"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2284,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aec3e8f6-7407-4158-94ab-6a1658b7b519
+ - 4a06b951-76ab-405a-89d6-d3f91a47ddcb
status: 200 OK
code: 200
duration: ""
@@ -2295,10 +2229,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -2307,7 +2241,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2317,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f0eae52d-242d-430e-8bfd-79e4a2018eba
+ - 918e13c8-ebb0-44b6-9d58-14dd3a2ec2ec
status: 200 OK
code: 200
duration: ""
@@ -2328,10 +2262,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "676"
@@ -2340,7 +2274,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2350,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e82f101-3f5e-4f5b-9c80-a27b4b8ed8df
+ - c73c7816-131e-473f-8423-ede50d010aa8
status: 200 OK
code: 200
duration: ""
@@ -2361,10 +2295,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:08:48.018318Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:48.790734Z"}],"total_count":1}'
headers:
Content-Length:
- "658"
@@ -2373,77 +2307,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dd782f87-e67f-40f1-8526-e04b3532756e
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5290ccc5-bdec-4b47-b79a-123f4a8ef928
- method: GET
- response:
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
- scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
- mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-11-13T14:06:16.374422+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minimal-test-pool-minimal-74fccf","id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:4754:201::1","gateway":"2001:bc8:4754:201::","netmask":"64"},"location":{"cluster_id":"6","hypervisor_id":"201","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2d:51:37","maintenances":[],"modification_date":"2023-11-13T14:06:33.031322+00:00","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.12.178.131","private_nics":[{"creation_date":"2023-11-13T14:06:17.095910+00:00","id":"d016aa45-64a2-4808-8d5b-dce86d659105","mac_address":"02:00:00:14:bd:a6","modification_date":"2023-11-13T14:06:18.027408+00:00","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","server_id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.158.79.120","dynamic":true,"family":"inet","gateway":null,"id":"78d361b7-6c7d-44f0-9176-ad85c1726d1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.79.120","dynamic":true,"family":"inet","gateway":null,"id":"78d361b7-6c7d-44f0-9176-ad85c1726d1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"0faeb0d5-b545-40e4-a78d-4744d30c1548","name":"kubernetes
- 69985695-06c7-464a-833c-3d3965cafaa9"},"state":"running","state_detail":"booting
- kernel","tags":["kapsule=69985695-06c7-464a-833c-3d3965cafaa9","pool=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","pool-name=test-pool-minimal","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","default","node=74fccfea-180b-4591-8619-7825e8a1b485"],"volumes":{"0":{"boot":false,"creation_date":"2023-11-13T14:06:16.374422+00:00","export_uri":null,"id":"5cba8c86-a940-4811-a912-8d2071e8519b","modification_date":"2023-11-13T14:06:16.374422+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","name":"scw-test-pool-minimal-test-pool-minimal-74fccf"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "4018"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ee0d7518-f330-44c5-b2b1-13c725d30f16
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
- method: GET
- response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
- headers:
- Content-Length:
- - "718"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2453,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2fb75cb3-c7da-43fb-9bb0-bab88a32f334
+ - 95d51fba-61eb-4cb1-b4a4-83a0afdbf355
status: 200 OK
code: 200
duration: ""
@@ -2464,10 +2328,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -2476,7 +2340,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2486,7 +2350,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1d703572-fa47-42ff-b3d9-330a8514061d
+ - 6bf2f036-b651-4c80-8c07-91e4a15ecaef
status: 200 OK
code: 200
duration: ""
@@ -2497,19 +2361,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSUmQwNUdiMWhFVkUxNlRWUkZlRTFxUlRCTlJGRjNUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRpdG9Da1JtV1hWRE1WTnRkME5ZWlRCeWVGRjZNRWREYWxCd1ZWRlplRlJ4WTBka1lYVjZhSE0yT1RCVlkzWnpabWRUVDJsdGJHVkRjbmRVVm5aS1pYTklURlFLY21GclpFa3JkRTVQWmtOMlkzQnFNbVZQUkZSUFlXNVZjVzFvYjBJNVQzcGtVbnBwZGxaaGJUTTJhMkZJYjFGeU1HRlZjbXhaTUZvdllTOURLMDkzYWdwa1VscDFUMEpFVmpBdmVsWklVR2haV0hwbWFYSlNVR0pJTHpOWlJrMU5ia0ZpZFRRMGJHNTVSRFJGTUVscVZXWm1kSHBKTDJ4VVZXZFpOV1pTVkRrMENtNUpSR3d4V1UwMVEyOW5SVkpuVVVOdmRXY3lia1EwWTFCUVpFcEZRa3BIVDNOellWaFpkM3B1UVVKc1NWUXpURnBrU1N0MWVpOXFTSGhyVHpWcmVWWUthWGRPUTFNeGFVdzJUR0UwVHpsWVdWSXZiSGxTWkRSbFMxRTNPV1J3ZGtOQ1NHUndlRzVGUXpKR2FYRXdNRGNyZVZkbmRtUXJaV3c0T1VNcldXSnZXUXBXVHpoMWJ6TnNSRTAxWlZCellUaFVPRkJWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpRTlZwVFJ6SnpNVTh4V1N0MVMzWnpXRkJMUVZrM1ZtWllORUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYlU5R05HUkRieTlWU2tWR2RubGFUVzlLVmt4TFRraGlWemh0VTFwdmJqRk5kRWN5Y0V4c01UQnNUVm81VkdwRE1ncE1jV2RsTWpkNlRYUmtPSEZ1U1M5U2VUbG9UekJrWTJkWU9ETm1jMVV5YlZaNGRHb3dZamxYVURGMGFrdzBTbkJ4ZFVGblNFODBhbVZzZG1WV1kyZGpDbFZNV1ZabmVGUmFLMVEzTlZGTlluZHVjRmREVHpRdllXUklaaXRzVEZGUmNVZFNLMFJpWnl0NlUyTTBObGx4WlZOQkwydFVOemx3ZFcxa1MyRmxVRkFLVTB4elpWZENUVGxaWW1WYU1FSmtTSHBCV0c1bVFYSlZXVEpXZW10d1Fua3JZemRTYjB4Q2IyWmhVR015VFhWRWFXOUNibnBYWlc0NVEyOVZLMWhYVEFwUGFpdERXbVJWU0hkclMyZzNTR3A1U2pSd2RXZDRRMFUwZHpKVWJ5dE1SR1Z4UVU5UlVtbFNhVEJ4ZGtGNlNIZ3ZWRVpvYlV4Q1R6VlVUV1o1TlhFMkNrRlhVbkJ0WkdNeFNXVjBkbVpYWTNaalNEVkVhRkJOV0VNcmVEQlhhazU0YlVWTmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4NTY5NS0wNmM3LTQ2NGEtODMzYy0zZDM5NjVjYWZhYTkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYYll5dk9xWEdZclJ2NmdFTHViRG82ZVo3UkF6VUY1MTNMdFBwTkhMeHpsNkZQZEdGc3owcGdKag==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2630"
+ - "676"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2519,7 +2383,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65433c6d-1e36-4c47-96ae-bc6f773edb7a
+ - 74dbf27f-75e9-4612-9469-f8b0689991e8
status: 200 OK
code: 200
duration: ""
@@ -2530,19 +2394,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:48.790734Z"}],"total_count":1}'
headers:
Content-Length:
- - "676"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2552,7 +2416,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 085efb93-7beb-45b4-8d8d-056ec0786bcc
+ - a5486f99-a463-46a7-995a-1d2aab7c42ae
status: 200 OK
code: 200
duration: ""
@@ -2563,19 +2427,23 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0f5f50f5-ab54-478d-b789-ccaa1f5be1db
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:08:48.018318Z"}],"total_count":1}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
+ scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
+ mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-12-08T16:01:44.682570+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minimal-test-pool-minimal-9794f8","id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:648:203::1","gateway":"2001:bc8:648:203::","netmask":"64"},"location":{"cluster_id":"44","hypervisor_id":"103","node_id":"4","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:31:84:bf","maintenances":[],"modification_date":"2023-12-08T16:02:01.882391+00:00","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.24.135","private_nics":[{"creation_date":"2023-12-08T16:01:45.248008+00:00","id":"5f87e53b-3611-4424-a199-6b9ba8086391","mac_address":"02:00:00:15:4e:bb","modification_date":"2023-12-08T16:01:46.191727+00:00","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","server_id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"1d213504-3ba8-468c-85a2-f1c7d8c1e605","name":"kubernetes
+ da695ae6-a200-447a-9cd8-424f2403dbdb"},"state":"running","state_detail":"booting
+ kernel","tags":["kapsule=da695ae6-a200-447a-9cd8-424f2403dbdb","pool=1e57d71f-ace5-442e-899b-3b00963de302","pool-name=test-pool-minimal","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","default","node=9794f8ca-5b5e-40b5-868d-5005cc8f9151"],"volumes":{"0":{"boot":false,"creation_date":"2023-12-08T16:01:44.682570+00:00","export_uri":null,"id":"c1cb5b19-0e63-4a49-9971-f205823691c9","modification_date":"2023-12-08T16:01:44.682570+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","name":"scw-test-pool-minimal-test-pool-minimal-9794f8"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "658"
+ - "4016"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2585,7 +2453,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c182fd1-6ecf-49da-989a-f6553ca067b8
+ - ecd6e6fc-2cdc-499e-a4f2-2ac786aef3d6
status: 200 OK
code: 200
duration: ""
@@ -2596,10 +2464,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "718"
@@ -2608,7 +2476,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2618,7 +2486,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d7c13d60-1b4e-49a8-bc9b-65c582d95810
+ - 2c668a4b-f36c-4000-99cb-2f545420bebc
status: 200 OK
code: 200
duration: ""
@@ -2629,10 +2497,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -2641,7 +2509,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2651,7 +2519,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - db682381-51ae-45b7-bd56-f0a3a5e841c1
+ - 543178dc-990d-482e-8930-2aec57b4d8a2
status: 200 OK
code: 200
duration: ""
@@ -2662,10 +2530,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSUmQwNUdiMWhFVkUxNlRWUkZlRTFxUlRCTlJGRjNUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRpdG9Da1JtV1hWRE1WTnRkME5ZWlRCeWVGRjZNRWREYWxCd1ZWRlplRlJ4WTBka1lYVjZhSE0yT1RCVlkzWnpabWRUVDJsdGJHVkRjbmRVVm5aS1pYTklURlFLY21GclpFa3JkRTVQWmtOMlkzQnFNbVZQUkZSUFlXNVZjVzFvYjBJNVQzcGtVbnBwZGxaaGJUTTJhMkZJYjFGeU1HRlZjbXhaTUZvdllTOURLMDkzYWdwa1VscDFUMEpFVmpBdmVsWklVR2haV0hwbWFYSlNVR0pJTHpOWlJrMU5ia0ZpZFRRMGJHNTVSRFJGTUVscVZXWm1kSHBKTDJ4VVZXZFpOV1pTVkRrMENtNUpSR3d4V1UwMVEyOW5SVkpuVVVOdmRXY3lia1EwWTFCUVpFcEZRa3BIVDNOellWaFpkM3B1UVVKc1NWUXpURnBrU1N0MWVpOXFTSGhyVHpWcmVWWUthWGRPUTFNeGFVdzJUR0UwVHpsWVdWSXZiSGxTWkRSbFMxRTNPV1J3ZGtOQ1NHUndlRzVGUXpKR2FYRXdNRGNyZVZkbmRtUXJaV3c0T1VNcldXSnZXUXBXVHpoMWJ6TnNSRTAxWlZCellUaFVPRkJWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpRTlZwVFJ6SnpNVTh4V1N0MVMzWnpXRkJMUVZrM1ZtWllORUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYlU5R05HUkRieTlWU2tWR2RubGFUVzlLVmt4TFRraGlWemh0VTFwdmJqRk5kRWN5Y0V4c01UQnNUVm81VkdwRE1ncE1jV2RsTWpkNlRYUmtPSEZ1U1M5U2VUbG9UekJrWTJkWU9ETm1jMVV5YlZaNGRHb3dZamxYVURGMGFrdzBTbkJ4ZFVGblNFODBhbVZzZG1WV1kyZGpDbFZNV1ZabmVGUmFLMVEzTlZGTlluZHVjRmREVHpRdllXUklaaXRzVEZGUmNVZFNLMFJpWnl0NlUyTTBObGx4WlZOQkwydFVOemx3ZFcxa1MyRmxVRkFLVTB4elpWZENUVGxaWW1WYU1FSmtTSHBCV0c1bVFYSlZXVEpXZW10d1Fua3JZemRTYjB4Q2IyWmhVR015VFhWRWFXOUNibnBYWlc0NVEyOVZLMWhYVEFwUGFpdERXbVJWU0hkclMyZzNTR3A1U2pSd2RXZDRRMFUwZHpKVWJ5dE1SR1Z4UVU5UlVtbFNhVEJ4ZGtGNlNIZ3ZWRVpvYlV4Q1R6VlVUV1o1TlhFMkNrRlhVbkJ0WkdNeFNXVjBkbVpYWTNaalNEVkVhRkJOV0VNcmVEQlhhazU0YlVWTmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4NTY5NS0wNmM3LTQ2NGEtODMzYy0zZDM5NjVjYWZhYTkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYYll5dk9xWEdZclJ2NmdFTHViRG82ZVo3UkF6VUY1MTNMdFBwTkhMeHpsNkZQZEdGc3owcGdKag==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVGRnJDa1ZHWW5OUVUwdE1Oa2RZTDFOeWVuUldOVkpaZHk5TlNVdHVLMkZoUW5CNWJYcE1Vbk16U0VKT2NGVXZMMjlKVEdwd2JYTlRTRGhTVmsxa1oyTm9hRzBLZFd4dFNubFRRMFpVZFhsdFFUZG5aV0pzVVN0R00wbHFWRFpuVmxSM2JXNW5ObkpPUWsxNVVqZFNiMWswUkZZMldXUk1TVzl2TWxvNVMyWnlaemRzT0FwSFYwY3pjMVJwVm10eFlWcDFaMVZKUzBoWmFUUmlkVWN4VFc4d1RGcGtTM3BEU0VKYWFHUXZOMFppWVdoWWJUUXlRVTVRWWtGdk5qa3JVbkIxTW5wekNrRmtkR2hDV1c4dlNFeFNZVWxNTHpaeE1HTTJjVUZpUVRNMlpVbFBVMHcyWm1WRFpuVmxPVTVMYWpOc1JIZEdOR05OYURoMGNVZExNaXRzTmtaRlVGa0tkV1Z1YmxCeFpYbHFjM0JJTm0xeVZ6RlVaRzlDYVV0UVYzWkdXbFV3U1N0NE1WWTRUWGRTUzJobWVYY3JNMEZUTW5FeE5rbE5VVkZITUdGQ2VUTmxad3BGY21ReGEwc3pUMFJZUlVWaGNDdG1Na05OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKZDI1dFYwRlpMMFZXV25CRWFWSmlSRnBHVURoMFJWRnVSM05OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEUldOc1dITmhVSHB0WVhOUmRERkxUR1paWm1oNlNIQnNjMWhoUkdOdWVIVnFZVmd4ZGxKQmNIUjNXbUZTWjNwck1BcDVjV3AwWW1kMGJYSm9NRUl2SzNaMk9GSlZRMjV2UTJoaFJqWmpURzh5TUhBMldFcFZNazQxWkZkSmNtNWFhV3R0U1U0NFNtVnhMeXRDVFVVeFl5OUdDa1YyZEhaa1dtUlhNV04xV1RoNVRIQkhlSHBuTDNkbU0weFFTVnBxYUZReVRqTlRNMlpWYjBScFJVdHdNSHA1UWk5bVNFaDBlakk1YjFkTlpWQnhjM2tLUWxkVGFFTm5SbHBQSzJFMVozQTVlQzh6Y3paQ09FTnZhWFVyWm1sb01rMVpWWFpNVkUxQ1N6aEhRM292WXpaS2JtRmtOV0poY1ZaU1JuaHpWV3QxYVFwTFRsaGhhelJQWVZZeVkyTnROMnBpZUdwMVRVcHNlalZtYVhoQldrNWtOVm94T0VSU09XZ3piRUkzVDJGVUx6VTVWVkZIVUVWTFZteFVhRU01VTNNNENrcG9MMEpuVWk5aldVMDVOa0U1YzJZNWRsSnBlVTQ1T1ZOQlRUUnVZemhoUWxvdmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYTY5NWFlNi1hMjAwLTQ0N2EtOWNkOC00MjRmMjQwM2RiZGIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBoMlRlZERiY0ZYVnFYdHhtOW0xQW1rb3hkbElzdmJJN0RNOEViZVRTbXM0ZjNWZzhDdU8zMHpaSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -2674,7 +2542,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:52 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2684,7 +2552,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b60edf6-0383-41e3-a158-9dc115e4e559
+ - 01e7f9c0-e835-42a8-9245-1f75f691349d
status: 200 OK
code: 200
duration: ""
@@ -2695,10 +2563,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "676"
@@ -2707,7 +2575,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:52 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2717,7 +2585,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d885b9d7-40df-41f8-9d08-02be5e7f33dd
+ - 3e7eb20b-0088-46e1-bdac-bf3462580cd6
status: 200 OK
code: 200
duration: ""
@@ -2728,10 +2596,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:08:48.018318Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:48.790734Z"}],"total_count":1}'
headers:
Content-Length:
- "658"
@@ -2740,7 +2608,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:52 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2750,7 +2618,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04cc0f70-ed56-4986-98b8-d8f64e289426
+ - 99a1ad98-8ae9-4a00-a1eb-2d66032262de
status: 200 OK
code: 200
duration: ""
@@ -2761,54 +2629,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1497"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:52 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 11254e67-9abf-4319-ad61-6a4ad572cff4
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"name":"test-pool-minimal-2","node_type":"gp1_xs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/pools
- method: POST
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317420Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "683"
+ - "718"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:53 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2818,7 +2651,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5979c9f1-66d5-4de0-ad58-480e0b928cce
+ - 07912e8a-c681-4d1d-98d1-536a514e4ce0
status: 200 OK
code: 200
duration: ""
@@ -2829,19 +2662,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "680"
+ - "1497"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:53 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2851,7 +2684,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9cf26335-e24e-4161-aa11-de0d5fcdf637
+ - 8245627b-8aaa-4e36-8f27-ddebc86f4ca7
status: 200 OK
code: 200
duration: ""
@@ -2862,19 +2695,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/kubeconfig
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVGRnJDa1ZHWW5OUVUwdE1Oa2RZTDFOeWVuUldOVkpaZHk5TlNVdHVLMkZoUW5CNWJYcE1Vbk16U0VKT2NGVXZMMjlKVEdwd2JYTlRTRGhTVmsxa1oyTm9hRzBLZFd4dFNubFRRMFpVZFhsdFFUZG5aV0pzVVN0R00wbHFWRFpuVmxSM2JXNW5ObkpPUWsxNVVqZFNiMWswUkZZMldXUk1TVzl2TWxvNVMyWnlaemRzT0FwSFYwY3pjMVJwVm10eFlWcDFaMVZKUzBoWmFUUmlkVWN4VFc4d1RGcGtTM3BEU0VKYWFHUXZOMFppWVdoWWJUUXlRVTVRWWtGdk5qa3JVbkIxTW5wekNrRmtkR2hDV1c4dlNFeFNZVWxNTHpaeE1HTTJjVUZpUVRNMlpVbFBVMHcyWm1WRFpuVmxPVTVMYWpOc1JIZEdOR05OYURoMGNVZExNaXRzTmtaRlVGa0tkV1Z1YmxCeFpYbHFjM0JJTm0xeVZ6RlVaRzlDYVV0UVYzWkdXbFV3U1N0NE1WWTRUWGRTUzJobWVYY3JNMEZUTW5FeE5rbE5VVkZITUdGQ2VUTmxad3BGY21ReGEwc3pUMFJZUlVWaGNDdG1Na05OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKZDI1dFYwRlpMMFZXV25CRWFWSmlSRnBHVURoMFJWRnVSM05OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEUldOc1dITmhVSHB0WVhOUmRERkxUR1paWm1oNlNIQnNjMWhoUkdOdWVIVnFZVmd4ZGxKQmNIUjNXbUZTWjNwck1BcDVjV3AwWW1kMGJYSm9NRUl2SzNaMk9GSlZRMjV2UTJoaFJqWmpURzh5TUhBMldFcFZNazQxWkZkSmNtNWFhV3R0U1U0NFNtVnhMeXRDVFVVeFl5OUdDa1YyZEhaa1dtUlhNV04xV1RoNVRIQkhlSHBuTDNkbU0weFFTVnBxYUZReVRqTlRNMlpWYjBScFJVdHdNSHA1UWk5bVNFaDBlakk1YjFkTlpWQnhjM2tLUWxkVGFFTm5SbHBQSzJFMVozQTVlQzh6Y3paQ09FTnZhWFVyWm1sb01rMVpWWFpNVkUxQ1N6aEhRM292WXpaS2JtRmtOV0poY1ZaU1JuaHpWV3QxYVFwTFRsaGhhelJQWVZZeVkyTnROMnBpZUdwMVRVcHNlalZtYVhoQldrNWtOVm94T0VSU09XZ3piRUkzVDJGVUx6VTVWVkZIVUVWTFZteFVhRU01VTNNNENrcG9MMEpuVWk5aldVMDVOa0U1YzJZNWRsSnBlVTQ1T1ZOQlRUUnVZemhoUWxvdmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYTY5NWFlNi1hMjAwLTQ0N2EtOWNkOC00MjRmMjQwM2RiZGIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBoMlRlZERiY0ZYVnFYdHhtOW0xQW1rb3hkbElzdmJJN0RNOEViZVRTbXM0ZjNWZzhDdU8zMHpaSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "680"
+ - "2630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:58 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2884,7 +2717,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 792caa36-eace-4f7d-937a-f9a36c1d453a
+ - 87c07aa4-8c4c-46fe-b446-8c65e13167cf
status: 200 OK
code: 200
duration: ""
@@ -2895,19 +2728,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "680"
+ - "676"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:03 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2917,7 +2750,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f343558a-1f99-41b7-bf9a-e431c3b50668
+ - bb4c51c8-6e3c-4b26-9294-f6808ed6e21a
status: 200 OK
code: 200
duration: ""
@@ -2928,19 +2761,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:48.790734Z"}],"total_count":1}'
headers:
Content-Length:
- - "680"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:08 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2950,7 +2783,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f59f9264-50f2-4673-9fd4-85726f0c72fa
+ - a7ade5b4-898f-4e21-8871-318d8d11f030
status: 200 OK
code: 200
duration: ""
@@ -2961,19 +2794,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "680"
+ - "1497"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:13 GMT
+ - Fri, 08 Dec 2023 16:03:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2983,63 +2816,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a832dae7-7bd4-49e2-96b0-3075b81dcefa
+ - 22361f92-b887-44bd-86d8-f60d4a19ea01
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"name":"test-pool-minimal-2","node_type":"gp1_xs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
form: {}
headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "680"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
- Date:
- - Mon, 13 Nov 2023 14:09:18 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3bffea91-661b-40ef-9681-78c19ab24971
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/pools
+ method: POST
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540892608Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "680"
+ - "683"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:23 GMT
+ - Fri, 08 Dec 2023 16:03:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3049,7 +2851,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d6ae572-cf1c-4087-8378-5af597af05d4
+ - d75f92fc-af51-45ce-aaf4-952a23736556
status: 200 OK
code: 200
duration: ""
@@ -3060,10 +2862,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3072,7 +2874,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:28 GMT
+ - Fri, 08 Dec 2023 16:03:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3082,7 +2884,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f639c7d4-8778-4a65-a51e-0259a26886ee
+ - 290d1f29-2d5a-49e8-afd3-ae2979b1732c
status: 200 OK
code: 200
duration: ""
@@ -3093,10 +2895,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3105,7 +2907,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:33 GMT
+ - Fri, 08 Dec 2023 16:04:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3115,7 +2917,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 327ae6c7-ad05-4fe9-9c66-76259825c0e6
+ - 932a078b-6934-4972-80a4-8cc4cf7fd4c6
status: 200 OK
code: 200
duration: ""
@@ -3126,10 +2928,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3138,7 +2940,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:38 GMT
+ - Fri, 08 Dec 2023 16:04:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3148,7 +2950,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9101c252-7000-4174-862c-5a3f4227a741
+ - 7ccc36e4-9e08-45d7-8eed-5fc9d2207434
status: 200 OK
code: 200
duration: ""
@@ -3159,10 +2961,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3171,7 +2973,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:43 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3181,7 +2983,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 28c00e2a-f3c6-40fc-8fd9-56c555b184b7
+ - 9125e139-6a20-4bc8-88c1-2d9afa8aec2f
status: 200 OK
code: 200
duration: ""
@@ -3192,10 +2994,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3204,7 +3006,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:49 GMT
+ - Fri, 08 Dec 2023 16:04:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3214,7 +3016,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5d4e387e-41b0-4478-8fc3-2967f2c74ae5
+ - a5aa58b8-5eb7-4499-8ab4-00ce21cec30c
status: 200 OK
code: 200
duration: ""
@@ -3225,10 +3027,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3237,7 +3039,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:54 GMT
+ - Fri, 08 Dec 2023 16:04:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3247,7 +3049,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3978c0d5-6d44-41cf-b821-6e716fa13340
+ - 5435f135-7dea-4671-8a6d-6daa87c3c7c9
status: 200 OK
code: 200
duration: ""
@@ -3258,10 +3060,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3270,7 +3072,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:09:59 GMT
+ - Fri, 08 Dec 2023 16:04:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3280,7 +3082,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ffc88169-bf7f-4a74-b555-986134309261
+ - 4e98fe6d-2183-46ea-9365-0ec701940f25
status: 200 OK
code: 200
duration: ""
@@ -3291,10 +3093,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3303,7 +3105,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:04 GMT
+ - Fri, 08 Dec 2023 16:04:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3313,7 +3115,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cbe29768-4b1a-4e23-a3ca-75fe9a46eeb5
+ - afa58f61-75d1-441d-bf73-113d9172c011
status: 200 OK
code: 200
duration: ""
@@ -3324,10 +3126,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3336,7 +3138,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:09 GMT
+ - Fri, 08 Dec 2023 16:04:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3346,7 +3148,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d5cc6a3c-5e00-4d1b-9eba-611fb6d40173
+ - 2efb1e47-9ed4-4702-ab98-e25a000b9728
status: 200 OK
code: 200
duration: ""
@@ -3357,10 +3159,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3369,7 +3171,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:14 GMT
+ - Fri, 08 Dec 2023 16:04:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3379,7 +3181,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7361f7c2-35b8-4eea-912e-b4ba38c3a773
+ - b15ce7c7-564e-4fca-b932-9a6eff7cd4ce
status: 200 OK
code: 200
duration: ""
@@ -3390,10 +3192,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3402,7 +3204,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:19 GMT
+ - Fri, 08 Dec 2023 16:04:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3412,7 +3214,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b02ba1e-57af-49f4-ae99-1c5374fd49d7
+ - 4164e459-eb5e-4a3f-906f-4fcbe4f4af07
status: 200 OK
code: 200
duration: ""
@@ -3423,10 +3225,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3435,7 +3237,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:24 GMT
+ - Fri, 08 Dec 2023 16:04:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3445,7 +3247,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e93b95f-e4cf-485d-ab56-b0955d212f2f
+ - f92993ca-2a7e-4dd7-8798-ba34c13cb206
status: 200 OK
code: 200
duration: ""
@@ -3456,10 +3258,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3468,7 +3270,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:29 GMT
+ - Fri, 08 Dec 2023 16:04:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3478,7 +3280,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32e36379-fd50-4ec8-9090-e906e8412c0b
+ - 05caf2ed-26a4-4955-ae52-067de8f50417
status: 200 OK
code: 200
duration: ""
@@ -3489,10 +3291,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3501,7 +3303,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:34 GMT
+ - Fri, 08 Dec 2023 16:05:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3511,7 +3313,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7f9d827f-1c36-44c0-8556-663facf60b8c
+ - a60b85a4-c857-424b-bd08-2a55d9e59db0
status: 200 OK
code: 200
duration: ""
@@ -3522,10 +3324,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3534,7 +3336,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:39 GMT
+ - Fri, 08 Dec 2023 16:05:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3544,7 +3346,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4057678c-02d1-4254-92fe-ef3a0775519a
+ - 4b243c65-3932-4d67-b595-f9f9fac072d8
status: 200 OK
code: 200
duration: ""
@@ -3555,10 +3357,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3567,7 +3369,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:45 GMT
+ - Fri, 08 Dec 2023 16:05:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3577,7 +3379,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 83b908d3-503b-43e6-9605-29366913e7de
+ - af94b9a2-44bd-40db-a44a-8a8a10a7694e
status: 200 OK
code: 200
duration: ""
@@ -3588,10 +3390,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3600,7 +3402,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:50 GMT
+ - Fri, 08 Dec 2023 16:05:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3610,7 +3412,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ec21fe3-c099-4488-9f6d-d70430ceccbf
+ - ad2449ea-2902-4c6b-9c17-2d99116eec83
status: 200 OK
code: 200
duration: ""
@@ -3621,10 +3423,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3633,7 +3435,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:10:55 GMT
+ - Fri, 08 Dec 2023 16:05:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3643,7 +3445,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5111ab4d-3720-46f2-b952-1bb0a4f649f0
+ - 03bdbe3c-a7a3-4c1f-8d1f-b6fcefc49aca
status: 200 OK
code: 200
duration: ""
@@ -3654,10 +3456,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3666,7 +3468,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:00 GMT
+ - Fri, 08 Dec 2023 16:05:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3676,7 +3478,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 340c0ca4-5efb-4edc-8dac-a7edca84794b
+ - 181ff459-7610-4fdc-9aca-37349462e53d
status: 200 OK
code: 200
duration: ""
@@ -3687,10 +3489,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3699,7 +3501,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:05 GMT
+ - Fri, 08 Dec 2023 16:05:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3709,7 +3511,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 91aa3da7-ffcb-4cb9-ad8e-9498441034fe
+ - 3a51e9d3-59e2-478a-bef3-0637c4513a13
status: 200 OK
code: 200
duration: ""
@@ -3720,10 +3522,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3732,7 +3534,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:10 GMT
+ - Fri, 08 Dec 2023 16:05:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3742,7 +3544,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1df02f7d-7bfe-4ec6-a82f-c1cdaa847184
+ - 8d8a299b-0428-489c-9049-0cae12cab6ff
status: 200 OK
code: 200
duration: ""
@@ -3753,10 +3555,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3765,7 +3567,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:15 GMT
+ - Fri, 08 Dec 2023 16:05:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3775,7 +3577,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 91d946be-5f5b-44cb-9294-67c1f537fadb
+ - 0000ed93-c617-4f9c-993c-6fd22c80457a
status: 200 OK
code: 200
duration: ""
@@ -3786,10 +3588,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3798,7 +3600,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:20 GMT
+ - Fri, 08 Dec 2023 16:05:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3808,7 +3610,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 640d1f8c-241c-4f93-889f-64fc79d7f4d8
+ - 9e49416e-585c-4c7d-b5e8-172d3fc1d2be
status: 200 OK
code: 200
duration: ""
@@ -3819,10 +3621,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3831,7 +3633,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:25 GMT
+ - Fri, 08 Dec 2023 16:05:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3841,7 +3643,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 42ec2237-2018-4ea9-b240-fda0959555a7
+ - 9a95cd70-5983-4779-bcfd-2b99ca9c8c9a
status: 200 OK
code: 200
duration: ""
@@ -3852,10 +3654,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:03:55.540893Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "680"
@@ -3864,7 +3666,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:31 GMT
+ - Fri, 08 Dec 2023 16:05:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3874,7 +3676,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e70e9172-88b6-4d85-8bdd-601dc6db1972
+ - 01fbbfac-7cb9-4723-9d76-c65e19470ca4
status: 200 OK
code: 200
duration: ""
@@ -3885,19 +3687,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:05:57.243861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "680"
+ - "678"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:36 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3907,7 +3709,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ece9556-708a-4d60-b06d-4776b5e5bcf8
+ - 3f8ea755-0504-499a-a606-735dcd43238d
status: 200 OK
code: 200
duration: ""
@@ -3918,19 +3720,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:05:57.243861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "680"
+ - "678"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:41 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3940,7 +3742,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8bd3e5f-60d0-4058-953c-c7d9d045ef90
+ - f25a18a1-6e25-423b-9666-181d483e096b
status: 200 OK
code: 200
duration: ""
@@ -3951,19 +3753,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=524396f8-90bf-4fb9-addc-0738adf843af&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:56.252783Z","error_message":null,"id":"3be2f364-b638-4c0e-a5d5-f7662dbf2f59","name":"scw-test-pool-minima-test-pool-minimal--3be2f3","pool_id":"524396f8-90bf-4fb9-addc-0738adf843af","provider_id":"scaleway://instance/fr-par-1/3242c0d8-a56a-4f0b-b5b7-62776c91ea74","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.228976Z"}],"total_count":1}'
headers:
Content-Length:
- - "680"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:46 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3973,7 +3775,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2a52141-81d0-45fe-8d5a-ef983b9bfc5e
+ - 424b7c59-ad9d-4319-a45c-dbaec720d81e
status: 200 OK
code: 200
duration: ""
@@ -3984,19 +3786,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "680"
+ - "1497"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:51 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4006,7 +3808,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a2ea02ef-8fa3-4f12-b28a-592a275f2a62
+ - 70a91745-ac11-4767-bb7d-f63ad2ac735d
status: 200 OK
code: 200
duration: ""
@@ -4017,19 +3819,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:05:57.243861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "680"
+ - "678"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:11:56 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4039,7 +3841,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e59c8ee2-8d80-4f49-ac1e-bd5759714c4d
+ - 615e3cfb-9f5a-4213-9b5b-255726fba758
status: 200 OK
code: 200
duration: ""
@@ -4050,19 +3852,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.193711Z"}],"total_count":1}'
headers:
Content-Length:
- - "680"
+ - "688"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:01 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4072,7 +3874,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b211441a-fe04-4a8e-8751-9bc7c851e9d8
+ - 6c6a05b7-fe37-424a-b7d0-f3a4c2a80799
status: 200 OK
code: 200
duration: ""
@@ -4083,19 +3885,23 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0f5f50f5-ab54-478d-b789-ccaa1f5be1db
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:08:52.889317Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
+ scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
+ mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-12-08T16:01:44.682570+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minimal-test-pool-minimal-9794f8","id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:648:203::1","gateway":"2001:bc8:648:203::","netmask":"64"},"location":{"cluster_id":"44","hypervisor_id":"103","node_id":"4","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:31:84:bf","maintenances":[],"modification_date":"2023-12-08T16:02:01.882391+00:00","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.24.135","private_nics":[{"creation_date":"2023-12-08T16:01:45.248008+00:00","id":"5f87e53b-3611-4424-a199-6b9ba8086391","mac_address":"02:00:00:15:4e:bb","modification_date":"2023-12-08T16:01:46.191727+00:00","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","server_id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"1d213504-3ba8-468c-85a2-f1c7d8c1e605","name":"kubernetes
+ da695ae6-a200-447a-9cd8-424f2403dbdb"},"state":"running","state_detail":"booting
+ kernel","tags":["kapsule=da695ae6-a200-447a-9cd8-424f2403dbdb","pool=1e57d71f-ace5-442e-899b-3b00963de302","pool-name=test-pool-minimal","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","default","node=9794f8ca-5b5e-40b5-868d-5005cc8f9151"],"volumes":{"0":{"boot":false,"creation_date":"2023-12-08T16:01:44.682570+00:00","export_uri":null,"id":"c1cb5b19-0e63-4a49-9971-f205823691c9","modification_date":"2023-12-08T16:01:44.682570+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","name":"scw-test-pool-minimal-test-pool-minimal-9794f8"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "680"
+ - "4016"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:06 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4105,7 +3911,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6791dc8a-ff62-456d-8a2d-14a2038bc726
+ - cec7916a-1c3b-4090-ba8e-a3fa499e58e2
status: 200 OK
code: 200
duration: ""
@@ -4116,19 +3922,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&pool_id=524396f8-90bf-4fb9-addc-0738adf843af&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:10.387892Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:56.252783Z","error_message":null,"id":"3be2f364-b638-4c0e-a5d5-f7662dbf2f59","name":"scw-test-pool-minima-test-pool-minimal--3be2f3","pool_id":"524396f8-90bf-4fb9-addc-0738adf843af","provider_id":"scaleway://instance/fr-par-1/3242c0d8-a56a-4f0b-b5b7-62776c91ea74","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.228976Z"}],"total_count":1}'
headers:
Content-Length:
- - "678"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:11 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4138,7 +3944,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 37a87d0f-a251-43fe-9e02-6a73f99ec049
+ - e7c43fd8-15e1-403f-818f-c37884b785ff
status: 200 OK
code: 200
duration: ""
@@ -4149,19 +3955,23 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3242c0d8-a56a-4f0b-b5b7-62776c91ea74
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:10.387892Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
+ scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
+ mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-12-08T16:03:57.237634+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minima-test-pool-minimal--3be2f3","id":"3242c0d8-a56a-4f0b-b5b7-62776c91ea74","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:660:404::1","gateway":"2001:bc8:660:404::","netmask":"64"},"location":{"cluster_id":"90","hypervisor_id":"201","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:31:84:d7","maintenances":[],"modification_date":"2023-12-08T16:04:14.739836+00:00","name":"scw-test-pool-minima-test-pool-minimal--3be2f3","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.249.9","private_nics":[{"creation_date":"2023-12-08T16:03:57.780597+00:00","id":"f5ed989d-9894-450a-b6a4-b7dbd118b6f4","mac_address":"02:00:00:15:4e:be","modification_date":"2023-12-08T16:03:58.469250+00:00","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","server_id":"3242c0d8-a56a-4f0b-b5b7-62776c91ea74","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.158.127.156","dynamic":true,"family":"inet","gateway":null,"id":"bd40efb6-b09e-4f96-974a-e0170c8c11df","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.127.156","dynamic":true,"family":"inet","gateway":null,"id":"bd40efb6-b09e-4f96-974a-e0170c8c11df","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"1d213504-3ba8-468c-85a2-f1c7d8c1e605","name":"kubernetes
+ da695ae6-a200-447a-9cd8-424f2403dbdb"},"state":"running","state_detail":"booting
+ kernel","tags":["kapsule=da695ae6-a200-447a-9cd8-424f2403dbdb","pool=524396f8-90bf-4fb9-addc-0738adf843af","pool-name=test-pool-minimal-2","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","minimal","node=3be2f364-b638-4c0e-a5d5-f7662dbf2f59"],"volumes":{"0":{"boot":false,"creation_date":"2023-12-08T16:03:57.237634+00:00","export_uri":null,"id":"0c6d981b-201e-424c-b6b9-e5df90ed871a","modification_date":"2023-12-08T16:03:57.237634+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"3242c0d8-a56a-4f0b-b5b7-62776c91ea74","name":"scw-test-pool-minima-test-pool-minimal--3be2f3"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "678"
+ - "4019"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:11 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4171,7 +3981,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ffd6bc4d-f244-473e-9a57-7e0ba0c22fa4
+ - ed263466-35a0-4bbf-9e7d-c8b96305d15e
status: 200 OK
code: 200
duration: ""
@@ -4182,19 +3992,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=a0734c69-8a2a-4733-afc5-cdfa822f77da&status=unknown
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:08:53.432293Z","error_message":null,"id":"9502f642-a1c8-48cc-ba6d-c29ca6617128","name":"scw-test-pool-minima-test-pool-minimal--9502f6","pool_id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","provider_id":"scaleway://instance/fr-par-1/22d63a61-0107-4d62-86e8-36c158a8ab23","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.373088Z"}],"total_count":1}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "660"
+ - "718"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:11 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4204,7 +4014,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9ba16934-550e-4977-acaf-62a1243d592c
+ - 3eb01a71-51b2-4eff-a3f5-fdb192ca0f36
status: 200 OK
code: 200
duration: ""
@@ -4215,10 +4025,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -4227,7 +4037,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:11 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4237,7 +4047,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 36d24b96-ad40-42f3-9724-6585e1497004
+ - 75f9ac29-6cca-450d-8de4-3005b2e5fa26
status: 200 OK
code: 200
duration: ""
@@ -4248,19 +4058,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/kubeconfig
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:10.387892Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVGRnJDa1ZHWW5OUVUwdE1Oa2RZTDFOeWVuUldOVkpaZHk5TlNVdHVLMkZoUW5CNWJYcE1Vbk16U0VKT2NGVXZMMjlKVEdwd2JYTlRTRGhTVmsxa1oyTm9hRzBLZFd4dFNubFRRMFpVZFhsdFFUZG5aV0pzVVN0R00wbHFWRFpuVmxSM2JXNW5ObkpPUWsxNVVqZFNiMWswUkZZMldXUk1TVzl2TWxvNVMyWnlaemRzT0FwSFYwY3pjMVJwVm10eFlWcDFaMVZKUzBoWmFUUmlkVWN4VFc4d1RGcGtTM3BEU0VKYWFHUXZOMFppWVdoWWJUUXlRVTVRWWtGdk5qa3JVbkIxTW5wekNrRmtkR2hDV1c4dlNFeFNZVWxNTHpaeE1HTTJjVUZpUVRNMlpVbFBVMHcyWm1WRFpuVmxPVTVMYWpOc1JIZEdOR05OYURoMGNVZExNaXRzTmtaRlVGa0tkV1Z1YmxCeFpYbHFjM0JJTm0xeVZ6RlVaRzlDYVV0UVYzWkdXbFV3U1N0NE1WWTRUWGRTUzJobWVYY3JNMEZUTW5FeE5rbE5VVkZITUdGQ2VUTmxad3BGY21ReGEwc3pUMFJZUlVWaGNDdG1Na05OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKZDI1dFYwRlpMMFZXV25CRWFWSmlSRnBHVURoMFJWRnVSM05OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEUldOc1dITmhVSHB0WVhOUmRERkxUR1paWm1oNlNIQnNjMWhoUkdOdWVIVnFZVmd4ZGxKQmNIUjNXbUZTWjNwck1BcDVjV3AwWW1kMGJYSm9NRUl2SzNaMk9GSlZRMjV2UTJoaFJqWmpURzh5TUhBMldFcFZNazQxWkZkSmNtNWFhV3R0U1U0NFNtVnhMeXRDVFVVeFl5OUdDa1YyZEhaa1dtUlhNV04xV1RoNVRIQkhlSHBuTDNkbU0weFFTVnBxYUZReVRqTlRNMlpWYjBScFJVdHdNSHA1UWk5bVNFaDBlakk1YjFkTlpWQnhjM2tLUWxkVGFFTm5SbHBQSzJFMVozQTVlQzh6Y3paQ09FTnZhWFVyWm1sb01rMVpWWFpNVkUxQ1N6aEhRM292WXpaS2JtRmtOV0poY1ZaU1JuaHpWV3QxYVFwTFRsaGhhelJQWVZZeVkyTnROMnBpZUdwMVRVcHNlalZtYVhoQldrNWtOVm94T0VSU09XZ3piRUkzVDJGVUx6VTVWVkZIVUVWTFZteFVhRU01VTNNNENrcG9MMEpuVWk5aldVMDVOa0U1YzJZNWRsSnBlVTQ1T1ZOQlRUUnVZemhoUWxvdmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYTY5NWFlNi1hMjAwLTQ0N2EtOWNkOC00MjRmMjQwM2RiZGIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBoMlRlZERiY0ZYVnFYdHhtOW0xQW1rb3hkbElzdmJJN0RNOEViZVRTbXM0ZjNWZzhDdU8zMHpaSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "678"
+ - "2630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:11 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4270,7 +4080,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 975c9f3e-2849-41ad-929f-3bdf07e8371d
+ - 68db6423-71d5-4855-b286-c6d6006027ac
status: 200 OK
code: 200
duration: ""
@@ -4281,19 +4091,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.412685Z"}],"total_count":1}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "688"
+ - "676"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:11 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4303,7 +4113,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c558f042-abb9-4c17-86f5-dd9f81d85ead
+ - 771bc683-0657-491a-a9e4-069cc26d4474
status: 200 OK
code: 200
duration: ""
@@ -4314,23 +4124,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5290ccc5-bdec-4b47-b79a-123f4a8ef928
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
- scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
- mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-11-13T14:06:16.374422+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minimal-test-pool-minimal-74fccf","id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:4754:201::1","gateway":"2001:bc8:4754:201::","netmask":"64"},"location":{"cluster_id":"6","hypervisor_id":"201","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2d:51:37","maintenances":[],"modification_date":"2023-11-13T14:06:33.031322+00:00","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.12.178.131","private_nics":[{"creation_date":"2023-11-13T14:06:17.095910+00:00","id":"d016aa45-64a2-4808-8d5b-dce86d659105","mac_address":"02:00:00:14:bd:a6","modification_date":"2023-11-13T14:06:18.027408+00:00","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","server_id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.158.79.120","dynamic":true,"family":"inet","gateway":null,"id":"78d361b7-6c7d-44f0-9176-ad85c1726d1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.79.120","dynamic":true,"family":"inet","gateway":null,"id":"78d361b7-6c7d-44f0-9176-ad85c1726d1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"0faeb0d5-b545-40e4-a78d-4744d30c1548","name":"kubernetes
- 69985695-06c7-464a-833c-3d3965cafaa9"},"state":"running","state_detail":"booting
- kernel","tags":["kapsule=69985695-06c7-464a-833c-3d3965cafaa9","pool=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","pool-name=test-pool-minimal","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","default","node=74fccfea-180b-4591-8619-7825e8a1b485"],"volumes":{"0":{"boot":false,"creation_date":"2023-11-13T14:06:16.374422+00:00","export_uri":null,"id":"5cba8c86-a940-4811-a912-8d2071e8519b","modification_date":"2023-11-13T14:06:16.374422+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","name":"scw-test-pool-minimal-test-pool-minimal-74fccf"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:05:57.243861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "4018"
+ - "678"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4340,7 +4146,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e52991b-7d08-40da-ba5d-142cd6fb6059
+ - 87915416-c114-4e67-842f-8a96f6d1a80f
status: 200 OK
code: 200
duration: ""
@@ -4351,19 +4157,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&pool_id=a0734c69-8a2a-4733-afc5-cdfa822f77da&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=524396f8-90bf-4fb9-addc-0738adf843af&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:08:53.432293Z","error_message":null,"id":"9502f642-a1c8-48cc-ba6d-c29ca6617128","name":"scw-test-pool-minima-test-pool-minimal--9502f6","pool_id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","provider_id":"scaleway://instance/fr-par-1/22d63a61-0107-4d62-86e8-36c158a8ab23","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.373088Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:56.252783Z","error_message":null,"id":"3be2f364-b638-4c0e-a5d5-f7662dbf2f59","name":"scw-test-pool-minima-test-pool-minimal--3be2f3","pool_id":"524396f8-90bf-4fb9-addc-0738adf843af","provider_id":"scaleway://instance/fr-par-1/3242c0d8-a56a-4f0b-b5b7-62776c91ea74","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.228976Z"}],"total_count":1}'
headers:
Content-Length:
- - "660"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4373,7 +4179,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48130b79-6000-4d82-a6af-6ca7351fc8e4
+ - 1fe3a378-89b2-4cbb-9b4b-9c32afd2fb22
status: 200 OK
code: 200
duration: ""
@@ -4384,23 +4190,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22d63a61-0107-4d62-86e8-36c158a8ab23
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
- scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
- mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-11-13T14:08:53.856876+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minima-test-pool-minimal--9502f6","id":"22d63a61-0107-4d62-86e8-36c158a8ab23","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:610:8702::1","gateway":"2001:bc8:610:8702::","netmask":"64"},"location":{"cluster_id":"52","hypervisor_id":"501","node_id":"3","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2d:51:4b","maintenances":[],"modification_date":"2023-11-13T14:09:11.178846+00:00","name":"scw-test-pool-minima-test-pool-minimal--9502f6","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.194.88.133","private_nics":[{"creation_date":"2023-11-13T14:08:54.567203+00:00","id":"5b25e5d8-805f-4538-ac5c-960d7f438a0a","mac_address":"02:00:00:14:bd:a8","modification_date":"2023-11-13T14:08:55.475916+00:00","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","server_id":"22d63a61-0107-4d62-86e8-36c158a8ab23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"163.172.149.194","dynamic":true,"family":"inet","gateway":null,"id":"de3de4a0-04c5-44f6-9251-b27fa180ea9c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.149.194","dynamic":true,"family":"inet","gateway":null,"id":"de3de4a0-04c5-44f6-9251-b27fa180ea9c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"0faeb0d5-b545-40e4-a78d-4744d30c1548","name":"kubernetes
- 69985695-06c7-464a-833c-3d3965cafaa9"},"state":"running","state_detail":"booting
- kernel","tags":["kapsule=69985695-06c7-464a-833c-3d3965cafaa9","pool=a0734c69-8a2a-4733-afc5-cdfa822f77da","pool-name=test-pool-minimal-2","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","minimal","node=9502f642-a1c8-48cc-ba6d-c29ca6617128"],"volumes":{"0":{"boot":false,"creation_date":"2023-11-13T14:08:53.856876+00:00","export_uri":null,"id":"02f3c986-bfee-4d89-8d40-475aad0abd04","modification_date":"2023-11-13T14:08:53.856876+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"22d63a61-0107-4d62-86e8-36c158a8ab23","name":"scw-test-pool-minima-test-pool-minimal--9502f6"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.193711Z"}],"total_count":1}'
headers:
Content-Length:
- - "4025"
+ - "688"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
+ - Fri, 08 Dec 2023 16:06:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4410,7 +4212,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aab5dacb-3a56-4061-8267-55199424a8ac
+ - 6efde17e-fd9b-4605-8008-267545809393
status: 200 OK
code: 200
duration: ""
@@ -4421,10 +4223,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "718"
@@ -4433,40 +4235,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9fcf05ea-7df8-4d65-a54c-61fe2c91c2b1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1497"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4476,7 +4245,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5889325a-ff36-4cf5-a1be-9a5a9c8103af
+ - 99e634e6-91ba-4d33-a184-f26da214224c
status: 200 OK
code: 200
duration: ""
@@ -4487,76 +4256,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSUmQwNUdiMWhFVkUxNlRWUkZlRTFxUlRCTlJGRjNUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRpdG9Da1JtV1hWRE1WTnRkME5ZWlRCeWVGRjZNRWREYWxCd1ZWRlplRlJ4WTBka1lYVjZhSE0yT1RCVlkzWnpabWRUVDJsdGJHVkRjbmRVVm5aS1pYTklURlFLY21GclpFa3JkRTVQWmtOMlkzQnFNbVZQUkZSUFlXNVZjVzFvYjBJNVQzcGtVbnBwZGxaaGJUTTJhMkZJYjFGeU1HRlZjbXhaTUZvdllTOURLMDkzYWdwa1VscDFUMEpFVmpBdmVsWklVR2haV0hwbWFYSlNVR0pJTHpOWlJrMU5ia0ZpZFRRMGJHNTVSRFJGTUVscVZXWm1kSHBKTDJ4VVZXZFpOV1pTVkRrMENtNUpSR3d4V1UwMVEyOW5SVkpuVVVOdmRXY3lia1EwWTFCUVpFcEZRa3BIVDNOellWaFpkM3B1UVVKc1NWUXpURnBrU1N0MWVpOXFTSGhyVHpWcmVWWUthWGRPUTFNeGFVdzJUR0UwVHpsWVdWSXZiSGxTWkRSbFMxRTNPV1J3ZGtOQ1NHUndlRzVGUXpKR2FYRXdNRGNyZVZkbmRtUXJaV3c0T1VNcldXSnZXUXBXVHpoMWJ6TnNSRTAxWlZCellUaFVPRkJWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpRTlZwVFJ6SnpNVTh4V1N0MVMzWnpXRkJMUVZrM1ZtWllORUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYlU5R05HUkRieTlWU2tWR2RubGFUVzlLVmt4TFRraGlWemh0VTFwdmJqRk5kRWN5Y0V4c01UQnNUVm81VkdwRE1ncE1jV2RsTWpkNlRYUmtPSEZ1U1M5U2VUbG9UekJrWTJkWU9ETm1jMVV5YlZaNGRHb3dZamxYVURGMGFrdzBTbkJ4ZFVGblNFODBhbVZzZG1WV1kyZGpDbFZNV1ZabmVGUmFLMVEzTlZGTlluZHVjRmREVHpRdllXUklaaXRzVEZGUmNVZFNLMFJpWnl0NlUyTTBObGx4WlZOQkwydFVOemx3ZFcxa1MyRmxVRkFLVTB4elpWZENUVGxaWW1WYU1FSmtTSHBCV0c1bVFYSlZXVEpXZW10d1Fua3JZemRTYjB4Q2IyWmhVR015VFhWRWFXOUNibnBYWlc0NVEyOVZLMWhYVEFwUGFpdERXbVJWU0hkclMyZzNTR3A1U2pSd2RXZDRRMFUwZHpKVWJ5dE1SR1Z4UVU5UlVtbFNhVEJ4ZGtGNlNIZ3ZWRVpvYlV4Q1R6VlVUV1o1TlhFMkNrRlhVbkJ0WkdNeFNXVjBkbVpYWTNaalNEVkVhRkJOV0VNcmVEQlhhazU0YlVWTmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4NTY5NS0wNmM3LTQ2NGEtODMzYy0zZDM5NjVjYWZhYTkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYYll5dk9xWEdZclJ2NmdFTHViRG82ZVo3UkF6VUY1MTNMdFBwTkhMeHpsNkZQZEdGc3owcGdKag==","content_type":"application/octet-stream","name":"kubeconfig"}'
- headers:
- Content-Length:
- - "2630"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b5911938-6cbb-461c-ba24-36d251442212
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "676"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ef61e982-6b4b-4c87-8fb8-cb0f13b751be
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:10.387892Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:05:57.243861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "678"
@@ -4565,7 +4268,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:12 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4575,7 +4278,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00e59d26-b95a-4fb7-bc2d-0806b05488f5
+ - d8023905-ba0e-4fb5-ad61-00a961552a81
status: 200 OK
code: 200
duration: ""
@@ -4586,52 +4289,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.412685Z"}],"total_count":1}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "688"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7dbd4b01-331d-4be4-91ce-101f5e56df03
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=a0734c69-8a2a-4733-afc5-cdfa822f77da&status=unknown
- method: GET
- response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:08:53.432293Z","error_message":null,"id":"9502f642-a1c8-48cc-ba6d-c29ca6617128","name":"scw-test-pool-minima-test-pool-minimal--9502f6","pool_id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","provider_id":"scaleway://instance/fr-par-1/22d63a61-0107-4d62-86e8-36c158a8ab23","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.373088Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "660"
+ - "1497"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4641,7 +4311,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 691b8ff7-a9dc-4bf7-a59a-4395354d8bfe
+ - ccb6ac72-1c7d-47b5-9731-250e3bfd72c5
status: 200 OK
code: 200
duration: ""
@@ -4652,19 +4322,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=524396f8-90bf-4fb9-addc-0738adf843af&status=unknown
method: GET
response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:56.252783Z","error_message":null,"id":"3be2f364-b638-4c0e-a5d5-f7662dbf2f59","name":"scw-test-pool-minima-test-pool-minimal--3be2f3","pool_id":"524396f8-90bf-4fb9-addc-0738adf843af","provider_id":"scaleway://instance/fr-par-1/3242c0d8-a56a-4f0b-b5b7-62776c91ea74","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.228976Z"}],"total_count":1}'
headers:
Content-Length:
- - "718"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4674,7 +4344,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 21f2b1b4-ea74-44b0-ab10-2b3e78ab7654
+ - 3a8b527c-060d-4363-9e0a-5daeeb9f9fd8
status: 200 OK
code: 200
duration: ""
@@ -4685,19 +4355,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/kubeconfig
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:10.387892Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVGRnJDa1ZHWW5OUVUwdE1Oa2RZTDFOeWVuUldOVkpaZHk5TlNVdHVLMkZoUW5CNWJYcE1Vbk16U0VKT2NGVXZMMjlKVEdwd2JYTlRTRGhTVmsxa1oyTm9hRzBLZFd4dFNubFRRMFpVZFhsdFFUZG5aV0pzVVN0R00wbHFWRFpuVmxSM2JXNW5ObkpPUWsxNVVqZFNiMWswUkZZMldXUk1TVzl2TWxvNVMyWnlaemRzT0FwSFYwY3pjMVJwVm10eFlWcDFaMVZKUzBoWmFUUmlkVWN4VFc4d1RGcGtTM3BEU0VKYWFHUXZOMFppWVdoWWJUUXlRVTVRWWtGdk5qa3JVbkIxTW5wekNrRmtkR2hDV1c4dlNFeFNZVWxNTHpaeE1HTTJjVUZpUVRNMlpVbFBVMHcyWm1WRFpuVmxPVTVMYWpOc1JIZEdOR05OYURoMGNVZExNaXRzTmtaRlVGa0tkV1Z1YmxCeFpYbHFjM0JJTm0xeVZ6RlVaRzlDYVV0UVYzWkdXbFV3U1N0NE1WWTRUWGRTUzJobWVYY3JNMEZUTW5FeE5rbE5VVkZITUdGQ2VUTmxad3BGY21ReGEwc3pUMFJZUlVWaGNDdG1Na05OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKZDI1dFYwRlpMMFZXV25CRWFWSmlSRnBHVURoMFJWRnVSM05OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEUldOc1dITmhVSHB0WVhOUmRERkxUR1paWm1oNlNIQnNjMWhoUkdOdWVIVnFZVmd4ZGxKQmNIUjNXbUZTWjNwck1BcDVjV3AwWW1kMGJYSm9NRUl2SzNaMk9GSlZRMjV2UTJoaFJqWmpURzh5TUhBMldFcFZNazQxWkZkSmNtNWFhV3R0U1U0NFNtVnhMeXRDVFVVeFl5OUdDa1YyZEhaa1dtUlhNV04xV1RoNVRIQkhlSHBuTDNkbU0weFFTVnBxYUZReVRqTlRNMlpWYjBScFJVdHdNSHA1UWk5bVNFaDBlakk1YjFkTlpWQnhjM2tLUWxkVGFFTm5SbHBQSzJFMVozQTVlQzh6Y3paQ09FTnZhWFVyWm1sb01rMVpWWFpNVkUxQ1N6aEhRM292WXpaS2JtRmtOV0poY1ZaU1JuaHpWV3QxYVFwTFRsaGhhelJQWVZZeVkyTnROMnBpZUdwMVRVcHNlalZtYVhoQldrNWtOVm94T0VSU09XZ3piRUkzVDJGVUx6VTVWVkZIVUVWTFZteFVhRU01VTNNNENrcG9MMEpuVWk5aldVMDVOa0U1YzJZNWRsSnBlVTQ1T1ZOQlRUUnVZemhoUWxvdmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYTY5NWFlNi1hMjAwLTQ0N2EtOWNkOC00MjRmMjQwM2RiZGIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBoMlRlZERiY0ZYVnFYdHhtOW0xQW1rb3hkbElzdmJJN0RNOEViZVRTbXM0ZjNWZzhDdU8zMHpaSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "678"
+ - "2630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4707,7 +4377,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f53ea2ff-74d9-4b16-8193-bd6c6330096a
+ - f714b6e5-b88f-4d13-9a55-79759655bb37
status: 200 OK
code: 200
duration: ""
@@ -4718,19 +4388,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1497"
+ - "676"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4740,7 +4410,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5fc033e3-e1b9-495e-af51-979fe04af468
+ - fbe148ee-22fe-4482-8325-a4e5d5754b57
status: 200 OK
code: 200
duration: ""
@@ -4751,19 +4421,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=a0734c69-8a2a-4733-afc5-cdfa822f77da&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:08:53.432293Z","error_message":null,"id":"9502f642-a1c8-48cc-ba6d-c29ca6617128","name":"scw-test-pool-minima-test-pool-minimal--9502f6","pool_id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","provider_id":"scaleway://instance/fr-par-1/22d63a61-0107-4d62-86e8-36c158a8ab23","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.373088Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:57.193711Z"}],"total_count":1}'
headers:
Content-Length:
- - "660"
+ - "688"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4773,7 +4443,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e3ffa7e-64f5-4c67-b7c1-5ed2c40a2c24
+ - 0db99d14-5b85-4a9b-b3e4-ab7f61df1b35
status: 200 OK
code: 200
duration: ""
@@ -4784,19 +4454,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/kubeconfig
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
+ method: DELETE
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSUmQwNUdiMWhFVkUxNlRWUkZlRTFxUlRCTlJGRjNUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRpdG9Da1JtV1hWRE1WTnRkME5ZWlRCeWVGRjZNRWREYWxCd1ZWRlplRlJ4WTBka1lYVjZhSE0yT1RCVlkzWnpabWRUVDJsdGJHVkRjbmRVVm5aS1pYTklURlFLY21GclpFa3JkRTVQWmtOMlkzQnFNbVZQUkZSUFlXNVZjVzFvYjBJNVQzcGtVbnBwZGxaaGJUTTJhMkZJYjFGeU1HRlZjbXhaTUZvdllTOURLMDkzYWdwa1VscDFUMEpFVmpBdmVsWklVR2haV0hwbWFYSlNVR0pJTHpOWlJrMU5ia0ZpZFRRMGJHNTVSRFJGTUVscVZXWm1kSHBKTDJ4VVZXZFpOV1pTVkRrMENtNUpSR3d4V1UwMVEyOW5SVkpuVVVOdmRXY3lia1EwWTFCUVpFcEZRa3BIVDNOellWaFpkM3B1UVVKc1NWUXpURnBrU1N0MWVpOXFTSGhyVHpWcmVWWUthWGRPUTFNeGFVdzJUR0UwVHpsWVdWSXZiSGxTWkRSbFMxRTNPV1J3ZGtOQ1NHUndlRzVGUXpKR2FYRXdNRGNyZVZkbmRtUXJaV3c0T1VNcldXSnZXUXBXVHpoMWJ6TnNSRTAxWlZCellUaFVPRkJWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpRTlZwVFJ6SnpNVTh4V1N0MVMzWnpXRkJMUVZrM1ZtWllORUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYlU5R05HUkRieTlWU2tWR2RubGFUVzlLVmt4TFRraGlWemh0VTFwdmJqRk5kRWN5Y0V4c01UQnNUVm81VkdwRE1ncE1jV2RsTWpkNlRYUmtPSEZ1U1M5U2VUbG9UekJrWTJkWU9ETm1jMVV5YlZaNGRHb3dZamxYVURGMGFrdzBTbkJ4ZFVGblNFODBhbVZzZG1WV1kyZGpDbFZNV1ZabmVGUmFLMVEzTlZGTlluZHVjRmREVHpRdllXUklaaXRzVEZGUmNVZFNLMFJpWnl0NlUyTTBObGx4WlZOQkwydFVOemx3ZFcxa1MyRmxVRkFLVTB4elpWZENUVGxaWW1WYU1FSmtTSHBCV0c1bVFYSlZXVEpXZW10d1Fua3JZemRTYjB4Q2IyWmhVR015VFhWRWFXOUNibnBYWlc0NVEyOVZLMWhYVEFwUGFpdERXbVJWU0hkclMyZzNTR3A1U2pSd2RXZDRRMFUwZHpKVWJ5dE1SR1Z4UVU5UlVtbFNhVEJ4ZGtGNlNIZ3ZWRVpvYlV4Q1R6VlVUV1o1TlhFMkNrRlhVbkJ0WkdNeFNXVjBkbVpYWTNaalNEVkVhRkJOV0VNcmVEQlhhazU0YlVWTmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4NTY5NS0wNmM3LTQ2NGEtODMzYy0zZDM5NjVjYWZhYTkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYYll5dk9xWEdZclJ2NmdFTHViRG82ZVo3UkF6VUY1MTNMdFBwTkhMeHpsNkZQZEdGc3owcGdKag==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:06:05.412900284Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2630"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4806,7 +4476,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0fe9b1ea-9f5d-452a-b638-a4d3c244c50a
+ - ebe02fcf-cf25-4a69-8e7d-f72d1fd9c9a1
status: 200 OK
code: 200
duration: ""
@@ -4817,19 +4487,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:06:05.412900Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "676"
+ - "681"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
+ - Fri, 08 Dec 2023 16:06:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4839,7 +4509,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 291a3a73-d8da-4190-9b0a-de89b5914c50
+ - 450c7065-d53e-4e26-ae28-506b4234271b
status: 200 OK
code: 200
duration: ""
@@ -4850,52 +4520,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:10.412685Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "688"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:12:13 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 39e97451-3169-4a3d-bb69-8f95acb25ad1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
- method: DELETE
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:14.390077546Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:06:05.412900Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "684"
+ - "681"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:14 GMT
+ - Fri, 08 Dec 2023 16:06:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4905,7 +4542,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e71977c3-0d96-4545-bc24-5da7a13fc33b
+ - 7cb852f2-f1d9-4d6c-84b2-83dbb10a1397
status: 200 OK
code: 200
duration: ""
@@ -4916,10 +4553,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:14.390078Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:06:05.412900Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "681"
@@ -4928,7 +4565,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:14 GMT
+ - Fri, 08 Dec 2023 16:06:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4938,7 +4575,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff4d2a0f-e839-41ce-8900-cdedd14bee08
+ - 7d7df836-579c-4d70-8810-6466537eb2a7
status: 200 OK
code: 200
duration: ""
@@ -4949,10 +4586,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:08:52.879572Z","id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-11-13T14:12:14.390078Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T16:03:55.532993Z","id":"524396f8-90bf-4fb9-addc-0738adf843af","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-12-08T16:06:05.412900Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "681"
@@ -4961,7 +4598,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:19 GMT
+ - Fri, 08 Dec 2023 16:06:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4971,7 +4608,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - affdd48d-2f87-460d-9758-401c05ffdbd8
+ - b5ebe773-2057-48c8-bb2b-ba0ce0365b48
status: 200 OK
code: 200
duration: ""
@@ -4982,10 +4619,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a0734c69-8a2a-4733-afc5-cdfa822f77da
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/524396f8-90bf-4fb9-addc-0738adf843af
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"a0734c69-8a2a-4733-afc5-cdfa822f77da","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"524396f8-90bf-4fb9-addc-0738adf843af","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -4994,7 +4631,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:24 GMT
+ - Fri, 08 Dec 2023 16:06:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5004,7 +4641,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c208525f-bca9-4439-90db-62dc6b3e3b17
+ - 3baf28ed-82cd-4179-885f-7dda477da287
status: 404 Not Found
code: 404
duration: ""
@@ -5015,10 +4652,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -5027,7 +4664,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:24 GMT
+ - Fri, 08 Dec 2023 16:06:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5037,7 +4674,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8848dd23-3576-44a8-a502-f1e47692d4fe
+ - 99e35728-9841-4cd4-a2fd-6f77fe5ec73c
status: 200 OK
code: 200
duration: ""
@@ -5048,10 +4685,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "676"
@@ -5060,7 +4697,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:24 GMT
+ - Fri, 08 Dec 2023 16:06:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5070,7 +4707,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dd259b3e-1400-43cc-80b1-6300f87d232d
+ - 6700a257-9c8b-4204-b4ae-315cdbae844e
status: 200 OK
code: 200
duration: ""
@@ -5081,10 +4718,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:14.852447Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:06:05.945912Z"}],"total_count":1}'
headers:
Content-Length:
- "688"
@@ -5093,7 +4730,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:24 GMT
+ - Fri, 08 Dec 2023 16:06:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5103,7 +4740,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e15c8020-059d-4841-8644-e68cd2082a6d
+ - e3b3bea5-e769-493b-8a96-9fefc9b87fc6
status: 200 OK
code: 200
duration: ""
@@ -5114,23 +4751,23 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5290ccc5-bdec-4b47-b79a-123f4a8ef928
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0f5f50f5-ab54-478d-b789-ccaa1f5be1db
method: GET
response:
body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
- mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-11-13T14:06:16.374422+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minimal-test-pool-minimal-74fccf","id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:4754:201::1","gateway":"2001:bc8:4754:201::","netmask":"64"},"location":{"cluster_id":"6","hypervisor_id":"201","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2d:51:37","maintenances":[],"modification_date":"2023-11-13T14:06:33.031322+00:00","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.12.178.131","private_nics":[{"creation_date":"2023-11-13T14:06:17.095910+00:00","id":"d016aa45-64a2-4808-8d5b-dce86d659105","mac_address":"02:00:00:14:bd:a6","modification_date":"2023-11-13T14:06:18.027408+00:00","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","server_id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.158.79.120","dynamic":true,"family":"inet","gateway":null,"id":"78d361b7-6c7d-44f0-9176-ad85c1726d1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.79.120","dynamic":true,"family":"inet","gateway":null,"id":"78d361b7-6c7d-44f0-9176-ad85c1726d1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"0faeb0d5-b545-40e4-a78d-4744d30c1548","name":"kubernetes
- 69985695-06c7-464a-833c-3d3965cafaa9"},"state":"running","state_detail":"booting
- kernel","tags":["kapsule=69985695-06c7-464a-833c-3d3965cafaa9","pool=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","pool-name=test-pool-minimal","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","default","node=74fccfea-180b-4591-8619-7825e8a1b485"],"volumes":{"0":{"boot":false,"creation_date":"2023-11-13T14:06:16.374422+00:00","export_uri":null,"id":"5cba8c86-a940-4811-a912-8d2071e8519b","modification_date":"2023-11-13T14:06:16.374422+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"5290ccc5-bdec-4b47-b79a-123f4a8ef928","name":"scw-test-pool-minimal-test-pool-minimal-74fccf"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-12-08T16:01:44.682570+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-pool-minimal-test-pool-minimal-9794f8","id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:648:203::1","gateway":"2001:bc8:648:203::","netmask":"64"},"location":{"cluster_id":"44","hypervisor_id":"103","node_id":"4","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:31:84:bf","maintenances":[],"modification_date":"2023-12-08T16:02:01.882391+00:00","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.24.135","private_nics":[{"creation_date":"2023-12-08T16:01:45.248008+00:00","id":"5f87e53b-3611-4424-a199-6b9ba8086391","mac_address":"02:00:00:15:4e:bb","modification_date":"2023-12-08T16:01:46.191727+00:00","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","server_id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"1d213504-3ba8-468c-85a2-f1c7d8c1e605","name":"kubernetes
+ da695ae6-a200-447a-9cd8-424f2403dbdb"},"state":"running","state_detail":"booting
+ kernel","tags":["kapsule=da695ae6-a200-447a-9cd8-424f2403dbdb","pool=1e57d71f-ace5-442e-899b-3b00963de302","pool-name=test-pool-minimal","runtime=containerd","managed=true","terraform-test","scaleway_k8s_cluster","default","node=9794f8ca-5b5e-40b5-868d-5005cc8f9151"],"volumes":{"0":{"boot":false,"creation_date":"2023-12-08T16:01:44.682570+00:00","export_uri":null,"id":"c1cb5b19-0e63-4a49-9971-f205823691c9","modification_date":"2023-12-08T16:01:44.682570+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"0f5f50f5-ab54-478d-b789-ccaa1f5be1db","name":"scw-test-pool-minimal-test-pool-minimal-9794f8"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "4018"
+ - "4016"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:24 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5140,7 +4777,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d6878db5-cba7-4534-828e-9446e6148ca3
+ - 9d31d857-a25c-44cd-9138-7d4120663510
status: 200 OK
code: 200
duration: ""
@@ -5151,10 +4788,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"created_at":"2023-11-13T14:03:53.790183Z","dhcp_enabled":true,"id":"94774739-2f9f-4f34-8d2c-d537441e63b2","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T14:03:53.790183Z","id":"38026d64-6d2e-41e6-bd22-09f7e16be9fa","subnet":"172.16.32.0/22","updated_at":"2023-11-13T14:03:53.790183Z"},{"created_at":"2023-11-13T14:03:53.790183Z","id":"8cb23878-11bd-438d-b928-97b7bb1f4732","subnet":"fd63:256c:45f7:2a19::/64","updated_at":"2023-11-13T14:03:53.790183Z"}],"tags":[],"updated_at":"2023-11-13T14:03:53.790183Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.993250Z","dhcp_enabled":true,"id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.993250Z","id":"f1bc168a-ad86-4afe-a3dd-29990e98aef0","subnet":"172.16.16.0/22","updated_at":"2023-12-08T15:58:31.993250Z"},{"created_at":"2023-12-08T15:58:31.993250Z","id":"2e4f539a-f7a8-451d-9442-5cf94ab2d6cb","subnet":"fd63:256c:45f7:b6f6::/64","updated_at":"2023-12-08T15:58:31.993250Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.993250Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "718"
@@ -5163,7 +4800,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:25 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5173,7 +4810,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d6a77bf3-6b42-407f-b815-762457e8c510
+ - da8888b0-c248-47dc-b405-90b2f023802b
status: 200 OK
code: 200
duration: ""
@@ -5184,10 +4821,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:06:05.361280Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:00:16.400609Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -5196,7 +4833,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:25 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5206,7 +4843,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 877a6b2e-b1ab-4127-81d3-7f4baf2b8b49
+ - a16f7583-6b6f-40bd-a52c-7a3922f58abf
status: 200 OK
code: 200
duration: ""
@@ -5217,10 +4854,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1V3VFVSUmQwNUdiMWhFVkUxNlRWUkZlRTFxUlRCTlJGRjNUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRpdG9Da1JtV1hWRE1WTnRkME5ZWlRCeWVGRjZNRWREYWxCd1ZWRlplRlJ4WTBka1lYVjZhSE0yT1RCVlkzWnpabWRUVDJsdGJHVkRjbmRVVm5aS1pYTklURlFLY21GclpFa3JkRTVQWmtOMlkzQnFNbVZQUkZSUFlXNVZjVzFvYjBJNVQzcGtVbnBwZGxaaGJUTTJhMkZJYjFGeU1HRlZjbXhaTUZvdllTOURLMDkzYWdwa1VscDFUMEpFVmpBdmVsWklVR2haV0hwbWFYSlNVR0pJTHpOWlJrMU5ia0ZpZFRRMGJHNTVSRFJGTUVscVZXWm1kSHBKTDJ4VVZXZFpOV1pTVkRrMENtNUpSR3d4V1UwMVEyOW5SVkpuVVVOdmRXY3lia1EwWTFCUVpFcEZRa3BIVDNOellWaFpkM3B1UVVKc1NWUXpURnBrU1N0MWVpOXFTSGhyVHpWcmVWWUthWGRPUTFNeGFVdzJUR0UwVHpsWVdWSXZiSGxTWkRSbFMxRTNPV1J3ZGtOQ1NHUndlRzVGUXpKR2FYRXdNRGNyZVZkbmRtUXJaV3c0T1VNcldXSnZXUXBXVHpoMWJ6TnNSRTAxWlZCellUaFVPRkJWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpRTlZwVFJ6SnpNVTh4V1N0MVMzWnpXRkJMUVZrM1ZtWllORUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYlU5R05HUkRieTlWU2tWR2RubGFUVzlLVmt4TFRraGlWemh0VTFwdmJqRk5kRWN5Y0V4c01UQnNUVm81VkdwRE1ncE1jV2RsTWpkNlRYUmtPSEZ1U1M5U2VUbG9UekJrWTJkWU9ETm1jMVV5YlZaNGRHb3dZamxYVURGMGFrdzBTbkJ4ZFVGblNFODBhbVZzZG1WV1kyZGpDbFZNV1ZabmVGUmFLMVEzTlZGTlluZHVjRmREVHpRdllXUklaaXRzVEZGUmNVZFNLMFJpWnl0NlUyTTBObGx4WlZOQkwydFVOemx3ZFcxa1MyRmxVRkFLVTB4elpWZENUVGxaWW1WYU1FSmtTSHBCV0c1bVFYSlZXVEpXZW10d1Fua3JZemRTYjB4Q2IyWmhVR015VFhWRWFXOUNibnBYWlc0NVEyOVZLMWhYVEFwUGFpdERXbVJWU0hkclMyZzNTR3A1U2pSd2RXZDRRMFUwZHpKVWJ5dE1SR1Z4UVU5UlVtbFNhVEJ4ZGtGNlNIZ3ZWRVpvYlV4Q1R6VlVUV1o1TlhFMkNrRlhVbkJ0WkdNeFNXVjBkbVpYWTNaalNEVkVhRkJOV0VNcmVEQlhhazU0YlVWTmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4NTY5NS0wNmM3LTQ2NGEtODMzYy0zZDM5NjVjYWZhYTkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYYll5dk9xWEdZclJ2NmdFTHViRG82ZVo3UkF6VUY1MTNMdFBwTkhMeHpsNkZQZEdGc3owcGdKag==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVGRnJDa1ZHWW5OUVUwdE1Oa2RZTDFOeWVuUldOVkpaZHk5TlNVdHVLMkZoUW5CNWJYcE1Vbk16U0VKT2NGVXZMMjlKVEdwd2JYTlRTRGhTVmsxa1oyTm9hRzBLZFd4dFNubFRRMFpVZFhsdFFUZG5aV0pzVVN0R00wbHFWRFpuVmxSM2JXNW5ObkpPUWsxNVVqZFNiMWswUkZZMldXUk1TVzl2TWxvNVMyWnlaemRzT0FwSFYwY3pjMVJwVm10eFlWcDFaMVZKUzBoWmFUUmlkVWN4VFc4d1RGcGtTM3BEU0VKYWFHUXZOMFppWVdoWWJUUXlRVTVRWWtGdk5qa3JVbkIxTW5wekNrRmtkR2hDV1c4dlNFeFNZVWxNTHpaeE1HTTJjVUZpUVRNMlpVbFBVMHcyWm1WRFpuVmxPVTVMYWpOc1JIZEdOR05OYURoMGNVZExNaXRzTmtaRlVGa0tkV1Z1YmxCeFpYbHFjM0JJTm0xeVZ6RlVaRzlDYVV0UVYzWkdXbFV3U1N0NE1WWTRUWGRTUzJobWVYY3JNMEZUTW5FeE5rbE5VVkZITUdGQ2VUTmxad3BGY21ReGEwc3pUMFJZUlVWaGNDdG1Na05OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKZDI1dFYwRlpMMFZXV25CRWFWSmlSRnBHVURoMFJWRnVSM05OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEUldOc1dITmhVSHB0WVhOUmRERkxUR1paWm1oNlNIQnNjMWhoUkdOdWVIVnFZVmd4ZGxKQmNIUjNXbUZTWjNwck1BcDVjV3AwWW1kMGJYSm9NRUl2SzNaMk9GSlZRMjV2UTJoaFJqWmpURzh5TUhBMldFcFZNazQxWkZkSmNtNWFhV3R0U1U0NFNtVnhMeXRDVFVVeFl5OUdDa1YyZEhaa1dtUlhNV04xV1RoNVRIQkhlSHBuTDNkbU0weFFTVnBxYUZReVRqTlRNMlpWYjBScFJVdHdNSHA1UWk5bVNFaDBlakk1YjFkTlpWQnhjM2tLUWxkVGFFTm5SbHBQSzJFMVozQTVlQzh6Y3paQ09FTnZhWFVyWm1sb01rMVpWWFpNVkUxQ1N6aEhRM292WXpaS2JtRmtOV0poY1ZaU1JuaHpWV3QxYVFwTFRsaGhhelJQWVZZeVkyTnROMnBpZUdwMVRVcHNlalZtYVhoQldrNWtOVm94T0VSU09XZ3piRUkzVDJGVUx6VTVWVkZIVUVWTFZteFVhRU01VTNNNENrcG9MMEpuVWk5aldVMDVOa0U1YzJZNWRsSnBlVTQ1T1ZOQlRUUnVZemhoUWxvdmNnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYTY5NWFlNi1hMjAwLTQ0N2EtOWNkOC00MjRmMjQwM2RiZGIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBoMlRlZERiY0ZYVnFYdHhtOW0xQW1rb3hkbElzdmJJN0RNOEViZVRTbXM0ZjNWZzhDdU8zMHpaSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2630"
@@ -5229,7 +4866,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:25 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5239,7 +4876,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b83ae06-128b-4892-acc2-a8541fe03730
+ - bb346154-580e-43b6-a5d0-853a9b793a54
status: 200 OK
code: 200
duration: ""
@@ -5250,10 +4887,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:08:48.035045Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:03:48.805765Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "676"
@@ -5262,7 +4899,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:25 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5272,7 +4909,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4323194a-69cc-4efd-a1fd-ccd5609f4300
+ - 75033bd5-2e85-4eff-8f83-e314fd330a38
status: 200 OK
code: 200
duration: ""
@@ -5283,10 +4920,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9/nodes?order_by=created_at_asc&page=1&pool_id=aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb/nodes?order_by=created_at_asc&page=1&pool_id=1e57d71f-ace5-442e-899b-3b00963de302&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:06:15.795199Z","error_message":null,"id":"74fccfea-180b-4591-8619-7825e8a1b485","name":"scw-test-pool-minimal-test-pool-minimal-74fccf","pool_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","provider_id":"scaleway://instance/fr-par-1/5290ccc5-bdec-4b47-b79a-123f4a8ef928","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:12:14.852447Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:01:44.107090Z","error_message":null,"id":"9794f8ca-5b5e-40b5-868d-5005cc8f9151","name":"scw-test-pool-minimal-test-pool-minimal-9794f8","pool_id":"1e57d71f-ace5-442e-899b-3b00963de302","provider_id":"scaleway://instance/fr-par-1/0f5f50f5-ab54-478d-b789-ccaa1f5be1db","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:06:05.945912Z"}],"total_count":1}'
headers:
Content-Length:
- "688"
@@ -5295,7 +4932,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:25 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5305,7 +4942,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 75f0bb67-2347-4bd2-98c5-776c61a9d793
+ - 587d2db0-cbb7-486a-ab13-c928c86e0030
status: 200 OK
code: 200
duration: ""
@@ -5316,10 +4953,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310016594Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399389967Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "682"
@@ -5328,7 +4965,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:26 GMT
+ - Fri, 08 Dec 2023 16:06:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5338,7 +4975,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22e8151d-a19d-41f8-97e8-ff9976bcf4af
+ - 53f99034-3ebb-4f4a-919f-204834fec376
status: 200 OK
code: 200
duration: ""
@@ -5349,10 +4986,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5361,7 +4998,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:26 GMT
+ - Fri, 08 Dec 2023 16:06:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5371,7 +5008,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9df8842d-58e8-479d-8f82-8f6ab5ea579e
+ - 37160771-7bf6-4c0b-a67e-05b21557d642
status: 200 OK
code: 200
duration: ""
@@ -5382,10 +5019,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5394,7 +5031,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:31 GMT
+ - Fri, 08 Dec 2023 16:06:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5404,7 +5041,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7b5cbc4f-8e63-471a-ad3f-b4b4a56a62ae
+ - feb0fe73-e344-4ab1-ba2a-61f0c4bfda0c
status: 200 OK
code: 200
duration: ""
@@ -5415,10 +5052,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5427,7 +5064,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:36 GMT
+ - Fri, 08 Dec 2023 16:06:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5437,7 +5074,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 40054846-8dac-425f-b343-d3d261c36cba
+ - cbc626ea-447f-4621-a6c8-36cd1e24fde0
status: 200 OK
code: 200
duration: ""
@@ -5448,10 +5085,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5460,7 +5097,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:41 GMT
+ - Fri, 08 Dec 2023 16:06:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5470,7 +5107,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9bf9e880-83df-4817-a893-9da37b118a91
+ - 3a26be51-2340-4e58-932f-f7c701fed23c
status: 200 OK
code: 200
duration: ""
@@ -5481,10 +5118,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5493,7 +5130,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:46 GMT
+ - Fri, 08 Dec 2023 16:06:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5503,7 +5140,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5f0b548e-feca-47e6-8030-e8b50f04ea88
+ - b7e9c1f3-bde7-4857-bd66-e971b3850987
status: 200 OK
code: 200
duration: ""
@@ -5514,10 +5151,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5526,7 +5163,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:51 GMT
+ - Fri, 08 Dec 2023 16:06:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5536,7 +5173,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c5aa584f-31c9-456b-8e0b-0ea93ba101ec
+ - 336adc6b-ec9d-4527-b5f5-792ed11adc6d
status: 200 OK
code: 200
duration: ""
@@ -5547,10 +5184,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69985695-06c7-464a-833c-3d3965cafaa9","container_runtime":"containerd","created_at":"2023-11-13T14:04:08.610242Z","id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-11-13T14:12:26.310017Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.637648Z","id":"1e57d71f-ace5-442e-899b-3b00963de302","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-12-08T16:06:27.399390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "679"
@@ -5559,7 +5196,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:12:56 GMT
+ - Fri, 08 Dec 2023 16:06:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5569,7 +5206,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b945bc13-e9a4-4d75-986d-aceae2262b72
+ - d63cb7d5-c394-40a0-b729-f10b046a0216
status: 200 OK
code: 200
duration: ""
@@ -5580,10 +5217,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"1e57d71f-ace5-442e-899b-3b00963de302","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -5592,7 +5229,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:01 GMT
+ - Fri, 08 Dec 2023 16:07:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5602,7 +5239,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8e162d4-58ec-4e9a-9b43-b2f7b3a985eb
+ - 53e49a7d-4fec-495e-813e-e3237e8f993e
status: 404 Not Found
code: 404
duration: ""
@@ -5613,10 +5250,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:13:01.826500029Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:07:02.857324665Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1503"
@@ -5625,7 +5262,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:01 GMT
+ - Fri, 08 Dec 2023 16:07:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5635,7 +5272,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a78eabf5-2707-41a1-b675-542b6a9284c4
+ - a634c71e-0d81-49ea-8215-bc644067cdeb
status: 200 OK
code: 200
duration: ""
@@ -5646,10 +5283,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:13:01.826500Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:07:02.857325Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -5658,7 +5295,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:01 GMT
+ - Fri, 08 Dec 2023 16:07:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5668,7 +5305,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 11e3ec7d-a4c9-4d2d-8e27-ee66df75d6ce
+ - e83fbf4b-97e0-4351-a97e-62a04fd7d9d7
status: 200 OK
code: 200
duration: ""
@@ -5679,10 +5316,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69985695-06c7-464a-833c-3d3965cafaa9.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T14:04:02.977895Z","created_at":"2023-11-13T14:04:02.977895Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69985695-06c7-464a-833c-3d3965cafaa9.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69985695-06c7-464a-833c-3d3965cafaa9","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:13:01.826500Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://da695ae6-a200-447a-9cd8-424f2403dbdb.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.085870Z","created_at":"2023-12-08T15:58:33.085870Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.da695ae6-a200-447a-9cd8-424f2403dbdb.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"da695ae6-a200-447a-9cd8-424f2403dbdb","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:07:02.857325Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -5691,7 +5328,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:06 GMT
+ - Fri, 08 Dec 2023 16:07:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5701,7 +5338,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 417aecdd-c9fe-469d-a2f5-71d88d53fd52
+ - c1bf3146-9d86-4ec0-a99c-39e03f8dc3d9
status: 200 OK
code: 200
duration: ""
@@ -5712,10 +5349,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"69985695-06c7-464a-833c-3d3965cafaa9","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -5724,7 +5361,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:11 GMT
+ - Fri, 08 Dec 2023 16:07:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5734,7 +5371,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 538abb77-d19c-4631-bacf-0b2c77762006
+ - c2898ff3-6785-4dcd-99b1-bd44ae8edf2a
status: 404 Not Found
code: 404
duration: ""
@@ -5745,10 +5382,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -5757,7 +5394,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:12 GMT
+ - Fri, 08 Dec 2023 16:07:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5767,7 +5404,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b193748e-c8ba-4587-bfa6-9b30c41a1438
+ - 48a037ca-fbf2-4fe8-8888-97eb7c5b43cb
status: 404 Not Found
code: 404
duration: ""
@@ -5778,10 +5415,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1e57d71f-ace5-442e-899b-3b00963de302
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"aec43605-2d8e-4bf5-bcfe-37c7af1ff7e6","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"1e57d71f-ace5-442e-899b-3b00963de302","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -5790,7 +5427,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:12 GMT
+ - Fri, 08 Dec 2023 16:07:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5800,7 +5437,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6088157b-c7ef-4adb-b1d9-282c2f746d8f
+ - 41870004-a0ec-405a-9b89-32a3e519178c
status: 404 Not Found
code: 404
duration: ""
@@ -5811,10 +5448,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69985695-06c7-464a-833c-3d3965cafaa9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/da695ae6-a200-447a-9cd8-424f2403dbdb
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"69985695-06c7-464a-833c-3d3965cafaa9","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"da695ae6-a200-447a-9cd8-424f2403dbdb","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -5823,7 +5460,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:12 GMT
+ - Fri, 08 Dec 2023 16:07:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5833,7 +5470,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 881a3bc7-c5f1-4146-a365-8b63a59fcb84
+ - a13752c5-e117-4fd6-86a4-412bf2018070
status: 404 Not Found
code: 404
duration: ""
@@ -5844,10 +5481,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94774739-2f9f-4f34-8d2c-d537441e63b2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8bef4797-142d-4f23-a1dc-057549ee3a5d
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"94774739-2f9f-4f34-8d2c-d537441e63b2","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"8bef4797-142d-4f23-a1dc-057549ee3a5d","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -5856,7 +5493,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:13:12 GMT
+ - Fri, 08 Dec 2023 16:07:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5866,7 +5503,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b60438e4-078d-4e45-ad69-c1aff03d5cac
+ - 5dc79384-de6f-413d-ab05-c65dfbab90e9
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml
index 797bec23de..80411a3557 100644
--- a/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb5eeeb8-5340-4fd9-830d-4a57627d7222
+ - c00b7e82-245b-4fe6-b748-253bb53155d6
status: 200 OK
code: 200
duration: ""
@@ -50,16 +50,16 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:13.727465Z","dhcp_enabled":true,"id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.727465Z","id":"488240ba-5d41-4d09-b1b6-b2d469032b08","subnet":"172.16.20.0/22","updated_at":"2023-11-13T13:51:13.727465Z"},{"created_at":"2023-11-13T13:51:13.727465Z","id":"939c821c-e485-4b6a-a237-421d27ff4bb9","subnet":"fd63:256c:45f7:94cd::/64","updated_at":"2023-11-13T13:51:13.727465Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.727465Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.080502Z","dhcp_enabled":true,"id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.080502Z","id":"98f8edef-7a27-47a7-8e21-e7a91d140a0e","subnet":"172.16.28.0/22","updated_at":"2023-12-08T15:58:32.080502Z"},{"created_at":"2023-12-08T15:58:32.080502Z","id":"d1f037f5-1fbd-46e2-baab-9fb3fa2cb62f","subnet":"fd63:256c:45f7:e05::/64","updated_at":"2023-12-08T15:58:32.080502Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.080502Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "723"
+ - "722"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7169d981-deca-4eac-8dc0-aeae8d01d2dd
+ - 7a8d6ee1-b602-4f22-806a-0292220347fd
status: 200 OK
code: 200
duration: ""
@@ -80,19 +80,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/511ca9f5-fe23-4f59-b44a-7d1f5d2d202e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5931d8ac-b84f-479f-bf51-e5211b9735d0
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.727465Z","dhcp_enabled":true,"id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.727465Z","id":"488240ba-5d41-4d09-b1b6-b2d469032b08","subnet":"172.16.20.0/22","updated_at":"2023-11-13T13:51:13.727465Z"},{"created_at":"2023-11-13T13:51:13.727465Z","id":"939c821c-e485-4b6a-a237-421d27ff4bb9","subnet":"fd63:256c:45f7:94cd::/64","updated_at":"2023-11-13T13:51:13.727465Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.727465Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.080502Z","dhcp_enabled":true,"id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.080502Z","id":"98f8edef-7a27-47a7-8e21-e7a91d140a0e","subnet":"172.16.28.0/22","updated_at":"2023-12-08T15:58:32.080502Z"},{"created_at":"2023-12-08T15:58:32.080502Z","id":"d1f037f5-1fbd-46e2-baab-9fb3fa2cb62f","subnet":"fd63:256c:45f7:e05::/64","updated_at":"2023-12-08T15:58:32.080502Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.080502Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "723"
+ - "722"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3b4ede35-9f60-466f-923e-b87e10449e72
+ - a0fcde41-60bd-41bf-912d-ae30a63350ae
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-kubelet-args","description":"","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-kubelet-args","description":"","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399723932Z","created_at":"2023-11-13T13:51:18.399723932Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.415878104Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466203Z","created_at":"2023-12-08T15:58:33.122466203Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.135112899Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1519"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32277a31-d14d-43dd-885c-780729a10a08
+ - 77646947-faf1-461e-bad3-732e60106e19
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.415878Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.135113Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 421a0f09-ea70-4c23-9504-46bbf64416b4
+ - 914431be-5e09-4f8f-9748-cec25776e9c5
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.207669Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.935793Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 499d549a-ddbe-44a7-8271-8039614d6cd2
+ - 11f031a4-5b53-40dc-a985-67b1cb625dd3
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.207669Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.935793Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 909c1692-aaba-40f2-a801-d67ce98accb3
+ - 6e105810-23e5-4827-9728-33e84adb5a39
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZUU5V2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGl0YUNsaDBXa2N3UlU1V1ZFaHFjMnhpV0ZRclFtdDZNbEYwSzBkS1prcE9PVmhtYWs0eFFucHdaRmR2T1hkbVZERk5UVEprTXpsNWNHaENNM2wzWkZCNk1DOEthRmhZT1VkcVRHWkxWalJoU0hWeFV6TnZTV1prZUhwaFZqRnVNRGx1UjJwWmRHbFVZbkZOWVd0TVpUVkJhMDR5VjJGVlVXeFdjRE5yUVdoTVZraFNZd3BhYVU1SFFuUldaeTh2YkZweFRGbHBWMkpQYWtjeVdYZFBUVll5U2pkRU1rdHRRV2RzV21sTllsQmpTV0ZNYUdsMGF6STNRMU5RVlhjMGMwMVRWV2R2Q2s1cVpVMXJVMnB3UmpodU9ITk1NbTlpZDNRemJuVlBXalE0WkZGMGFUQlZZekpqTm01aWNrbGFSRU13TVdwT2NtWmpZU3RHYTJseFpGY3ZVR3hxTVdzS2FVZEtXbVZKUldReFUzWlBNSHB1Y0RkbGFHbElWSFF4Tm1JemRVdGhWbFpOZERBek9HRjFSRXBsZVZSWVZUTXJhMm80VFM5VVkyeFViMmhOZDFsTmVncE5aVVUzVTFOcVdVbHRXV0pHVlRaWFowUmpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZRMDUxVlZnNFUwWk5ORlY1WVVwVlJGTkRlbEVyUkVKbWRtSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNOMGh5ZFVodEsyNXhlVGRWTjNaVWN6WTFLMWgwV1RKc00wNUVlbTU1U3pGNVFYTnlkRVZ5YnpkVk1YZDZPVWxMVHdveGVDOXhWbTFqU0d0RlFsbGlObGxOWWtoSlFtcG9VMUoyYVZoWVZURmlhRFpoVlRFeFMwRmFUMGg1Y2trMFdVTXpVM0JXU25VMmVXbFVWa2RhU3pZNUNtUlhMMnRCYW1wV1ExUXlTR1J5TlVaTWNrWnFaRm81VDFobFRUbFhZa3BtZVVOVlZYRTJWMjgwZFVoc1ZFcDNWRnB6YTB4cWNFVkpZMVkxT1RJMFQwc0tVRk5rWVc4ck9UVjRZWFl2U1dWWE9HVmtSV05SUVRSSWNXRmpibTFPZVhWR2VrWjVOVEppTDJ4UWIyZ3pWVmhoZUd0MVMwcHRVa2x5TWxNcmRESldXZ3A2Y1daV2VsSTRPVTlQUTJoMVVrdHpZMUJtVVVkc1prUnNNRzVMYTJsT1luQkhkMjlMVjBnMFoySTFTbW8wTm1vclQzTlpSaXR0VkdoRFRIZzBNU3R6Q21KTGMzcEhZMVJ3ZG0xbVpXaG1RblJ2WkVoYUswMTFSREYxVlVZeVpFaDVXamhMU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3MmY5N2JiLTk3Y2EtNDRjYi05MzMwLWQ3N2UwZDA5YzIwMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSV2t1OXNrS0R0Z1hHR2R3VnZ5U3o4dVhHMk16QmNuQmI5QzJZNFpBYUl6eVM4T2piOXozbU1lYg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzJGakNrWXhSMEZCYzFaSGNIbFJiV2RvUWxadVJIcEZlalZ2UjNvemNHMXFXVlZpU0VJMWQxQTJZMUp5WjJSRk5FeHFiR1EwT0VKUVdEQllWV1ZFTmk5blltVUtORFJhTjFGSlIweFNSVTVZV2xwaVRGSlVTVFZWT1cxUmNXZzRhbFZQV0RkQlNuVnpZa2gwTlZSNk1YTk5ZM2RPZFVKaFlXeHdVVUkzYldwNFRIQlpVZ3BzYUhWNVptRkJabmhFYTNKNFlsQm9WRkZRTVVzdmNVc3dkVzgxYlZKaGFXbE1kMEo2Tm10YU0xUlBSR1pQV0dGMFRFaGtWa1pwVWxsdFNGSjVjMEpRQ2tKcVZERTRZVlZsS3l0SlRtMHlUalJTYTJ0b0wyOTZjM0pIVEdwUVowUjZjM2huTTFkVFpVVmxNVEZHT1ZSMlptTXljWFZLTmpKaVEwWkNVM0kzY2tvS2RHaGpPWEEyYlRZclIwUlNNVE0wYTFkTlVYb3pVaTl4YUc0eGQyZ3libkZLTjFscGNHTnVTRVphYVhaclRrSXdUa1JYZUZoWFZXMXRUa2cxTTJOTmJRb3liR1JZVlVWbU1DOW9OSFJPVnpKa2JtTnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhSbXQ2ZGpCYVUyaDNaa1JTZGtaVllTczRWM0pzU201RWNIbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJUR2xWYjJ0MGRHWkRPRnBuTkRkUE5qVm9hRXRCVW1Gb2IxZHZlSFIxYWpBeFZFSkpXSFpOYmt4WmNuWmtabTh6U0FvdmQyOUNOMnhGWm1kRmRISnBSa0pVWWtSTkszZENiM3BUUXk4dmRWQk5WazlqTHpGQ1F6QXhkazFrVm5CNWIyTkZNRGhuTUhGWFpURjJja0phUTBNNENsRlRhMlozUkZGWGEwRllPR3hKZG5aUE5sSjNPVVJVWkVaWFJWZHVUQ3RoWWxsTlVISktWRVZUYkdSNFdrVldVM1ZHVGtaUlRrZzBVMjFaZG5SWFkwY0tjRGxYTDJ0NFVrcG9VVUl6T0ZsM2NTdHVUbk54VUN0RkswY3haMGx4YlVwTWVFdzVTMUp6WnpKdU5HaFRXV0ZUYlRKVlRFeFlaR2RHTVRaVFdVVkVid3BEUkRsSk1tOXlUMGxQUjNoTldWcDBiWFozZDBGaFRqTkNXbkJOVG1nMUszRXllRFJrTTNsaGIxTXpWRVZ4ZUZaNGRYRlRNVUpOV0VSVVZrMTFRblpCQ25nMlpXZHpjelZuWVZGU1EzcEtVRGRUTTBSaVp6aHdTR0ozV201SlJWQldTMHcyYUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzQ4OTg2Y2NjLTQ4YmEtNDA3NS1hMDY2LTEzY2QwNTg1OWVlNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKdXBwU2JGMjF4Wk1KQzdyd0p4NldCVVRkbmdSUTB1WHl1NWFSVDhGeHhaNkd2ZXhFM2h2WHdZMg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2670"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7da32ba7-e159-4e0c-9f73-47ba7add039c
+ - 9a9509dc-9bf6-4c8a-8f63-0657a86b824f
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.207669Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.935793Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 73302b8e-159d-4c40-a65c-1ce1c657adaf
+ - e08805f8-fda8-4d9d-8961-c5c4bdacc192
status: 200 OK
code: 200
duration: ""
@@ -315,10 +315,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/pools
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/pools
method: POST
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654336Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533248Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "707"
@@ -327,7 +327,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -337,7 +337,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ecdb2cf-8e43-46fe-8094-c34e2c10f3d8
+ - 5f8fefb9-e12c-4a85-b0a0-2301a0db9e6f
status: 200 OK
code: 200
duration: ""
@@ -348,10 +348,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -360,7 +360,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -370,7 +370,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 49a60064-904a-4a03-98e0-cac935d4c1f8
+ - 911180a5-ea5e-48c5-ab4a-550370f81d47
status: 200 OK
code: 200
duration: ""
@@ -381,10 +381,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -393,7 +393,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:29 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -403,7 +403,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 705c5fab-c84b-4a15-a7a9-d90ba6fa536a
+ - 460a18f8-5800-4104-9bc9-30328f68505a
status: 200 OK
code: 200
duration: ""
@@ -414,10 +414,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -426,7 +426,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:34 GMT
+ - Fri, 08 Dec 2023 15:58:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -436,7 +436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a668bd35-7216-46ee-ab8d-0d428064f920
+ - 6d66aa9b-d9d6-4833-8e54-a45814e13b15
status: 200 OK
code: 200
duration: ""
@@ -447,10 +447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -459,7 +459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:40 GMT
+ - Fri, 08 Dec 2023 15:58:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -469,7 +469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6d6af8cb-e762-463d-ad25-98706e15643f
+ - 59d396a9-f956-4746-a8e7-4e5b8d1cdc80
status: 200 OK
code: 200
duration: ""
@@ -480,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -492,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:45 GMT
+ - Fri, 08 Dec 2023 15:59:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ced36f49-ceec-4674-9a20-843c322d61e6
+ - 35979213-f61e-4d20-8ec2-22d33e1c7ebd
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:50 GMT
+ - Fri, 08 Dec 2023 15:59:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0875589e-1a2a-4421-bed6-0db38dcbff40
+ - 919412c2-f89f-4169-bf36-b7beded149ed
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 15:59:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f6a9ce0-10e6-4371-9105-afe5c733bdc2
+ - 831dfed4-e558-44b7-a113-abf40c755ab6
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:00 GMT
+ - Fri, 08 Dec 2023 15:59:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea299a92-04bf-4bf6-955b-558fe2cc0135
+ - cf8b51c9-83da-4732-ac29-aa1c81d9c05c
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:05 GMT
+ - Fri, 08 Dec 2023 15:59:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 766135fa-87a6-4275-8d43-4daa5aa33bf1
+ - 4b2e42a0-f867-4a21-b5a8-807554cbd867
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:10 GMT
+ - Fri, 08 Dec 2023 15:59:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cd9a41f4-04f1-4a8d-9eb4-4939af662775
+ - fcea4615-7389-4897-9515-68b78568025a
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:15 GMT
+ - Fri, 08 Dec 2023 15:59:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f0996640-1ce8-4807-bc94-8596951dcf42
+ - 886e90c4-fbf2-4fbb-9e52-773a5b4c061f
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:20 GMT
+ - Fri, 08 Dec 2023 15:59:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f79895b-d8bd-4d5c-866e-4a77af2462fb
+ - b16446a2-a587-41d7-810e-7f325f5ccb85
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:25 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0c771832-1036-43e5-83b9-f5266754a044
+ - 5b100c4c-28a0-402e-bf2f-78c27353547f
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:31 GMT
+ - Fri, 08 Dec 2023 15:59:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 178e9b5c-9349-4ac3-8d55-1d17e97da3c4
+ - 460f92c5-aa28-4eaf-9fac-cc9acfa784a8
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:36 GMT
+ - Fri, 08 Dec 2023 15:59:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 651ff7d1-c42c-4cf1-aec1-63f48009297c
+ - 672d4490-e03f-435c-bd14-370c2def6986
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:41 GMT
+ - Fri, 08 Dec 2023 15:59:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ad2cf91-87a3-4bcc-b79a-0cbd4ea14694
+ - 7a9a8674-59c3-4667-8d41-7b2fc1c82af2
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:46 GMT
+ - Fri, 08 Dec 2023 16:00:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5418f478-189e-4398-bc4e-022b040123a2
+ - d7a0232f-edcc-47a8-b4e2-7e10b41d94e4
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:51 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 85065447-5bda-4945-a36e-437a22d913f7
+ - df26daf8-9282-4ce5-af6b-c0ef06eb16b7
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:57 GMT
+ - Fri, 08 Dec 2023 16:00:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8e9d8f22-3e44-42dc-86fc-7fea2111f6ff
+ - 4a262f69-a5ac-4630-9832-590b79b97f24
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:02 GMT
+ - Fri, 08 Dec 2023 16:00:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0c64442d-fdbf-4713-a7ad-f486dc238914
+ - 62397543-b923-4b02-94b9-77fcca35194d
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:07 GMT
+ - Fri, 08 Dec 2023 16:00:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e2ef40f5-f36d-4e26-bd7c-b5127202d7aa
+ - d069cd17-ff9a-4922-8728-54a1f85a58cf
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1053,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:12 GMT
+ - Fri, 08 Dec 2023 16:00:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e29e98e-ab85-4792-a024-c7bcb4605327
+ - afd1257f-8a8b-4570-830f-2b381c4f8c18
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1086,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:17 GMT
+ - Fri, 08 Dec 2023 16:00:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f3d0ccea-00d0-48a2-a2fa-ad4124b3be8f
+ - 9211b594-faf9-491c-b75f-5017c88c652c
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1119,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:22 GMT
+ - Fri, 08 Dec 2023 16:01:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9136e230-4a26-464a-bc2f-09dac5fff16f
+ - 2b788cfd-258f-4b1a-a126-a4e980078f1e
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1152,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:28 GMT
+ - Fri, 08 Dec 2023 16:01:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0addecec-818d-4e42-81d2-670aa13c2a05
+ - af9f10e4-bb7d-4b3f-a29b-52c7eca3d12d
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1185,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:33 GMT
+ - Fri, 08 Dec 2023 16:01:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 72f84fc5-d2c0-47fc-80d4-d64871f4ff3a
+ - 27a422ab-5262-4e0a-b208-db376852b7e8
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1218,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:38 GMT
+ - Fri, 08 Dec 2023 16:01:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fa2ef82c-4dd8-49b3-a820-3463410cb321
+ - 9d596a52-a6e9-41d2-91c8-377f8857d7ac
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:43 GMT
+ - Fri, 08 Dec 2023 16:01:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76062561-0c86-49e4-b76c-453c25ba52eb
+ - 424e60ac-1db2-48ec-94f4-210037752a13
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1284,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:48 GMT
+ - Fri, 08 Dec 2023 16:01:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a1645cdc-d0fd-4131-a32e-b5d60a74ab08
+ - a1338ea1-c1ce-480c-ab05-43b3786cc881
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1317,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:53 GMT
+ - Fri, 08 Dec 2023 16:01:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e8895b0-bd0b-40b4-9a1c-1f70c524a469
+ - d4e61f65-d8ac-42c4-9479-a596f01a89fe
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1350,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:58 GMT
+ - Fri, 08 Dec 2023 16:01:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1fc406d0-91e0-4111-89f0-e4ed27bd11f7
+ - 7230e75a-ba5b-42ca-abcd-9a161bfc6a6e
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1383,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:03 GMT
+ - Fri, 08 Dec 2023 16:01:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e5926ad-3201-4e47-afd5-ea8c4366da0c
+ - ac8de9f1-e2a5-4824-94df-ff800ea38ca4
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1416,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:08 GMT
+ - Fri, 08 Dec 2023 16:01:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 887b8d26-9497-437f-8fee-2ea2229a2374
+ - 8500b09b-e77e-419e-8ce2-27a32a422524
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1449,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:13 GMT
+ - Fri, 08 Dec 2023 16:01:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 527dcab2-bbd4-4296-9f3d-77e94a1b5c91
+ - 4d03d389-9025-413f-8619-3754ddaeb867
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1482,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:18 GMT
+ - Fri, 08 Dec 2023 16:02:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fda9ad7e-55aa-4753-b6ea-094c20be0f3e
+ - d95702b6-efe5-4826-892e-93fa16e07d54
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:23 GMT
+ - Fri, 08 Dec 2023 16:02:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b2fd7632-e807-4ff6-935d-aac2fb4e4b98
+ - 6cde5494-f169-42ed-b467-37b17df1aaea
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1548,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:29 GMT
+ - Fri, 08 Dec 2023 16:02:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b409e425-1626-4c5f-9d04-e06453ed17da
+ - 606d473c-2964-4c41-b84b-6654d5f95ff8
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1581,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:34 GMT
+ - Fri, 08 Dec 2023 16:02:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 888c7315-6a22-4ad3-ab25-87f98e1b1f81
+ - 802a33a3-6b2a-4cb7-957b-75d3c1016740
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1614,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:39 GMT
+ - Fri, 08 Dec 2023 16:02:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65cccc13-30ab-4ec7-9ca6-88e47bdbac95
+ - 70f5ac93-61a7-4fde-8f58-39f8f3ea47f3
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1647,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:44 GMT
+ - Fri, 08 Dec 2023 16:02:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb25af56-b678-4bd9-b664-98f13d7a70df
+ - 08bc4ba0-89b5-4df3-b80a-9d9d90d9918d
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1680,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:49 GMT
+ - Fri, 08 Dec 2023 16:02:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2fe4040-83b5-4e82-88f7-278dfd114510
+ - 384352e1-9f1b-4bee-89c5-9a701e37aeab
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1713,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:54 GMT
+ - Fri, 08 Dec 2023 16:02:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 12d5eb99-d230-41f1-b06c-70bbb9ba6104
+ - f6c35786-c292-463c-a7bd-09bca74691ec
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1746,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:59 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a0375405-81c3-4151-bbf4-61f47868490a
+ - c1fad453-7403-4816-9045-caf5c93e613d
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1779,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:04 GMT
+ - Fri, 08 Dec 2023 16:02:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6d739025-4b8f-4b44-97d7-780f3ebbbd3a
+ - bf005305-669f-411b-8337-567716f22e14
status: 200 OK
code: 200
duration: ""
@@ -1800,10 +1800,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1812,7 +1812,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:09 GMT
+ - Fri, 08 Dec 2023 16:02:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04940d87-4c39-4dea-a056-ace0c759c62c
+ - 8c0b6482-138a-4533-967b-f6741bbe3fc9
status: 200 OK
code: 200
duration: ""
@@ -1833,10 +1833,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1845,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:14 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 083e846f-cb42-49da-b90c-b429a40bd244
+ - c26862bd-b3b5-44f5-a606-c9c96d633254
status: 200 OK
code: 200
duration: ""
@@ -1866,10 +1866,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1878,7 +1878,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:20 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f6de346-7b14-45e8-b0f9-9fd63b2a88e4
+ - 09a42795-fabb-4813-9197-5522b0244fc8
status: 200 OK
code: 200
duration: ""
@@ -1899,10 +1899,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T15:58:38.636533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "704"
@@ -1911,7 +1911,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:25 GMT
+ - Fri, 08 Dec 2023 16:03:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ed2751a-49df-47f5-9504-ad383a82017b
+ - f726d3f7-fe49-4b2a-a526-ccdd1ac4fed1
status: 200 OK
code: 200
duration: ""
@@ -1932,439 +1932,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:30 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b49f5cb8-5e76-4799-aadc-caf79d3e2e4c
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:35 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2862b9e6-957d-44fb-a8ef-37fe128dcfca
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:40 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 83e18ed1-96f5-45c7-b773-50dd5321e87f
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:45 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 314b0f59-2190-47b7-b4b8-bc5466159caa
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:51 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f10bc343-16fa-4b6a-8fae-3181f71aa4f3
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e6279897-32de-40d6-860e-621c7c9b6c8a
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:01 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 094d427b-69b8-4c5f-af5d-abe8a5098585
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:06 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 278f2352-4fce-4c55-bddb-78566aaa54ed
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:11 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b002abf3-f094-41b2-87e7-21161afdef8d
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 40fd6f9c-db84-4411-8f13-d000f056ff7f
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:21 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dc6efa7e-f926-4692-a2ee-30fb8b86f2ed
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 296adc38-b80a-48a9-84d0-19015bb70181
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:51:23.845654Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "704"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:32 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9d69e865-0c86-4024-abe4-ca688cf6b5ce
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:36.132559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:10.333373Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "702"
@@ -2373,7 +1944,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2383,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fef9e892-2b8e-49ac-9498-0b8fab60109d
+ - 2cae58a6-0be5-454f-b1e9-c5d20a025c75
status: 200 OK
code: 200
duration: ""
@@ -2394,10 +1965,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:53:07.031299Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.536615Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -2406,7 +1977,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2416,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 373ddebb-5583-4df1-8021-ec7075236c55
+ - d5cbf922-ea4e-48cd-b485-6a730413225c
status: 200 OK
code: 200
duration: ""
@@ -2427,10 +1998,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:36.132559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:10.333373Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "702"
@@ -2439,7 +2010,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2449,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d1379fdc-3caf-4bed-aa76-46f102971a02
+ - 796d7fc8-72d7-4177-98b8-77064569c6d0
status: 200 OK
code: 200
duration: ""
@@ -2460,10 +2031,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/nodes?order_by=created_at_asc&page=1&pool_id=4b3e3185-7e9a-405b-aa91-d57a3e648a76&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/nodes?order_by=created_at_asc&page=1&pool_id=89120950-93f4-4057-bbd1-43690c00f0b0&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:33.625301Z","error_message":null,"id":"57a0a7bc-4bfe-4f7e-ba2c-561da517d857","name":"scw-test-pool-kubelet-test-pool-kubelet-57a0a7","pool_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","provider_id":"scaleway://instance/fr-par-1/72e04501-cdd6-472a-bbae-df560e8b8463","public_ip_v4":"163.172.144.233","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:36.115428Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:13.700796Z","error_message":null,"id":"ee7ccfda-306a-401c-9dc8-ec8082dc2c20","name":"scw-test-pool-kubelet-test-pool-kubelet-ee7ccf","pool_id":"89120950-93f4-4057-bbd1-43690c00f0b0","provider_id":"scaleway://instance/fr-par-1/a6326082-1f2f-4122-b05a-39581ea342e7","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:10.312780Z"}],"total_count":1}'
headers:
Content-Length:
- "660"
@@ -2472,7 +2043,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2482,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86535bf9-716f-48eb-8be1-5b42acda8fc8
+ - 5bd1c558-0814-4f8e-a57d-2f6f17791fff
status: 200 OK
code: 200
duration: ""
@@ -2493,10 +2064,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:53:07.031299Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.536615Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -2505,7 +2076,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2515,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d091959-3bc7-47cc-994f-05dd3340c117
+ - 7bacf219-1d93-4172-a036-16ea383611a2
status: 200 OK
code: 200
duration: ""
@@ -2526,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:36.132559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:10.333373Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "702"
@@ -2538,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2548,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 632f91af-f07c-48e1-867d-ee9de5cbea5a
+ - 3afb8e0b-ce60-4bce-ba41-a5192b4a9942
status: 200 OK
code: 200
duration: ""
@@ -2559,19 +2130,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/511ca9f5-fe23-4f59-b44a-7d1f5d2d202e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5931d8ac-b84f-479f-bf51-e5211b9735d0
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.727465Z","dhcp_enabled":true,"id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.727465Z","id":"488240ba-5d41-4d09-b1b6-b2d469032b08","subnet":"172.16.20.0/22","updated_at":"2023-11-13T13:51:13.727465Z"},{"created_at":"2023-11-13T13:51:13.727465Z","id":"939c821c-e485-4b6a-a237-421d27ff4bb9","subnet":"fd63:256c:45f7:94cd::/64","updated_at":"2023-11-13T13:51:13.727465Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.727465Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.080502Z","dhcp_enabled":true,"id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.080502Z","id":"98f8edef-7a27-47a7-8e21-e7a91d140a0e","subnet":"172.16.28.0/22","updated_at":"2023-12-08T15:58:32.080502Z"},{"created_at":"2023-12-08T15:58:32.080502Z","id":"d1f037f5-1fbd-46e2-baab-9fb3fa2cb62f","subnet":"fd63:256c:45f7:e05::/64","updated_at":"2023-12-08T15:58:32.080502Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.080502Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "723"
+ - "722"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:37 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2581,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c7bf47ef-2f94-41e0-ab57-460876491c4c
+ - 7535f8ff-dfae-4096-9d32-3df5a595078e
status: 200 OK
code: 200
duration: ""
@@ -2592,10 +2163,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:53:07.031299Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.536615Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -2604,7 +2175,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2614,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a87aab3-d542-4cb4-a530-e6d09ef8332c
+ - 0500fe84-26ed-4700-99b9-1ab212b251ed
status: 200 OK
code: 200
duration: ""
@@ -2625,10 +2196,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZUU5V2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGl0YUNsaDBXa2N3UlU1V1ZFaHFjMnhpV0ZRclFtdDZNbEYwSzBkS1prcE9PVmhtYWs0eFFucHdaRmR2T1hkbVZERk5UVEprTXpsNWNHaENNM2wzWkZCNk1DOEthRmhZT1VkcVRHWkxWalJoU0hWeFV6TnZTV1prZUhwaFZqRnVNRGx1UjJwWmRHbFVZbkZOWVd0TVpUVkJhMDR5VjJGVlVXeFdjRE5yUVdoTVZraFNZd3BhYVU1SFFuUldaeTh2YkZweFRGbHBWMkpQYWtjeVdYZFBUVll5U2pkRU1rdHRRV2RzV21sTllsQmpTV0ZNYUdsMGF6STNRMU5RVlhjMGMwMVRWV2R2Q2s1cVpVMXJVMnB3UmpodU9ITk1NbTlpZDNRemJuVlBXalE0WkZGMGFUQlZZekpqTm01aWNrbGFSRU13TVdwT2NtWmpZU3RHYTJseFpGY3ZVR3hxTVdzS2FVZEtXbVZKUldReFUzWlBNSHB1Y0RkbGFHbElWSFF4Tm1JemRVdGhWbFpOZERBek9HRjFSRXBsZVZSWVZUTXJhMm80VFM5VVkyeFViMmhOZDFsTmVncE5aVVUzVTFOcVdVbHRXV0pHVlRaWFowUmpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZRMDUxVlZnNFUwWk5ORlY1WVVwVlJGTkRlbEVyUkVKbWRtSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNOMGh5ZFVodEsyNXhlVGRWTjNaVWN6WTFLMWgwV1RKc00wNUVlbTU1U3pGNVFYTnlkRVZ5YnpkVk1YZDZPVWxMVHdveGVDOXhWbTFqU0d0RlFsbGlObGxOWWtoSlFtcG9VMUoyYVZoWVZURmlhRFpoVlRFeFMwRmFUMGg1Y2trMFdVTXpVM0JXU25VMmVXbFVWa2RhU3pZNUNtUlhMMnRCYW1wV1ExUXlTR1J5TlVaTWNrWnFaRm81VDFobFRUbFhZa3BtZVVOVlZYRTJWMjgwZFVoc1ZFcDNWRnB6YTB4cWNFVkpZMVkxT1RJMFQwc0tVRk5rWVc4ck9UVjRZWFl2U1dWWE9HVmtSV05SUVRSSWNXRmpibTFPZVhWR2VrWjVOVEppTDJ4UWIyZ3pWVmhoZUd0MVMwcHRVa2x5TWxNcmRESldXZ3A2Y1daV2VsSTRPVTlQUTJoMVVrdHpZMUJtVVVkc1prUnNNRzVMYTJsT1luQkhkMjlMVjBnMFoySTFTbW8wTm1vclQzTlpSaXR0VkdoRFRIZzBNU3R6Q21KTGMzcEhZMVJ3ZG0xbVpXaG1RblJ2WkVoYUswMTFSREYxVlVZeVpFaDVXamhMU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3MmY5N2JiLTk3Y2EtNDRjYi05MzMwLWQ3N2UwZDA5YzIwMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSV2t1OXNrS0R0Z1hHR2R3VnZ5U3o4dVhHMk16QmNuQmI5QzJZNFpBYUl6eVM4T2piOXozbU1lYg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzJGakNrWXhSMEZCYzFaSGNIbFJiV2RvUWxadVJIcEZlalZ2UjNvemNHMXFXVlZpU0VJMWQxQTJZMUp5WjJSRk5FeHFiR1EwT0VKUVdEQllWV1ZFTmk5blltVUtORFJhTjFGSlIweFNSVTVZV2xwaVRGSlVTVFZWT1cxUmNXZzRhbFZQV0RkQlNuVnpZa2gwTlZSNk1YTk5ZM2RPZFVKaFlXeHdVVUkzYldwNFRIQlpVZ3BzYUhWNVptRkJabmhFYTNKNFlsQm9WRkZRTVVzdmNVc3dkVzgxYlZKaGFXbE1kMEo2Tm10YU0xUlBSR1pQV0dGMFRFaGtWa1pwVWxsdFNGSjVjMEpRQ2tKcVZERTRZVlZsS3l0SlRtMHlUalJTYTJ0b0wyOTZjM0pIVEdwUVowUjZjM2huTTFkVFpVVmxNVEZHT1ZSMlptTXljWFZLTmpKaVEwWkNVM0kzY2tvS2RHaGpPWEEyYlRZclIwUlNNVE0wYTFkTlVYb3pVaTl4YUc0eGQyZ3libkZLTjFscGNHTnVTRVphYVhaclRrSXdUa1JYZUZoWFZXMXRUa2cxTTJOTmJRb3liR1JZVlVWbU1DOW9OSFJPVnpKa2JtTnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhSbXQ2ZGpCYVUyaDNaa1JTZGtaVllTczRWM0pzU201RWNIbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJUR2xWYjJ0MGRHWkRPRnBuTkRkUE5qVm9hRXRCVW1Gb2IxZHZlSFIxYWpBeFZFSkpXSFpOYmt4WmNuWmtabTh6U0FvdmQyOUNOMnhGWm1kRmRISnBSa0pVWWtSTkszZENiM3BUUXk4dmRWQk5WazlqTHpGQ1F6QXhkazFrVm5CNWIyTkZNRGhuTUhGWFpURjJja0phUTBNNENsRlRhMlozUkZGWGEwRllPR3hKZG5aUE5sSjNPVVJVWkVaWFJWZHVUQ3RoWWxsTlVISktWRVZUYkdSNFdrVldVM1ZHVGtaUlRrZzBVMjFaZG5SWFkwY0tjRGxYTDJ0NFVrcG9VVUl6T0ZsM2NTdHVUbk54VUN0RkswY3haMGx4YlVwTWVFdzVTMUp6WnpKdU5HaFRXV0ZUYlRKVlRFeFlaR2RHTVRaVFdVVkVid3BEUkRsSk1tOXlUMGxQUjNoTldWcDBiWFozZDBGaFRqTkNXbkJOVG1nMUszRXllRFJrTTNsaGIxTXpWRVZ4ZUZaNGRYRlRNVUpOV0VSVVZrMTFRblpCQ25nMlpXZHpjelZuWVZGU1EzcEtVRGRUTTBSaVp6aHdTR0ozV201SlJWQldTMHcyYUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzQ4OTg2Y2NjLTQ4YmEtNDA3NS1hMDY2LTEzY2QwNTg1OWVlNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKdXBwU2JGMjF4Wk1KQzdyd0p4NldCVVRkbmdSUTB1WHl1NWFSVDhGeHhaNkd2ZXhFM2h2WHdZMg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2670"
@@ -2637,7 +2208,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2647,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7b0decad-0931-47fd-9870-a75fd1210cdd
+ - 0c4777a1-9303-4614-b4fb-885a24aa155d
status: 200 OK
code: 200
duration: ""
@@ -2658,10 +2229,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:36.132559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:10.333373Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "702"
@@ -2670,7 +2241,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2680,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b562aea-121a-40f2-a9ea-26b08712732e
+ - 9a7bee9a-4c23-4758-b010-0d5669be9784
status: 200 OK
code: 200
duration: ""
@@ -2691,10 +2262,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/nodes?order_by=created_at_asc&page=1&pool_id=4b3e3185-7e9a-405b-aa91-d57a3e648a76&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/nodes?order_by=created_at_asc&page=1&pool_id=89120950-93f4-4057-bbd1-43690c00f0b0&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:33.625301Z","error_message":null,"id":"57a0a7bc-4bfe-4f7e-ba2c-561da517d857","name":"scw-test-pool-kubelet-test-pool-kubelet-57a0a7","pool_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","provider_id":"scaleway://instance/fr-par-1/72e04501-cdd6-472a-bbae-df560e8b8463","public_ip_v4":"163.172.144.233","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:36.115428Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:13.700796Z","error_message":null,"id":"ee7ccfda-306a-401c-9dc8-ec8082dc2c20","name":"scw-test-pool-kubelet-test-pool-kubelet-ee7ccf","pool_id":"89120950-93f4-4057-bbd1-43690c00f0b0","provider_id":"scaleway://instance/fr-par-1/a6326082-1f2f-4122-b05a-39581ea342e7","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:10.312780Z"}],"total_count":1}'
headers:
Content-Length:
- "660"
@@ -2703,7 +2274,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2713,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b8e5a5d7-f115-48cd-8f79-7de3899bd122
+ - 989cdac3-7da9-4098-bb5c-e1119aa2f2a2
status: 200 OK
code: 200
duration: ""
@@ -2724,19 +2295,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/511ca9f5-fe23-4f59-b44a-7d1f5d2d202e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5931d8ac-b84f-479f-bf51-e5211b9735d0
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.727465Z","dhcp_enabled":true,"id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.727465Z","id":"488240ba-5d41-4d09-b1b6-b2d469032b08","subnet":"172.16.20.0/22","updated_at":"2023-11-13T13:51:13.727465Z"},{"created_at":"2023-11-13T13:51:13.727465Z","id":"939c821c-e485-4b6a-a237-421d27ff4bb9","subnet":"fd63:256c:45f7:94cd::/64","updated_at":"2023-11-13T13:51:13.727465Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.727465Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.080502Z","dhcp_enabled":true,"id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.080502Z","id":"98f8edef-7a27-47a7-8e21-e7a91d140a0e","subnet":"172.16.28.0/22","updated_at":"2023-12-08T15:58:32.080502Z"},{"created_at":"2023-12-08T15:58:32.080502Z","id":"d1f037f5-1fbd-46e2-baab-9fb3fa2cb62f","subnet":"fd63:256c:45f7:e05::/64","updated_at":"2023-12-08T15:58:32.080502Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.080502Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "723"
+ - "722"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2746,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 61d4d548-2771-4c24-ac96-e235eec9bd0f
+ - c26cb8d8-acfe-487f-b9aa-15ebe86125e7
status: 200 OK
code: 200
duration: ""
@@ -2757,10 +2328,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:53:07.031299Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.536615Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -2769,7 +2340,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2779,7 +2350,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 161424d8-e3b7-4741-9c16-4d2feddfc89b
+ - 03a97d91-fc93-46ec-9264-3d0c28d3e736
status: 200 OK
code: 200
duration: ""
@@ -2790,10 +2361,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZUU5V2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGl0YUNsaDBXa2N3UlU1V1ZFaHFjMnhpV0ZRclFtdDZNbEYwSzBkS1prcE9PVmhtYWs0eFFucHdaRmR2T1hkbVZERk5UVEprTXpsNWNHaENNM2wzWkZCNk1DOEthRmhZT1VkcVRHWkxWalJoU0hWeFV6TnZTV1prZUhwaFZqRnVNRGx1UjJwWmRHbFVZbkZOWVd0TVpUVkJhMDR5VjJGVlVXeFdjRE5yUVdoTVZraFNZd3BhYVU1SFFuUldaeTh2YkZweFRGbHBWMkpQYWtjeVdYZFBUVll5U2pkRU1rdHRRV2RzV21sTllsQmpTV0ZNYUdsMGF6STNRMU5RVlhjMGMwMVRWV2R2Q2s1cVpVMXJVMnB3UmpodU9ITk1NbTlpZDNRemJuVlBXalE0WkZGMGFUQlZZekpqTm01aWNrbGFSRU13TVdwT2NtWmpZU3RHYTJseFpGY3ZVR3hxTVdzS2FVZEtXbVZKUldReFUzWlBNSHB1Y0RkbGFHbElWSFF4Tm1JemRVdGhWbFpOZERBek9HRjFSRXBsZVZSWVZUTXJhMm80VFM5VVkyeFViMmhOZDFsTmVncE5aVVUzVTFOcVdVbHRXV0pHVlRaWFowUmpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZRMDUxVlZnNFUwWk5ORlY1WVVwVlJGTkRlbEVyUkVKbWRtSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNOMGh5ZFVodEsyNXhlVGRWTjNaVWN6WTFLMWgwV1RKc00wNUVlbTU1U3pGNVFYTnlkRVZ5YnpkVk1YZDZPVWxMVHdveGVDOXhWbTFqU0d0RlFsbGlObGxOWWtoSlFtcG9VMUoyYVZoWVZURmlhRFpoVlRFeFMwRmFUMGg1Y2trMFdVTXpVM0JXU25VMmVXbFVWa2RhU3pZNUNtUlhMMnRCYW1wV1ExUXlTR1J5TlVaTWNrWnFaRm81VDFobFRUbFhZa3BtZVVOVlZYRTJWMjgwZFVoc1ZFcDNWRnB6YTB4cWNFVkpZMVkxT1RJMFQwc0tVRk5rWVc4ck9UVjRZWFl2U1dWWE9HVmtSV05SUVRSSWNXRmpibTFPZVhWR2VrWjVOVEppTDJ4UWIyZ3pWVmhoZUd0MVMwcHRVa2x5TWxNcmRESldXZ3A2Y1daV2VsSTRPVTlQUTJoMVVrdHpZMUJtVVVkc1prUnNNRzVMYTJsT1luQkhkMjlMVjBnMFoySTFTbW8wTm1vclQzTlpSaXR0VkdoRFRIZzBNU3R6Q21KTGMzcEhZMVJ3ZG0xbVpXaG1RblJ2WkVoYUswMTFSREYxVlVZeVpFaDVXamhMU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3MmY5N2JiLTk3Y2EtNDRjYi05MzMwLWQ3N2UwZDA5YzIwMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSV2t1OXNrS0R0Z1hHR2R3VnZ5U3o4dVhHMk16QmNuQmI5QzJZNFpBYUl6eVM4T2piOXozbU1lYg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzJGakNrWXhSMEZCYzFaSGNIbFJiV2RvUWxadVJIcEZlalZ2UjNvemNHMXFXVlZpU0VJMWQxQTJZMUp5WjJSRk5FeHFiR1EwT0VKUVdEQllWV1ZFTmk5blltVUtORFJhTjFGSlIweFNSVTVZV2xwaVRGSlVTVFZWT1cxUmNXZzRhbFZQV0RkQlNuVnpZa2gwTlZSNk1YTk5ZM2RPZFVKaFlXeHdVVUkzYldwNFRIQlpVZ3BzYUhWNVptRkJabmhFYTNKNFlsQm9WRkZRTVVzdmNVc3dkVzgxYlZKaGFXbE1kMEo2Tm10YU0xUlBSR1pQV0dGMFRFaGtWa1pwVWxsdFNGSjVjMEpRQ2tKcVZERTRZVlZsS3l0SlRtMHlUalJTYTJ0b0wyOTZjM0pIVEdwUVowUjZjM2huTTFkVFpVVmxNVEZHT1ZSMlptTXljWFZLTmpKaVEwWkNVM0kzY2tvS2RHaGpPWEEyYlRZclIwUlNNVE0wYTFkTlVYb3pVaTl4YUc0eGQyZ3libkZLTjFscGNHTnVTRVphYVhaclRrSXdUa1JYZUZoWFZXMXRUa2cxTTJOTmJRb3liR1JZVlVWbU1DOW9OSFJPVnpKa2JtTnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhSbXQ2ZGpCYVUyaDNaa1JTZGtaVllTczRWM0pzU201RWNIbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJUR2xWYjJ0MGRHWkRPRnBuTkRkUE5qVm9hRXRCVW1Gb2IxZHZlSFIxYWpBeFZFSkpXSFpOYmt4WmNuWmtabTh6U0FvdmQyOUNOMnhGWm1kRmRISnBSa0pVWWtSTkszZENiM3BUUXk4dmRWQk5WazlqTHpGQ1F6QXhkazFrVm5CNWIyTkZNRGhuTUhGWFpURjJja0phUTBNNENsRlRhMlozUkZGWGEwRllPR3hKZG5aUE5sSjNPVVJVWkVaWFJWZHVUQ3RoWWxsTlVISktWRVZUYkdSNFdrVldVM1ZHVGtaUlRrZzBVMjFaZG5SWFkwY0tjRGxYTDJ0NFVrcG9VVUl6T0ZsM2NTdHVUbk54VUN0RkswY3haMGx4YlVwTWVFdzVTMUp6WnpKdU5HaFRXV0ZUYlRKVlRFeFlaR2RHTVRaVFdVVkVid3BEUkRsSk1tOXlUMGxQUjNoTldWcDBiWFozZDBGaFRqTkNXbkJOVG1nMUszRXllRFJrTTNsaGIxTXpWRVZ4ZUZaNGRYRlRNVUpOV0VSVVZrMTFRblpCQ25nMlpXZHpjelZuWVZGU1EzcEtVRGRUTTBSaVp6aHdTR0ozV201SlJWQldTMHcyYUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzQ4OTg2Y2NjLTQ4YmEtNDA3NS1hMDY2LTEzY2QwNTg1OWVlNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKdXBwU2JGMjF4Wk1KQzdyd0p4NldCVVRkbmdSUTB1WHl1NWFSVDhGeHhaNkd2ZXhFM2h2WHdZMg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2670"
@@ -2802,7 +2373,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2812,7 +2383,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5926afa-4480-47bd-9391-fa203a3c95d5
+ - fdf93186-7d71-4f8f-bc7d-a1a66d99a7a1
status: 200 OK
code: 200
duration: ""
@@ -2823,10 +2394,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:36.132559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:10.333373Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "702"
@@ -2835,7 +2406,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:03:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2845,7 +2416,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce747409-4680-46c6-9dfb-72ba054f64db
+ - d7941bc8-1a8b-4ca7-87a8-7888516cf35c
status: 200 OK
code: 200
duration: ""
@@ -2856,10 +2427,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/nodes?order_by=created_at_asc&page=1&pool_id=4b3e3185-7e9a-405b-aa91-d57a3e648a76&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/nodes?order_by=created_at_asc&page=1&pool_id=89120950-93f4-4057-bbd1-43690c00f0b0&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:33.625301Z","error_message":null,"id":"57a0a7bc-4bfe-4f7e-ba2c-561da517d857","name":"scw-test-pool-kubelet-test-pool-kubelet-57a0a7","pool_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","provider_id":"scaleway://instance/fr-par-1/72e04501-cdd6-472a-bbae-df560e8b8463","public_ip_v4":"163.172.144.233","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:36.115428Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:13.700796Z","error_message":null,"id":"ee7ccfda-306a-401c-9dc8-ec8082dc2c20","name":"scw-test-pool-kubelet-test-pool-kubelet-ee7ccf","pool_id":"89120950-93f4-4057-bbd1-43690c00f0b0","provider_id":"scaleway://instance/fr-par-1/a6326082-1f2f-4122-b05a-39581ea342e7","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:10.312780Z"}],"total_count":1}'
headers:
Content-Length:
- "660"
@@ -2868,7 +2439,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2878,7 +2449,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f811896e-f7f5-4fc3-a9cf-d39787d59f58
+ - 809a4e14-a696-4cf0-80c8-8c5efc0ed040
status: 200 OK
code: 200
duration: ""
@@ -2891,10 +2462,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: PATCH
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:39.684172015Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:13.537548492Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "703"
@@ -2903,7 +2474,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2913,7 +2484,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dd19d708-c3fc-4e11-8504-c6c499919f2e
+ - bf316414-c6a8-4b8b-bba3-c71cafbc4530
status: 200 OK
code: 200
duration: ""
@@ -2924,10 +2495,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:39.684172Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:13.537548Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "700"
@@ -2936,7 +2507,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2946,7 +2517,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d1895d7-44ef-4a6f-adc3-98bd0d659f01
+ - bd836e25-6424-4909-8599-77c2982fbdca
status: 200 OK
code: 200
duration: ""
@@ -2957,10 +2528,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:39.684172Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:13.537548Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "700"
@@ -2969,7 +2540,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:03:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2979,7 +2550,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 053eb9dc-8abe-44ba-9b1b-608864e7a9db
+ - 5dc65b57-4879-4004-9bdc-b31b1d338104
status: 200 OK
code: 200
duration: ""
@@ -2990,10 +2561,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/nodes?order_by=created_at_asc&page=1&pool_id=4b3e3185-7e9a-405b-aa91-d57a3e648a76&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/nodes?order_by=created_at_asc&page=1&pool_id=89120950-93f4-4057-bbd1-43690c00f0b0&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:33.625301Z","error_message":null,"id":"57a0a7bc-4bfe-4f7e-ba2c-561da517d857","name":"scw-test-pool-kubelet-test-pool-kubelet-57a0a7","pool_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","provider_id":"scaleway://instance/fr-par-1/72e04501-cdd6-472a-bbae-df560e8b8463","public_ip_v4":"163.172.144.233","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:36.115428Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:13.700796Z","error_message":null,"id":"ee7ccfda-306a-401c-9dc8-ec8082dc2c20","name":"scw-test-pool-kubelet-test-pool-kubelet-ee7ccf","pool_id":"89120950-93f4-4057-bbd1-43690c00f0b0","provider_id":"scaleway://instance/fr-par-1/a6326082-1f2f-4122-b05a-39581ea342e7","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:10.312780Z"}],"total_count":1}'
headers:
Content-Length:
- "660"
@@ -3002,7 +2573,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:40 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3012,7 +2583,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3b561ea5-76b5-498d-a7f8-8f4966efb36b
+ - d7b81aa5-e960-41fc-9567-70dee6e922b2
status: 200 OK
code: 200
duration: ""
@@ -3023,10 +2594,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:53:07.031299Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.536615Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -3035,7 +2606,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:40 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3045,7 +2616,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 950cc9da-71af-41ff-878e-c6fc1f255b63
+ - 6721dc4c-1159-4978-be7f-6ddc42acf39d
status: 200 OK
code: 200
duration: ""
@@ -3056,10 +2627,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:39.684172Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:13.537548Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "700"
@@ -3068,7 +2639,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:40 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3078,7 +2649,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbb513ec-f42a-4973-a1f2-4072c2d4c83f
+ - a90fcb5a-50b1-45d7-b1a1-b491a4f36c9e
status: 200 OK
code: 200
duration: ""
@@ -3089,19 +2660,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/511ca9f5-fe23-4f59-b44a-7d1f5d2d202e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5931d8ac-b84f-479f-bf51-e5211b9735d0
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.727465Z","dhcp_enabled":true,"id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.727465Z","id":"488240ba-5d41-4d09-b1b6-b2d469032b08","subnet":"172.16.20.0/22","updated_at":"2023-11-13T13:51:13.727465Z"},{"created_at":"2023-11-13T13:51:13.727465Z","id":"939c821c-e485-4b6a-a237-421d27ff4bb9","subnet":"fd63:256c:45f7:94cd::/64","updated_at":"2023-11-13T13:51:13.727465Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.727465Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.080502Z","dhcp_enabled":true,"id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.080502Z","id":"98f8edef-7a27-47a7-8e21-e7a91d140a0e","subnet":"172.16.28.0/22","updated_at":"2023-12-08T15:58:32.080502Z"},{"created_at":"2023-12-08T15:58:32.080502Z","id":"d1f037f5-1fbd-46e2-baab-9fb3fa2cb62f","subnet":"fd63:256c:45f7:e05::/64","updated_at":"2023-12-08T15:58:32.080502Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.080502Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "723"
+ - "722"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:40 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3111,7 +2682,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da6a90a3-8d0a-44db-89a2-572ff8353713
+ - 52970453-89d4-420a-9566-23d88b9791bd
status: 200 OK
code: 200
duration: ""
@@ -3122,10 +2693,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:53:07.031299Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.536615Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1507"
@@ -3134,7 +2705,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:40 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3144,7 +2715,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9da9dea8-b05e-4eb1-a392-fe008f6ec264
+ - 70f5ce69-0a1d-4402-acf4-531f1ca03f17
status: 200 OK
code: 200
duration: ""
@@ -3155,10 +2726,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZUU5V2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGl0YUNsaDBXa2N3UlU1V1ZFaHFjMnhpV0ZRclFtdDZNbEYwSzBkS1prcE9PVmhtYWs0eFFucHdaRmR2T1hkbVZERk5UVEprTXpsNWNHaENNM2wzWkZCNk1DOEthRmhZT1VkcVRHWkxWalJoU0hWeFV6TnZTV1prZUhwaFZqRnVNRGx1UjJwWmRHbFVZbkZOWVd0TVpUVkJhMDR5VjJGVlVXeFdjRE5yUVdoTVZraFNZd3BhYVU1SFFuUldaeTh2YkZweFRGbHBWMkpQYWtjeVdYZFBUVll5U2pkRU1rdHRRV2RzV21sTllsQmpTV0ZNYUdsMGF6STNRMU5RVlhjMGMwMVRWV2R2Q2s1cVpVMXJVMnB3UmpodU9ITk1NbTlpZDNRemJuVlBXalE0WkZGMGFUQlZZekpqTm01aWNrbGFSRU13TVdwT2NtWmpZU3RHYTJseFpGY3ZVR3hxTVdzS2FVZEtXbVZKUldReFUzWlBNSHB1Y0RkbGFHbElWSFF4Tm1JemRVdGhWbFpOZERBek9HRjFSRXBsZVZSWVZUTXJhMm80VFM5VVkyeFViMmhOZDFsTmVncE5aVVUzVTFOcVdVbHRXV0pHVlRaWFowUmpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZRMDUxVlZnNFUwWk5ORlY1WVVwVlJGTkRlbEVyUkVKbWRtSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNOMGh5ZFVodEsyNXhlVGRWTjNaVWN6WTFLMWgwV1RKc00wNUVlbTU1U3pGNVFYTnlkRVZ5YnpkVk1YZDZPVWxMVHdveGVDOXhWbTFqU0d0RlFsbGlObGxOWWtoSlFtcG9VMUoyYVZoWVZURmlhRFpoVlRFeFMwRmFUMGg1Y2trMFdVTXpVM0JXU25VMmVXbFVWa2RhU3pZNUNtUlhMMnRCYW1wV1ExUXlTR1J5TlVaTWNrWnFaRm81VDFobFRUbFhZa3BtZVVOVlZYRTJWMjgwZFVoc1ZFcDNWRnB6YTB4cWNFVkpZMVkxT1RJMFQwc0tVRk5rWVc4ck9UVjRZWFl2U1dWWE9HVmtSV05SUVRSSWNXRmpibTFPZVhWR2VrWjVOVEppTDJ4UWIyZ3pWVmhoZUd0MVMwcHRVa2x5TWxNcmRESldXZ3A2Y1daV2VsSTRPVTlQUTJoMVVrdHpZMUJtVVVkc1prUnNNRzVMYTJsT1luQkhkMjlMVjBnMFoySTFTbW8wTm1vclQzTlpSaXR0VkdoRFRIZzBNU3R6Q21KTGMzcEhZMVJ3ZG0xbVpXaG1RblJ2WkVoYUswMTFSREYxVlVZeVpFaDVXamhMU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3MmY5N2JiLTk3Y2EtNDRjYi05MzMwLWQ3N2UwZDA5YzIwMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSV2t1OXNrS0R0Z1hHR2R3VnZ5U3o4dVhHMk16QmNuQmI5QzJZNFpBYUl6eVM4T2piOXozbU1lYg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzJGakNrWXhSMEZCYzFaSGNIbFJiV2RvUWxadVJIcEZlalZ2UjNvemNHMXFXVlZpU0VJMWQxQTJZMUp5WjJSRk5FeHFiR1EwT0VKUVdEQllWV1ZFTmk5blltVUtORFJhTjFGSlIweFNSVTVZV2xwaVRGSlVTVFZWT1cxUmNXZzRhbFZQV0RkQlNuVnpZa2gwTlZSNk1YTk5ZM2RPZFVKaFlXeHdVVUkzYldwNFRIQlpVZ3BzYUhWNVptRkJabmhFYTNKNFlsQm9WRkZRTVVzdmNVc3dkVzgxYlZKaGFXbE1kMEo2Tm10YU0xUlBSR1pQV0dGMFRFaGtWa1pwVWxsdFNGSjVjMEpRQ2tKcVZERTRZVlZsS3l0SlRtMHlUalJTYTJ0b0wyOTZjM0pIVEdwUVowUjZjM2huTTFkVFpVVmxNVEZHT1ZSMlptTXljWFZLTmpKaVEwWkNVM0kzY2tvS2RHaGpPWEEyYlRZclIwUlNNVE0wYTFkTlVYb3pVaTl4YUc0eGQyZ3libkZLTjFscGNHTnVTRVphYVhaclRrSXdUa1JYZUZoWFZXMXRUa2cxTTJOTmJRb3liR1JZVlVWbU1DOW9OSFJPVnpKa2JtTnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhSbXQ2ZGpCYVUyaDNaa1JTZGtaVllTczRWM0pzU201RWNIbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJUR2xWYjJ0MGRHWkRPRnBuTkRkUE5qVm9hRXRCVW1Gb2IxZHZlSFIxYWpBeFZFSkpXSFpOYmt4WmNuWmtabTh6U0FvdmQyOUNOMnhGWm1kRmRISnBSa0pVWWtSTkszZENiM3BUUXk4dmRWQk5WazlqTHpGQ1F6QXhkazFrVm5CNWIyTkZNRGhuTUhGWFpURjJja0phUTBNNENsRlRhMlozUkZGWGEwRllPR3hKZG5aUE5sSjNPVVJVWkVaWFJWZHVUQ3RoWWxsTlVISktWRVZUYkdSNFdrVldVM1ZHVGtaUlRrZzBVMjFaZG5SWFkwY0tjRGxYTDJ0NFVrcG9VVUl6T0ZsM2NTdHVUbk54VUN0RkswY3haMGx4YlVwTWVFdzVTMUp6WnpKdU5HaFRXV0ZUYlRKVlRFeFlaR2RHTVRaVFdVVkVid3BEUkRsSk1tOXlUMGxQUjNoTldWcDBiWFozZDBGaFRqTkNXbkJOVG1nMUszRXllRFJrTTNsaGIxTXpWRVZ4ZUZaNGRYRlRNVUpOV0VSVVZrMTFRblpCQ25nMlpXZHpjelZuWVZGU1EzcEtVRGRUTTBSaVp6aHdTR0ozV201SlJWQldTMHcyYUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzQ4OTg2Y2NjLTQ4YmEtNDA3NS1hMDY2LTEzY2QwNTg1OWVlNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKdXBwU2JGMjF4Wk1KQzdyd0p4NldCVVRkbmdSUTB1WHl1NWFSVDhGeHhaNkd2ZXhFM2h2WHdZMg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2670"
@@ -3167,7 +2738,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:44 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3177,7 +2748,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f21c9825-23cd-4f45-9af7-c9bfa145611f
+ - 46c030d0-5927-48d2-885b-00e28ed65265
status: 200 OK
code: 200
duration: ""
@@ -3188,10 +2759,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:39.684172Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:13.537548Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "700"
@@ -3200,7 +2771,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:44 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3210,7 +2781,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 13de40cd-bea3-46bd-acc6-dcb14e8f18e6
+ - a985ad93-0a46-4044-9921-00c7f9506516
status: 200 OK
code: 200
duration: ""
@@ -3221,10 +2792,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200/nodes?order_by=created_at_asc&page=1&pool_id=4b3e3185-7e9a-405b-aa91-d57a3e648a76&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7/nodes?order_by=created_at_asc&page=1&pool_id=89120950-93f4-4057-bbd1-43690c00f0b0&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:33.625301Z","error_message":null,"id":"57a0a7bc-4bfe-4f7e-ba2c-561da517d857","name":"scw-test-pool-kubelet-test-pool-kubelet-57a0a7","pool_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","provider_id":"scaleway://instance/fr-par-1/72e04501-cdd6-472a-bbae-df560e8b8463","public_ip_v4":"163.172.144.233","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:40.373842Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:13.700796Z","error_message":null,"id":"ee7ccfda-306a-401c-9dc8-ec8082dc2c20","name":"scw-test-pool-kubelet-test-pool-kubelet-ee7ccf","pool_id":"89120950-93f4-4057-bbd1-43690c00f0b0","provider_id":"scaleway://instance/fr-par-1/a6326082-1f2f-4122-b05a-39581ea342e7","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:14.364101Z"}],"total_count":1}'
headers:
Content-Length:
- "660"
@@ -3233,7 +2804,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:44 GMT
+ - Fri, 08 Dec 2023 16:03:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3243,7 +2814,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6dcb128-cf50-40fb-bb0d-f2bb891c83c8
+ - 26b2d12b-0311-4ee1-805e-2e1d432d97d2
status: 200 OK
code: 200
duration: ""
@@ -3254,10 +2825,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:45.491236029Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:15.646841005Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "706"
@@ -3266,7 +2837,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:03:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3276,7 +2847,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4f19dd28-dc08-49df-bcbb-ce8a48f35288
+ - 0f09f2f7-f6ee-4a4d-81a3-bf085405d434
status: 200 OK
code: 200
duration: ""
@@ -3287,10 +2858,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:45.491236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:15.646841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "703"
@@ -3299,7 +2870,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:03:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3309,7 +2880,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04c8654d-be68-47d6-a2ab-7dcb85cad5de
+ - c901f9da-15ee-4aec-89d7-16e8f84783fe
status: 200 OK
code: 200
duration: ""
@@ -3320,10 +2891,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:45.491236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:15.646841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "703"
@@ -3332,7 +2903,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:50 GMT
+ - Fri, 08 Dec 2023 16:03:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3342,7 +2913,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e891af92-e8d6-46fc-8113-ef8c6c7de783
+ - 6a1736d2-5d71-4dd9-a41f-4374fdc02ef8
status: 200 OK
code: 200
duration: ""
@@ -3353,10 +2924,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:45.491236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:15.646841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "703"
@@ -3365,7 +2936,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:03:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3375,7 +2946,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0262f38e-840a-424f-9e7f-f56fc32e0b8a
+ - fb1a2d28-b4ea-40bd-8309-6924ff4bdb74
status: 200 OK
code: 200
duration: ""
@@ -3386,10 +2957,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.813889Z","id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-11-13T13:56:45.491236Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"48986ccc-48ba-4075-a066-13cd05859ee7","container_runtime":"containerd","created_at":"2023-12-08T15:58:38.629280Z","id":"89120950-93f4-4057-bbd1-43690c00f0b0","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-12-08T16:03:15.646841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "703"
@@ -3398,7 +2969,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 16:03:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3408,7 +2979,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2631b029-e3b1-4f40-9652-07c09c2c30e3
+ - 593f052d-0214-4363-8161-f78db5978d55
status: 200 OK
code: 200
duration: ""
@@ -3419,10 +2990,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"89120950-93f4-4057-bbd1-43690c00f0b0","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3431,7 +3002,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:03:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3441,7 +3012,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cd5d9631-ef6e-4b24-b55f-2de8f991f458
+ - 642790c3-ed26-4ab7-ae2b-819fe54d1ade
status: 404 Not Found
code: 404
duration: ""
@@ -3452,10 +3023,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:57:05.854212028Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T16:03:36.208835906Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -3464,7 +3035,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:03:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3474,7 +3045,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 70467746-357d-4254-ae5d-4f20015c41b5
+ - 44a44548-48ad-425b-befd-b5bf7fb9a083
status: 200 OK
code: 200
duration: ""
@@ -3485,10 +3056,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:57:05.854212Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T16:03:36.208836Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -3497,7 +3068,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:03:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3507,7 +3078,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 870e8769-520d-489c-9f2d-8f71eda3bc54
+ - 56403d59-9042-4797-8724-d1fa398c1f92
status: 200 OK
code: 200
duration: ""
@@ -3518,10 +3089,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f72f97bb-97ca-44cb-9330-d77e0d09c200.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.399724Z","created_at":"2023-11-13T13:51:18.399724Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f72f97bb-97ca-44cb-9330-d77e0d09c200.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-11-13T13:57:05.854212Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://48986ccc-48ba-4075-a066-13cd05859ee7.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.122466Z","created_at":"2023-12-08T15:58:33.122466Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.48986ccc-48ba-4075-a066-13cd05859ee7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"48986ccc-48ba-4075-a066-13cd05859ee7","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-12-08T16:03:36.208836Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1510"
@@ -3530,7 +3101,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:11 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3540,7 +3111,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 265f99b4-f2b5-4d6c-ac74-0dbfd1aa90b8
+ - eb553d54-f264-4228-a379-5d95327d8b57
status: 200 OK
code: 200
duration: ""
@@ -3551,10 +3122,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"48986ccc-48ba-4075-a066-13cd05859ee7","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3563,7 +3134,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:16 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3573,7 +3144,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 73fad4c1-1088-4f1e-bbc7-ea30861bb68c
+ - ec8a3216-8203-40ec-8fb0-9f9e52f408fd
status: 404 Not Found
code: 404
duration: ""
@@ -3584,10 +3155,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/511ca9f5-fe23-4f59-b44a-7d1f5d2d202e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5931d8ac-b84f-479f-bf51-e5211b9735d0
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3596,7 +3167,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:16 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3606,7 +3177,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c39e906-6218-43bc-abeb-dd6dd753c65e
+ - 7866318e-0ae1-432c-b1c8-b015ba769d28
status: 404 Not Found
code: 404
duration: ""
@@ -3617,10 +3188,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/4b3e3185-7e9a-405b-aa91-d57a3e648a76
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/89120950-93f4-4057-bbd1-43690c00f0b0
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"4b3e3185-7e9a-405b-aa91-d57a3e648a76","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"89120950-93f4-4057-bbd1-43690c00f0b0","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3629,7 +3200,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:16 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3639,7 +3210,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5f15efb-0266-4ef3-8805-5754a80e3ff3
+ - 8101bdda-3d0d-4c73-8b7d-5f557625362a
status: 404 Not Found
code: 404
duration: ""
@@ -3650,10 +3221,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f72f97bb-97ca-44cb-9330-d77e0d09c200
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48986ccc-48ba-4075-a066-13cd05859ee7
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"f72f97bb-97ca-44cb-9330-d77e0d09c200","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"48986ccc-48ba-4075-a066-13cd05859ee7","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3662,7 +3233,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:16 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3672,7 +3243,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 734ba41c-0385-4b34-b6ec-4cd05bdac12c
+ - 0a28011b-2940-4c27-b315-d9004cbc2a5b
status: 404 Not Found
code: 404
duration: ""
@@ -3683,10 +3254,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/511ca9f5-fe23-4f59-b44a-7d1f5d2d202e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5931d8ac-b84f-479f-bf51-e5211b9735d0
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"511ca9f5-fe23-4f59-b44a-7d1f5d2d202e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"5931d8ac-b84f-479f-bf51-e5211b9735d0","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3695,7 +3266,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:16 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3705,7 +3276,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dc9bd91e-e999-4aaf-a505-16de00255a7d
+ - 54c581bb-215b-4d51-acdb-75b51c7b280d
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml
index cea3cd060c..ee79f420dc 100644
--- a/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 94e14949-85a9-45f6-9674-b513b25151e7
+ - 3bf16fcb-d0ea-45c5-a21d-1f866f863cc6
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups
method: POST
response:
- body: '{"placement_group":{"id":"8980538f-16df-41a2-a00f-3653a5e91e1d","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
+ body: '{"placement_group":{"id":"b600d008-bbdd-4a80-82ab-41b14bae366a","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- "331"
@@ -59,9 +59,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:14 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8980538f-16df-41a2-a00f-3653a5e91e1d
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b600d008-bbdd-4a80-82ab-41b14bae366a
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -71,7 +71,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69491d29-5d8e-48d1-8c3c-379dd6990669
+ - 6302d5ec-e3ea-49f0-a7b1-f76a6cb18087
status: 201 Created
code: 201
duration: ""
@@ -82,10 +82,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8980538f-16df-41a2-a00f-3653a5e91e1d
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b600d008-bbdd-4a80-82ab-41b14bae366a
method: GET
response:
- body: '{"placement_group":{"id":"8980538f-16df-41a2-a00f-3653a5e91e1d","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
+ body: '{"placement_group":{"id":"b600d008-bbdd-4a80-82ab-41b14bae366a","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- "331"
@@ -94,7 +94,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:14 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -104,7 +104,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cf7874e4-402f-4965-9096-ea3bac597688
+ - ff1cb134-0b1d-4c49-85b6-28b00ab8e088
status: 200 OK
code: 200
duration: ""
@@ -120,7 +120,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:14.496479Z","dhcp_enabled":true,"id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.496479Z","id":"b3a91bdf-14d6-40c0-85d4-ae9534f1c338","subnet":"172.16.44.0/22","updated_at":"2023-11-13T13:51:14.496479Z"},{"created_at":"2023-11-13T13:51:14.496479Z","id":"5ca7e2c2-7730-4aa5-89ed-1b2ef3ecfb80","subnet":"fd63:256c:45f7:2eef::/64","updated_at":"2023-11-13T13:51:14.496479Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.496479Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.382691Z","dhcp_enabled":true,"id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.382691Z","id":"9ac7f318-32a5-405a-9e48-ee1746343380","subnet":"172.16.44.0/22","updated_at":"2023-12-08T15:58:32.382691Z"},{"created_at":"2023-12-08T15:58:32.382691Z","id":"03eb490d-3a1a-4f85-95fa-a1ac8408e4b2","subnet":"fd63:256c:45f7:177f::/64","updated_at":"2023-12-08T15:58:32.382691Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.382691Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "726"
@@ -129,7 +129,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -139,7 +139,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1cb59476-1f0f-493b-8ad7-00ae740b6809
+ - dd0efcce-2c61-4a57-abaf-099d96f11823
status: 200 OK
code: 200
duration: ""
@@ -150,10 +150,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8b5b10dc-070e-40e0-9881-b70984aa0e68
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c7a770a-4b97-4e29-8654-5024b21f94bc
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:14.496479Z","dhcp_enabled":true,"id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.496479Z","id":"b3a91bdf-14d6-40c0-85d4-ae9534f1c338","subnet":"172.16.44.0/22","updated_at":"2023-11-13T13:51:14.496479Z"},{"created_at":"2023-11-13T13:51:14.496479Z","id":"5ca7e2c2-7730-4aa5-89ed-1b2ef3ecfb80","subnet":"fd63:256c:45f7:2eef::/64","updated_at":"2023-11-13T13:51:14.496479Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.496479Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.382691Z","dhcp_enabled":true,"id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.382691Z","id":"9ac7f318-32a5-405a-9e48-ee1746343380","subnet":"172.16.44.0/22","updated_at":"2023-12-08T15:58:32.382691Z"},{"created_at":"2023-12-08T15:58:32.382691Z","id":"03eb490d-3a1a-4f85-95fa-a1ac8408e4b2","subnet":"fd63:256c:45f7:177f::/64","updated_at":"2023-12-08T15:58:32.382691Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.382691Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "726"
@@ -162,7 +162,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -172,12 +172,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e1e48b6-0d35-4bb9-a46e-8d7f5dacdad0
+ - 6228641a-77ed-4505-896e-38629ba46b34
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-placement-group","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-placement-group","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc"}'
form: {}
headers:
Content-Type:
@@ -188,7 +188,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851449698Z","created_at":"2023-11-13T13:51:18.851449698Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.862832504Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650817546Z","created_at":"2023-12-08T15:58:33.650817546Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.664444022Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1525"
@@ -197,7 +197,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -207,7 +207,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4ac6373f-4b5d-49a8-89b1-2d496f0ccf5b
+ - 90aa24d5-0233-4e1e-839b-eff88de702f5
status: 200 OK
code: 200
duration: ""
@@ -218,10 +218,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.862833Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.664444Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -230,7 +230,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -240,7 +240,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 62d9dd2b-a108-4e5d-bef0-49706097fecd
+ - 9a3b97f2-c612-4bb9-9029-8b712183434d
status: 200 OK
code: 200
duration: ""
@@ -251,19 +251,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.633579Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.664444Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1521"
+ - "1516"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -273,7 +273,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 08c9ca83-617a-42c4-829d-18095c9c52ba
+ - 72ebda67-b0d4-47f6-a659-be655b0ee301
status: 200 OK
code: 200
duration: ""
@@ -284,10 +284,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.633579Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T15:58:39.534211Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -296,40 +296,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f3437902-f6d4-49dd-bc4d-4bb2b8011f88
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/kubeconfig
- method: GET
- response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEVSVENuRnNTbk5JTlRCSVdXZERjMjk0UzNFNFpURldjMUEzWmxCa1dtbHNRMVIxZUdreFNsZHFURTQxVVV0RldtdENORVZLZUhWeWJrMTJRMFJMYUZSaFJ6RUtRWEpVVW5oSlpFazBhRGQ1Y21sMlVHdFhZbTVNU2t0RFVUbHVSMjgzY0ZScVlsRnBSM2hPVFRkTFpHMDFVekV2UVdZd2RHSnRZblZ2ZEdaSlNUTXhUUXBSU3poSFdsQlZWVm8zWlM5VlIxQndjeTlEUkRSNGVXcHFPVWsxWjJGVFpuRnJUbVJRZERVeWNUZGxhVFJyVUdOWk0zVk1kVU4yUVRSU1JWSnpTbFJ1Q2xSUVpXVXhiVGt6YVdGNGNrUXdNWFkyUnpReFRWWkNiazAyWTFKNU9XdEJiSFZwTHpGclRtWXJjRGRUSzJGeVlTdHhkVFY0UW1kbVdHbGpWa2hhT0ZFS1dUQk5kMnhCYlRGbFoydFRjbkUyZDJZeWMwWjBXR2hvVGpVdk9VaG9XVUZvU2tKWVdFUkNUMU4yU3prNFVXZ3pUWE5SU1dkR2NVMVJPSGRhTW5OUFRRcFJORXg1UjFSaGIyVkxSblYwTHl0QmMyTXdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkpXVFppYXl0VmJEUnJjemxNZUZCUVpESm1SbkZxUlZwSFVHMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNWSFpuVTBwNVZYTlBiRE5RY2xoMlZWSXlkRXdyWkhCM1kwMXBSR2R6VlN0TlRuZGtVMGxrZVdSSlZFSmFTSGQwT0FveE5WSmpZbk0wVkdOWWFqQTFaRmRDY1ZaTU16VXhXbU5EU0ZaMVZrcHphSE5xVkVsR1RHYzFaRkZKTkdkYVprRjBlbE5hU3pFNFRESTVUV3RaWTFOa0NpdGFkbk5oTm1WV1kyeExaREJGUjNwdlIzSnNSMlpwYWpOeE1uQjNTRTByZWs4clRtbFFNVE5IYWs1elFucGxSRkpxT1hwek5VZE1RMmg0Y1hSVGJHa0tTa1UyZFVoSlUya3JjVTFLUVd4SlNqZHhjSE5yVkdOeVJISXJWRTB2YWs1eFNtWTFaRFIxUjBSUWQwaDNSVTU0TXpONGNUWXpibVU1TWxGNlVGRnJZd3BWTm1wRFNUVllZWEJhUms5bWVITkpVR1JGZFRkQlFWbEhSMUJSY1RGSVlraE9SRUpGUjJveGNEQnNRblJVYmpCVVlUUnBielJ1WW5OaVQwNVBjMjlDQ214TWJsWjNZbFJvU1cweWExQXljRVJEY0djcmJVWm9PV2MyWVc5bU1HTlBPR013YUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FkMDk4OWYzLWRhMWItNDRlNy1hMzJhLWNhZGYzMjExMmUzMy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzbWRWUjNUdEVSdjczWTVkeVBYY0E5dW9iWVpYYXJJbnhDSHhweW8wWnBqclMzS29LTjlOQ1hxbA==","content_type":"application/octet-stream","name":"kubeconfig"}'
- headers:
- Content-Length:
- - "2694"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -339,7 +306,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a3271e66-3864-4e12-85e8-ed08bddda398
+ - ec65d35a-8424-4122-a438-72059b913f8f
status: 200 OK
code: 200
duration: ""
@@ -350,10 +317,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.633579Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T15:58:39.534211Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -362,42 +329,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 058f796a-11f6-4098-8081-a24a967fa36a
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/pools
- method: POST
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115456Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "674"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -407,7 +339,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8f6b9870-b384-4342-b2d3-605477ae06f9
+ - 2d20086b-02d6-4191-a232-b74c1c4b7773
status: 200 OK
code: 200
duration: ""
@@ -418,19 +350,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/kubeconfig
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs5V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRGWUNsVmhabFJIVTBoRk0yNUhSWFJHUWxaM0wxVjFPVTB4U0hOU2QxTkpOa05CVTAxdVZFUkxjRzUyT1ROQ09HSnZVemRuZFd0eFJYbG1NR1J1U0hCRGJrc0tWWGRvVTBOSVV6UlVNRkoyVGxJeVVYTmpTRTlSUjFKNlFUUTRkVTlRYUROcFZFZFFUbmh2TDJ0QlVGYzNReXRLVGxsMVJ6azBkVXB3Y2tRM1VYWXZOZ3BXVDJKVVQwSkxORkpZWkVacVFrUnliVVZEUVhCWVlsZG9TM1ZDYzNSeFdDOVBWbUpvYm1KU1pXcDZXVE16UmpSNlFVY3lVVk52VWt4Q01YWklWVmhrQ2xOaVZuRTBaazVKWms5V1duUXhVM2xET0dWMFZVNTBkR1pDUkRoMWNHTnBObWxIU2pOQ1pYQjVSa1ppV0dNcmQyMTJXWFZpU1VSTk5FSldVRzl1VWpnS1QyOU1ObnA2UkRneVp6RTFTMHcyVkhNMlZXVk9abUoyTDFodWNsVndVa1pFV2tKdFpIZHFkR1JRY1hnNFkxWmtUM2hIYm1WelRGbHVWMGxIV1dsQ2NBcHdWVTVWVFVFNVluZzVSbmhRUVVoYVZuTkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk5RV1JMUzFOdmRpOVlRekZWWWxNM0wyVlBhbnBuVUhwVU5FRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJRMEYzZGtKSmVuSnRVbTlMVjI1RlYwTkpTWFZvU0djek9HaFlWVVF3ZDBSMWJteFBWVFp6Vms1Q2JtUkhhR016TUFwb1pUWldURGhsUkU5UU9HSTNUbFJOVTNSbVRsTkdNMGxHYkhGeGFuQk9VRU5OWjBVclVVbHZXVEp1TW1nNE1ucEJUbVIzZWpKdU9VdGhabXhQYmxwbENrUmhNQ3RpTUc0MmVITlZMMkZxT0hFMVNXZE5iM1oyUzBkQ2VXRjBhWGhrV1VvMFNXSkdTSGRJYTJaalEzRk9jMjVCU1dzeFJWaHFWM2xZZFVvMWRtNEtSMjVCZGtWYVptZHdTalF5UW5GbWJrazFNWEZZZHpOaksxcExXVVZRVlVzNVluSnVOemhvTVV0TmRucDFlRGRWUjNReFRtSXZRVXAzVFhsRU9HSnRPQXBMV0RkQ2VXSkpVRnBVY1ZOTlVFdG5Ua1JWYlZKYWVXazFVbXhDUkdGd2NVeDNXV1JLU0hrM1VTODRjV1ZqVG01bFNsWm9OMUUyYTNwcWNTc3dXVmhVQ2k5bUsxWkRMekF3WW5CcmVIRllSblFyWVVWTlJuWndlR2xLVVUwd2JsYzVaelk0ZVFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzlhMDBjY2NjLWU2OTctNDczNS1hNTViLWUzODNjNDcxNTI1ZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA0MmtRRElCZ1drSmdqeFV5dVlQTzZUbjViRkVlYUdJclJOdkpUOFVVNE1HRnJGYmtLMW1lYTRENg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "671"
+ - "2694"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -440,7 +372,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 546557b7-512f-4a4c-bfc5-b59fc18f1134
+ - 9146ca0c-3d2b-47af-83e2-d64aab0d5267
status: 200 OK
code: 200
duration: ""
@@ -451,19 +383,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T15:58:39.534211Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "671"
+ - "1521"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:30 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -473,63 +405,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fcabea7b-1340-4c07-a334-f5a140799242
+ - 2427ea23-3531-41b5-bf2e-e5d860aa40c1
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
form: {}
headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "671"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
- Date:
- - Mon, 13 Nov 2023 13:51:35 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2a5f57fe-180e-4726-9054-58bf1027cd78
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/pools
+ method: POST
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597516914Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "671"
+ - "674"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:40 GMT
+ - Fri, 08 Dec 2023 15:58:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -539,7 +440,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e04e0c73-db75-44e4-a34a-ab26903d9cfb
+ - 0104910f-5ef1-497b-b855-52992f988737
status: 200 OK
code: 200
duration: ""
@@ -550,10 +451,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -562,7 +463,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:46 GMT
+ - Fri, 08 Dec 2023 15:58:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -572,7 +473,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9290928a-7f45-47a6-add0-3e8ed95875d5
+ - 568136f4-cee1-4edd-b374-1ca0e6a556b7
status: 200 OK
code: 200
duration: ""
@@ -583,10 +484,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -595,7 +496,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:51 GMT
+ - Fri, 08 Dec 2023 15:58:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -605,7 +506,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22dd31b2-2270-478e-8ca3-d5908deb728a
+ - bdcae0dd-5f93-496b-8ab6-9bdfc09aa6d2
status: 200 OK
code: 200
duration: ""
@@ -616,10 +517,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -628,7 +529,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:56 GMT
+ - Fri, 08 Dec 2023 15:58:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -638,7 +539,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ed76134-30b0-4b80-8526-20979c272b09
+ - 8e538f0d-5ed6-48cc-8381-b52199745553
status: 200 OK
code: 200
duration: ""
@@ -649,10 +550,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -661,7 +562,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:01 GMT
+ - Fri, 08 Dec 2023 15:59:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -671,7 +572,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f4b13378-36f1-4f0f-adda-b4bb706112d9
+ - 97997089-489c-46ed-b332-a5bbb33ad24a
status: 200 OK
code: 200
duration: ""
@@ -682,10 +583,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -694,7 +595,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:06 GMT
+ - Fri, 08 Dec 2023 15:59:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -704,7 +605,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00a6f202-49a8-4a51-93f5-3d563451d2fd
+ - c336a9f3-3491-4ceb-a7fa-94f1f5fbc57a
status: 200 OK
code: 200
duration: ""
@@ -715,10 +616,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -727,7 +628,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:11 GMT
+ - Fri, 08 Dec 2023 15:59:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -737,7 +638,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c0f220f5-0a45-4657-85df-0df568f875ac
+ - 687be21b-0164-4493-befe-098985ef135a
status: 200 OK
code: 200
duration: ""
@@ -748,10 +649,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -760,7 +661,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:16 GMT
+ - Fri, 08 Dec 2023 15:59:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -770,7 +671,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c392ae6f-74be-4cef-9588-f49391e46c95
+ - d8d40e7e-0adc-4970-b604-14c85da86b0e
status: 200 OK
code: 200
duration: ""
@@ -781,10 +682,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -793,7 +694,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:21 GMT
+ - Fri, 08 Dec 2023 15:59:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -803,7 +704,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea598d58-ff36-4601-8b8d-e912435cf27b
+ - cd5c4e85-8802-4b51-984e-b2911b9d8e4a
status: 200 OK
code: 200
duration: ""
@@ -814,10 +715,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -826,7 +727,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:26 GMT
+ - Fri, 08 Dec 2023 15:59:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -836,7 +737,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26f44993-d548-427f-aea9-1327d6690876
+ - 03e0c2d5-f549-41ab-9dc8-91f41579731c
status: 200 OK
code: 200
duration: ""
@@ -847,10 +748,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -859,7 +760,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:32 GMT
+ - Fri, 08 Dec 2023 15:59:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -869,7 +770,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 84d1bb50-a05b-4c04-ad89-3f3c169aa361
+ - a4442e84-2ad7-46f7-93c3-e395628ebdc1
status: 200 OK
code: 200
duration: ""
@@ -880,10 +781,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -892,7 +793,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:37 GMT
+ - Fri, 08 Dec 2023 15:59:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -902,7 +803,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4387023f-fc02-4e91-b25f-09057b995a7e
+ - 96c29487-53cb-447e-84e4-d603392e4d99
status: 200 OK
code: 200
duration: ""
@@ -913,10 +814,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -925,7 +826,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:42 GMT
+ - Fri, 08 Dec 2023 15:59:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -935,7 +836,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 60ad9ca1-5827-4902-a014-614b1f91444f
+ - 7712c1ef-42c6-4341-a7f4-22c6d84441a0
status: 200 OK
code: 200
duration: ""
@@ -946,10 +847,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -958,7 +859,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:47 GMT
+ - Fri, 08 Dec 2023 15:59:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -968,7 +869,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55be3f25-f63b-4086-a0c2-66a26bce7a93
+ - 95e94b62-e158-4322-af99-4378730609cf
status: 200 OK
code: 200
duration: ""
@@ -979,10 +880,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -991,7 +892,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:52 GMT
+ - Fri, 08 Dec 2023 15:59:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1001,7 +902,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 14762fd4-7672-44f2-a8de-b0782eec6e3a
+ - b3691cf1-01e4-4afc-9493-dd5c16d3c0ba
status: 200 OK
code: 200
duration: ""
@@ -1012,10 +913,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1024,7 +925,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:57 GMT
+ - Fri, 08 Dec 2023 15:59:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1034,7 +935,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e4e757e-2271-4331-a4eb-f80e195107bb
+ - 31f62ea1-2235-4849-8902-703870888841
status: 200 OK
code: 200
duration: ""
@@ -1045,10 +946,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1057,7 +958,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:02 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1067,7 +968,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 048a5678-9f34-4548-8283-dfffc49a9335
+ - 8b5d0eb8-3d64-4438-abd2-34db7a3901da
status: 200 OK
code: 200
duration: ""
@@ -1078,10 +979,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1090,7 +991,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:07 GMT
+ - Fri, 08 Dec 2023 16:00:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1100,7 +1001,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6fa1fb0b-3321-4488-aaed-270d2237f96e
+ - 5774d234-397c-44dc-91d0-74a0c75126a0
status: 200 OK
code: 200
duration: ""
@@ -1111,10 +1012,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1123,7 +1024,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:13 GMT
+ - Fri, 08 Dec 2023 16:00:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1133,7 +1034,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 598a218b-a1a1-4943-bbc2-8cf9524b9ca5
+ - f01c1d35-6e18-4b27-9655-e7480d567314
status: 200 OK
code: 200
duration: ""
@@ -1144,10 +1045,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1156,7 +1057,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:18 GMT
+ - Fri, 08 Dec 2023 16:00:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1166,7 +1067,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - db57c466-edee-48f7-b6e5-a9bb13a69cec
+ - dffd34b8-e891-42fc-958f-d5f770b84bd9
status: 200 OK
code: 200
duration: ""
@@ -1177,10 +1078,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1189,7 +1090,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:23 GMT
+ - Fri, 08 Dec 2023 16:00:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1199,7 +1100,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e17c299-5d2e-4d36-94a5-4912c0ae62a7
+ - 4f18e6e6-6b90-4378-8cb3-e91afb287d56
status: 200 OK
code: 200
duration: ""
@@ -1210,10 +1111,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1222,7 +1123,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:28 GMT
+ - Fri, 08 Dec 2023 16:00:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1232,7 +1133,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 11ed3d24-37e0-470b-b804-c5e78d88a22c
+ - b0f75191-23bd-4e3b-b7d4-9f26d7a39591
status: 200 OK
code: 200
duration: ""
@@ -1243,10 +1144,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1255,7 +1156,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:33 GMT
+ - Fri, 08 Dec 2023 16:01:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1265,7 +1166,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d99f691e-e6fb-4a92-a22c-9e8dfa16c6cb
+ - 22de7faf-d9d8-407e-a06a-50a9ac07c962
status: 200 OK
code: 200
duration: ""
@@ -1276,10 +1177,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1288,7 +1189,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:38 GMT
+ - Fri, 08 Dec 2023 16:01:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1298,7 +1199,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 792143b7-f3b6-452b-826f-78b24c429bec
+ - fc1269a3-cfe9-448d-89fd-cb5546c76abf
status: 200 OK
code: 200
duration: ""
@@ -1309,10 +1210,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1321,7 +1222,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:43 GMT
+ - Fri, 08 Dec 2023 16:01:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1331,7 +1232,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9a9704f8-a980-4bbc-a054-748af4ec3ba7
+ - 060c326c-e55f-41a6-91cf-c51c50c1c3df
status: 200 OK
code: 200
duration: ""
@@ -1342,10 +1243,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1354,7 +1255,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:48 GMT
+ - Fri, 08 Dec 2023 16:01:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1364,7 +1265,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67f19f43-03da-4ea6-9493-c6105e553418
+ - e3868dfd-c40d-4650-929c-d293829c5e3f
status: 200 OK
code: 200
duration: ""
@@ -1375,10 +1276,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1387,7 +1288,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:53 GMT
+ - Fri, 08 Dec 2023 16:01:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1397,7 +1298,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d74b1161-42df-447b-998a-645ae9708269
+ - 0fa16247-577a-4e8d-9c1e-7fa6b7415c56
status: 200 OK
code: 200
duration: ""
@@ -1408,10 +1309,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1420,7 +1321,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:58 GMT
+ - Fri, 08 Dec 2023 16:01:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1430,7 +1331,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 507320a0-c58d-4d6b-bfe8-c83cfc2ac013
+ - f2e81003-e252-4ec1-ad23-5a65304eff0f
status: 200 OK
code: 200
duration: ""
@@ -1441,10 +1342,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1453,7 +1354,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:03 GMT
+ - Fri, 08 Dec 2023 16:01:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1463,7 +1364,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 005e806a-6575-4119-bf77-cc27b0e2e3f4
+ - a9e1f45a-f241-454a-9ec6-cf73c6173a22
status: 200 OK
code: 200
duration: ""
@@ -1474,10 +1375,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1486,7 +1387,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:08 GMT
+ - Fri, 08 Dec 2023 16:01:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1496,7 +1397,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a8aa05c2-1552-42bf-b93c-80178308a90e
+ - b43a4f0a-0bcb-4964-90a8-5b94d37c4a07
status: 200 OK
code: 200
duration: ""
@@ -1507,10 +1408,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1519,7 +1420,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:13 GMT
+ - Fri, 08 Dec 2023 16:01:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1529,7 +1430,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 72c995df-0d0c-404b-ad54-51fb0334106b
+ - d53fbf3a-2b96-42c3-9f36-a0c0ce7b4265
status: 200 OK
code: 200
duration: ""
@@ -1540,10 +1441,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1552,7 +1453,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:18 GMT
+ - Fri, 08 Dec 2023 16:01:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1562,7 +1463,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f51903e-0805-4d21-a5c2-47e9d6d1d310
+ - fb55d060-39b3-40a8-be7a-3a3ff429e222
status: 200 OK
code: 200
duration: ""
@@ -1573,10 +1474,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1585,7 +1486,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:24 GMT
+ - Fri, 08 Dec 2023 16:01:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1595,7 +1496,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da6007ee-5720-49db-8f07-e86d19819825
+ - bbcc76bb-5ada-4584-ac75-a1e040d98c06
status: 200 OK
code: 200
duration: ""
@@ -1606,10 +1507,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1618,7 +1519,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:29 GMT
+ - Fri, 08 Dec 2023 16:02:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1628,7 +1529,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e98ddbc-5c07-4b20-84f7-3d1bab274cb8
+ - a70ebb1b-5470-4fbe-ba2f-ef09c3f74f13
status: 200 OK
code: 200
duration: ""
@@ -1639,10 +1540,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1651,7 +1552,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:34 GMT
+ - Fri, 08 Dec 2023 16:02:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1661,7 +1562,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9382c67c-b299-4588-a20a-820607cd73bd
+ - 573f2d58-4cbe-4413-9f3a-dbfc31176614
status: 200 OK
code: 200
duration: ""
@@ -1672,10 +1573,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1684,7 +1585,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:39 GMT
+ - Fri, 08 Dec 2023 16:02:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1694,7 +1595,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bf519856-67b6-4336-89f3-f203a0ef2dc8
+ - 30ac6c75-f4c7-44df-8279-2f12e1a9582c
status: 200 OK
code: 200
duration: ""
@@ -1705,10 +1606,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1717,7 +1618,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:44 GMT
+ - Fri, 08 Dec 2023 16:02:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1727,7 +1628,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e875139f-7b3f-4f3b-bb9d-dd3c3dae0a3f
+ - 7a0ddf1a-9140-42eb-8eb2-54287413ea98
status: 200 OK
code: 200
duration: ""
@@ -1738,10 +1639,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1750,7 +1651,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:49 GMT
+ - Fri, 08 Dec 2023 16:02:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1760,7 +1661,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2904899e-14e3-49f3-b9cb-c30aa3354f6a
+ - dff65625-68a2-4f17-973a-8f87d9d9b4f9
status: 200 OK
code: 200
duration: ""
@@ -1771,10 +1672,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1783,7 +1684,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:54 GMT
+ - Fri, 08 Dec 2023 16:02:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1793,7 +1694,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 157c7e64-62aa-4476-b707-e2c8aa03e37c
+ - aec47ec2-c1e5-4306-b644-d2b66a640881
status: 200 OK
code: 200
duration: ""
@@ -1804,10 +1705,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1816,7 +1717,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:59 GMT
+ - Fri, 08 Dec 2023 16:02:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1826,7 +1727,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ef9b7c0-2835-4812-8fd8-f73ca93cb55f
+ - 07942d63-2a24-428d-b948-004b99eb6d22
status: 200 OK
code: 200
duration: ""
@@ -1837,10 +1738,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1849,7 +1750,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:04 GMT
+ - Fri, 08 Dec 2023 16:02:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1859,7 +1760,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d67d78a9-f1ea-4b05-8720-fbebeaf2b2ff
+ - 5a8ace1e-a865-41b5-83b3-11a325e193cb
status: 200 OK
code: 200
duration: ""
@@ -1870,10 +1771,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1882,7 +1783,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:09 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1892,7 +1793,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 59f424de-7a8d-4a2b-bc9b-a6999d500d05
+ - 358ed17f-73e0-432d-b8ca-188c79f7931e
status: 200 OK
code: 200
duration: ""
@@ -1903,10 +1804,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1915,7 +1816,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:14 GMT
+ - Fri, 08 Dec 2023 16:02:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1925,7 +1826,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 37d73a7c-c9dd-4fa4-9909-ac924860d9ee
+ - a07fb71d-61e3-44d9-82c4-0c44331963f7
status: 200 OK
code: 200
duration: ""
@@ -1936,10 +1837,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1948,7 +1849,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:20 GMT
+ - Fri, 08 Dec 2023 16:02:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1958,7 +1859,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 841585b5-d838-484a-8f8d-db5f3d37204e
+ - 5ac1dcea-05f8-43f6-9577-3d0b8476a91d
status: 200 OK
code: 200
duration: ""
@@ -1969,10 +1870,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -1981,7 +1882,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:25 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1991,7 +1892,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 998c5dab-50e4-4889-a328-6e7309c8bc7e
+ - ddba90d5-12ba-40a1-b25e-7b35084cb52f
status: 200 OK
code: 200
duration: ""
@@ -2002,10 +1903,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2014,7 +1915,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:30 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2024,7 +1925,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b31f590-e312-44e0-8051-f1cfcda6abd0
+ - 06c6c120-fae7-44a7-8338-f9c3360a1469
status: 200 OK
code: 200
duration: ""
@@ -2035,10 +1936,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2047,7 +1948,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:35 GMT
+ - Fri, 08 Dec 2023 16:03:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2057,7 +1958,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ac879a8-29f3-424c-8ebb-809694aae9ac
+ - 3ef59ed4-4889-40ee-8365-e86e7deaf11b
status: 200 OK
code: 200
duration: ""
@@ -2068,10 +1969,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2080,7 +1981,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:40 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2090,7 +1991,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bcdb12b8-515a-4aa9-af65-69b968b76c5c
+ - 95a88aeb-8bbd-4657-aacb-abb99e3cdedd
status: 200 OK
code: 200
duration: ""
@@ -2101,10 +2002,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2113,7 +2014,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:46 GMT
+ - Fri, 08 Dec 2023 16:03:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2123,7 +2024,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4fab8860-5f88-4588-9d26-e3dde87f085a
+ - 27a50e4f-44d2-4bde-a2d3-e6a90f0c4e23
status: 200 OK
code: 200
duration: ""
@@ -2134,10 +2035,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2146,7 +2047,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:51 GMT
+ - Fri, 08 Dec 2023 16:03:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2156,7 +2057,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d467e3a0-252c-4a0c-a43e-9e777f4ff239
+ - e60e20d6-ca60-4f29-8845-65691497f606
status: 200 OK
code: 200
duration: ""
@@ -2167,10 +2068,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2179,7 +2080,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2189,7 +2090,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 70bc4c4e-2dfb-456e-8ffe-0fdba8602699
+ - b02bc77d-817a-4f8b-8da8-2a8297756007
status: 200 OK
code: 200
duration: ""
@@ -2200,10 +2101,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2212,7 +2113,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:01 GMT
+ - Fri, 08 Dec 2023 16:03:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2222,7 +2123,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d88dbf2d-aa32-4c92-84b5-2147ec4b9ab9
+ - da7415c9-171c-41e8-99ea-a0358efd5805
status: 200 OK
code: 200
duration: ""
@@ -2233,10 +2134,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2245,7 +2146,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:06 GMT
+ - Fri, 08 Dec 2023 16:03:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2255,7 +2156,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04cae0bd-e234-423a-a400-e83496e49c56
+ - 2a69d24a-7d1b-4d19-9cb5-43573e73918e
status: 200 OK
code: 200
duration: ""
@@ -2266,10 +2167,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2278,7 +2179,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:11 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2288,7 +2189,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5d75a1b8-8b69-4d7e-8cf1-29a5923e083f
+ - 672c4f1a-e77d-4985-8a28-ecb316fcf9e9
status: 200 OK
code: 200
duration: ""
@@ -2299,10 +2200,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:24.384115Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:45.597517Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "671"
@@ -2311,7 +2212,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2321,7 +2222,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f87868aa-767b-4f1f-8dcf-5a20ccd5e038
+ - 992cba35-ef07-46dd-90ab-8c6af4069d73
status: 200 OK
code: 200
duration: ""
@@ -2332,10 +2233,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:17.272333Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:03:47.994043Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "669"
@@ -2344,7 +2245,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:21 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2354,7 +2255,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b6502029-c56f-4318-8aa3-76ec35bc8a0b
+ - ca085d50-9b2a-47c9-a337-d36148bc300a
status: 200 OK
code: 200
duration: ""
@@ -2365,10 +2266,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:53:11.205901Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:00:27.172497Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2377,7 +2278,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2387,7 +2288,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfe960df-0d72-4b7f-a3cb-9d182b5fa0ad
+ - 523f102b-2251-4be3-8201-58373dd1b72a
status: 200 OK
code: 200
duration: ""
@@ -2398,10 +2299,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:17.272333Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:03:47.994043Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "669"
@@ -2410,7 +2311,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2420,7 +2321,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d1261e5d-fdb1-49b2-b623-78a39c26caa9
+ - 7af41ae8-3ac6-4027-9951-5434e3a90093
status: 200 OK
code: 200
duration: ""
@@ -2431,19 +2332,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/nodes?order_by=created_at_asc&page=1&pool_id=6c929fde-f625-43ea-9db3-5413c5cac0b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/nodes?order_by=created_at_asc&page=1&pool_id=74826cb5-d680-463f-837c-4528cb7e4762&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:35.223529Z","error_message":null,"id":"7249918f-5508-4947-8cb2-49d6ff093024","name":"scw-test-pool-placeme-test-pool-placeme-724991","pool_id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","provider_id":"scaleway://instance/fr-par-1/4c41e6c0-83a4-4b55-a3a9-a47921126a6c","public_ip_v4":"51.158.101.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:17.255963Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:34.482459Z","error_message":null,"id":"5e88f942-0c6d-4afd-98d5-18d08d66a78b","name":"scw-test-pool-placeme-test-pool-placeme-5e88f9","pool_id":"74826cb5-d680-463f-837c-4528cb7e4762","provider_id":"scaleway://instance/fr-par-1/71158d25-9515-48a2-a615-0e9d42b937bc","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:47.981857Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2453,7 +2354,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00c0b868-c028-4faf-9edc-ea715e0b7e79
+ - 4dba87ff-ed02-4954-ab88-2db5b921cf5f
status: 200 OK
code: 200
duration: ""
@@ -2464,10 +2365,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:53:11.205901Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:00:27.172497Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2476,7 +2377,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2486,7 +2387,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 424c242e-76da-487a-97f2-30daa7f8b69c
+ - 1ed85e24-4e23-4176-a01d-392dd2b0326a
status: 200 OK
code: 200
duration: ""
@@ -2497,10 +2398,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:17.272333Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:03:47.994043Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "669"
@@ -2509,7 +2410,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2519,7 +2420,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 991cf0d1-5151-48a1-8a75-7e418d6a87f0
+ - 1c9b7676-adbe-4c5c-98c2-2d472560e76f
status: 200 OK
code: 200
duration: ""
@@ -2530,10 +2431,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8b5b10dc-070e-40e0-9881-b70984aa0e68
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c7a770a-4b97-4e29-8654-5024b21f94bc
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:14.496479Z","dhcp_enabled":true,"id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.496479Z","id":"b3a91bdf-14d6-40c0-85d4-ae9534f1c338","subnet":"172.16.44.0/22","updated_at":"2023-11-13T13:51:14.496479Z"},{"created_at":"2023-11-13T13:51:14.496479Z","id":"5ca7e2c2-7730-4aa5-89ed-1b2ef3ecfb80","subnet":"fd63:256c:45f7:2eef::/64","updated_at":"2023-11-13T13:51:14.496479Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.496479Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.382691Z","dhcp_enabled":true,"id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.382691Z","id":"9ac7f318-32a5-405a-9e48-ee1746343380","subnet":"172.16.44.0/22","updated_at":"2023-12-08T15:58:32.382691Z"},{"created_at":"2023-12-08T15:58:32.382691Z","id":"03eb490d-3a1a-4f85-95fa-a1ac8408e4b2","subnet":"fd63:256c:45f7:177f::/64","updated_at":"2023-12-08T15:58:32.382691Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.382691Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "726"
@@ -2542,7 +2443,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2552,7 +2453,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e9b193de-1388-470b-9ca4-a31d123484bd
+ - cb71b6a9-3f06-40f1-b76a-8248b203caa5
status: 200 OK
code: 200
duration: ""
@@ -2563,10 +2464,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8980538f-16df-41a2-a00f-3653a5e91e1d
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b600d008-bbdd-4a80-82ab-41b14bae366a
method: GET
response:
- body: '{"placement_group":{"id":"8980538f-16df-41a2-a00f-3653a5e91e1d","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
+ body: '{"placement_group":{"id":"b600d008-bbdd-4a80-82ab-41b14bae366a","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- "331"
@@ -2575,7 +2476,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2585,7 +2486,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b7539756-399f-4440-9ce1-5b849ec441f3
+ - d995da03-1004-4ada-8472-5172a36b5779
status: 200 OK
code: 200
duration: ""
@@ -2596,10 +2497,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:53:11.205901Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:00:27.172497Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2608,7 +2509,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2618,7 +2519,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a8df6eda-c769-47d7-af45-7a157b5be792
+ - 2a79c30a-e492-40df-8be6-50c87c7e1d23
status: 200 OK
code: 200
duration: ""
@@ -2629,10 +2530,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEVSVENuRnNTbk5JTlRCSVdXZERjMjk0UzNFNFpURldjMUEzWmxCa1dtbHNRMVIxZUdreFNsZHFURTQxVVV0RldtdENORVZLZUhWeWJrMTJRMFJMYUZSaFJ6RUtRWEpVVW5oSlpFazBhRGQ1Y21sMlVHdFhZbTVNU2t0RFVUbHVSMjgzY0ZScVlsRnBSM2hPVFRkTFpHMDFVekV2UVdZd2RHSnRZblZ2ZEdaSlNUTXhUUXBSU3poSFdsQlZWVm8zWlM5VlIxQndjeTlEUkRSNGVXcHFPVWsxWjJGVFpuRnJUbVJRZERVeWNUZGxhVFJyVUdOWk0zVk1kVU4yUVRSU1JWSnpTbFJ1Q2xSUVpXVXhiVGt6YVdGNGNrUXdNWFkyUnpReFRWWkNiazAyWTFKNU9XdEJiSFZwTHpGclRtWXJjRGRUSzJGeVlTdHhkVFY0UW1kbVdHbGpWa2hhT0ZFS1dUQk5kMnhCYlRGbFoydFRjbkUyZDJZeWMwWjBXR2hvVGpVdk9VaG9XVUZvU2tKWVdFUkNUMU4yU3prNFVXZ3pUWE5SU1dkR2NVMVJPSGRhTW5OUFRRcFJORXg1UjFSaGIyVkxSblYwTHl0QmMyTXdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkpXVFppYXl0VmJEUnJjemxNZUZCUVpESm1SbkZxUlZwSFVHMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNWSFpuVTBwNVZYTlBiRE5RY2xoMlZWSXlkRXdyWkhCM1kwMXBSR2R6VlN0TlRuZGtVMGxrZVdSSlZFSmFTSGQwT0FveE5WSmpZbk0wVkdOWWFqQTFaRmRDY1ZaTU16VXhXbU5EU0ZaMVZrcHphSE5xVkVsR1RHYzFaRkZKTkdkYVprRjBlbE5hU3pFNFRESTVUV3RaWTFOa0NpdGFkbk5oTm1WV1kyeExaREJGUjNwdlIzSnNSMlpwYWpOeE1uQjNTRTByZWs4clRtbFFNVE5IYWs1elFucGxSRkpxT1hwek5VZE1RMmg0Y1hSVGJHa0tTa1UyZFVoSlUya3JjVTFLUVd4SlNqZHhjSE5yVkdOeVJISXJWRTB2YWs1eFNtWTFaRFIxUjBSUWQwaDNSVTU0TXpONGNUWXpibVU1TWxGNlVGRnJZd3BWTm1wRFNUVllZWEJhUms5bWVITkpVR1JGZFRkQlFWbEhSMUJSY1RGSVlraE9SRUpGUjJveGNEQnNRblJVYmpCVVlUUnBielJ1WW5OaVQwNVBjMjlDQ214TWJsWjNZbFJvU1cweWExQXljRVJEY0djcmJVWm9PV2MyWVc5bU1HTlBPR013YUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FkMDk4OWYzLWRhMWItNDRlNy1hMzJhLWNhZGYzMjExMmUzMy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzbWRWUjNUdEVSdjczWTVkeVBYY0E5dW9iWVpYYXJJbnhDSHhweW8wWnBqclMzS29LTjlOQ1hxbA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs5V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRGWUNsVmhabFJIVTBoRk0yNUhSWFJHUWxaM0wxVjFPVTB4U0hOU2QxTkpOa05CVTAxdVZFUkxjRzUyT1ROQ09HSnZVemRuZFd0eFJYbG1NR1J1U0hCRGJrc0tWWGRvVTBOSVV6UlVNRkoyVGxJeVVYTmpTRTlSUjFKNlFUUTRkVTlRYUROcFZFZFFUbmh2TDJ0QlVGYzNReXRLVGxsMVJ6azBkVXB3Y2tRM1VYWXZOZ3BXVDJKVVQwSkxORkpZWkVacVFrUnliVVZEUVhCWVlsZG9TM1ZDYzNSeFdDOVBWbUpvYm1KU1pXcDZXVE16UmpSNlFVY3lVVk52VWt4Q01YWklWVmhrQ2xOaVZuRTBaazVKWms5V1duUXhVM2xET0dWMFZVNTBkR1pDUkRoMWNHTnBObWxIU2pOQ1pYQjVSa1ppV0dNcmQyMTJXWFZpU1VSTk5FSldVRzl1VWpnS1QyOU1ObnA2UkRneVp6RTFTMHcyVkhNMlZXVk9abUoyTDFodWNsVndVa1pFV2tKdFpIZHFkR1JRY1hnNFkxWmtUM2hIYm1WelRGbHVWMGxIV1dsQ2NBcHdWVTVWVFVFNVluZzVSbmhRUVVoYVZuTkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk5RV1JMUzFOdmRpOVlRekZWWWxNM0wyVlBhbnBuVUhwVU5FRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJRMEYzZGtKSmVuSnRVbTlMVjI1RlYwTkpTWFZvU0djek9HaFlWVVF3ZDBSMWJteFBWVFp6Vms1Q2JtUkhhR016TUFwb1pUWldURGhsUkU5UU9HSTNUbFJOVTNSbVRsTkdNMGxHYkhGeGFuQk9VRU5OWjBVclVVbHZXVEp1TW1nNE1ucEJUbVIzZWpKdU9VdGhabXhQYmxwbENrUmhNQ3RpTUc0MmVITlZMMkZxT0hFMVNXZE5iM1oyUzBkQ2VXRjBhWGhrV1VvMFNXSkdTSGRJYTJaalEzRk9jMjVCU1dzeFJWaHFWM2xZZFVvMWRtNEtSMjVCZGtWYVptZHdTalF5UW5GbWJrazFNWEZZZHpOaksxcExXVVZRVlVzNVluSnVOemhvTVV0TmRucDFlRGRWUjNReFRtSXZRVXAzVFhsRU9HSnRPQXBMV0RkQ2VXSkpVRnBVY1ZOTlVFdG5Ua1JWYlZKYWVXazFVbXhDUkdGd2NVeDNXV1JLU0hrM1VTODRjV1ZqVG01bFNsWm9OMUUyYTNwcWNTc3dXVmhVQ2k5bUsxWkRMekF3WW5CcmVIRllSblFyWVVWTlJuWndlR2xLVVUwd2JsYzVaelk0ZVFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzlhMDBjY2NjLWU2OTctNDczNS1hNTViLWUzODNjNDcxNTI1ZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA0MmtRRElCZ1drSmdqeFV5dVlQTzZUbjViRkVlYUdJclJOdkpUOFVVNE1HRnJGYmtLMW1lYTRENg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2694"
@@ -2641,7 +2542,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2651,7 +2552,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1679710a-390a-474e-aca3-d2dffc166d28
+ - c13708d6-3c12-4e01-b7c0-dcf3fa15b404
status: 200 OK
code: 200
duration: ""
@@ -2662,10 +2563,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:17.272333Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:03:47.994043Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "669"
@@ -2674,7 +2575,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:22 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2684,7 +2585,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 306d1f4c-e8af-489f-887e-58bbd2f58f83
+ - 80279ed5-48a9-4342-b3d2-a2d9b659e81e
status: 200 OK
code: 200
duration: ""
@@ -2695,19 +2596,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/nodes?order_by=created_at_asc&page=1&pool_id=6c929fde-f625-43ea-9db3-5413c5cac0b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/nodes?order_by=created_at_asc&page=1&pool_id=74826cb5-d680-463f-837c-4528cb7e4762&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:35.223529Z","error_message":null,"id":"7249918f-5508-4947-8cb2-49d6ff093024","name":"scw-test-pool-placeme-test-pool-placeme-724991","pool_id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","provider_id":"scaleway://instance/fr-par-1/4c41e6c0-83a4-4b55-a3a9-a47921126a6c","public_ip_v4":"51.158.101.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:17.255963Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:34.482459Z","error_message":null,"id":"5e88f942-0c6d-4afd-98d5-18d08d66a78b","name":"scw-test-pool-placeme-test-pool-placeme-5e88f9","pool_id":"74826cb5-d680-463f-837c-4528cb7e4762","provider_id":"scaleway://instance/fr-par-1/71158d25-9515-48a2-a615-0e9d42b937bc","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:47.981857Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2717,7 +2618,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f0b2cb72-7ced-47df-9fed-b92134df4f5f
+ - 22a046b0-fe31-412d-a837-924e51acc8d7
status: 200 OK
code: 200
duration: ""
@@ -2728,19 +2629,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c7a770a-4b97-4e29-8654-5024b21f94bc
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:53:11.205901Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"created_at":"2023-12-08T15:58:32.382691Z","dhcp_enabled":true,"id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.382691Z","id":"9ac7f318-32a5-405a-9e48-ee1746343380","subnet":"172.16.44.0/22","updated_at":"2023-12-08T15:58:32.382691Z"},{"created_at":"2023-12-08T15:58:32.382691Z","id":"03eb490d-3a1a-4f85-95fa-a1ac8408e4b2","subnet":"fd63:256c:45f7:177f::/64","updated_at":"2023-12-08T15:58:32.382691Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.382691Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "1513"
+ - "726"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2750,7 +2651,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33285f95-b5be-41e0-aa3d-3d11be4419b4
+ - f9c9b9ca-1542-42dd-b477-c2990e5d83c8
status: 200 OK
code: 200
duration: ""
@@ -2761,19 +2662,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8b5b10dc-070e-40e0-9881-b70984aa0e68
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:14.496479Z","dhcp_enabled":true,"id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:14.496479Z","id":"b3a91bdf-14d6-40c0-85d4-ae9534f1c338","subnet":"172.16.44.0/22","updated_at":"2023-11-13T13:51:14.496479Z"},{"created_at":"2023-11-13T13:51:14.496479Z","id":"5ca7e2c2-7730-4aa5-89ed-1b2ef3ecfb80","subnet":"fd63:256c:45f7:2eef::/64","updated_at":"2023-11-13T13:51:14.496479Z"}],"tags":[],"updated_at":"2023-11-13T13:51:14.496479Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:00:27.172497Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "726"
+ - "1513"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2783,7 +2684,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e878f179-4ea0-4c7c-9532-1c1a7fc7357d
+ - ca1e9401-03f5-48c4-8c02-e9efdf86ffbf
status: 200 OK
code: 200
duration: ""
@@ -2794,10 +2695,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:17.272333Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:03:47.994043Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "669"
@@ -2806,7 +2707,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2816,7 +2717,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec481213-8528-45d4-b03f-0411cf65b22d
+ - 82e9ec28-f108-489b-80b0-e664551c116f
status: 200 OK
code: 200
duration: ""
@@ -2827,10 +2728,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8980538f-16df-41a2-a00f-3653a5e91e1d
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b600d008-bbdd-4a80-82ab-41b14bae366a
method: GET
response:
- body: '{"placement_group":{"id":"8980538f-16df-41a2-a00f-3653a5e91e1d","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
+ body: '{"placement_group":{"id":"b600d008-bbdd-4a80-82ab-41b14bae366a","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- "331"
@@ -2839,7 +2740,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2849,7 +2750,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fc4c9403-a473-4e58-8a56-d1950695757f
+ - 4040eeea-7f73-420d-91df-d7764135019c
status: 200 OK
code: 200
duration: ""
@@ -2860,19 +2761,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/nodes?order_by=created_at_asc&page=1&pool_id=6c929fde-f625-43ea-9db3-5413c5cac0b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/kubeconfig
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:35.223529Z","error_message":null,"id":"7249918f-5508-4947-8cb2-49d6ff093024","name":"scw-test-pool-placeme-test-pool-placeme-724991","pool_id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","provider_id":"scaleway://instance/fr-par-1/4c41e6c0-83a4-4b55-a3a9-a47921126a6c","public_ip_v4":"51.158.101.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:17.255963Z"}],"total_count":1}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs5V2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRGWUNsVmhabFJIVTBoRk0yNUhSWFJHUWxaM0wxVjFPVTB4U0hOU2QxTkpOa05CVTAxdVZFUkxjRzUyT1ROQ09HSnZVemRuZFd0eFJYbG1NR1J1U0hCRGJrc0tWWGRvVTBOSVV6UlVNRkoyVGxJeVVYTmpTRTlSUjFKNlFUUTRkVTlRYUROcFZFZFFUbmh2TDJ0QlVGYzNReXRLVGxsMVJ6azBkVXB3Y2tRM1VYWXZOZ3BXVDJKVVQwSkxORkpZWkVacVFrUnliVVZEUVhCWVlsZG9TM1ZDYzNSeFdDOVBWbUpvYm1KU1pXcDZXVE16UmpSNlFVY3lVVk52VWt4Q01YWklWVmhrQ2xOaVZuRTBaazVKWms5V1duUXhVM2xET0dWMFZVNTBkR1pDUkRoMWNHTnBObWxIU2pOQ1pYQjVSa1ppV0dNcmQyMTJXWFZpU1VSTk5FSldVRzl1VWpnS1QyOU1ObnA2UkRneVp6RTFTMHcyVkhNMlZXVk9abUoyTDFodWNsVndVa1pFV2tKdFpIZHFkR1JRY1hnNFkxWmtUM2hIYm1WelRGbHVWMGxIV1dsQ2NBcHdWVTVWVFVFNVluZzVSbmhRUVVoYVZuTkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk5RV1JMUzFOdmRpOVlRekZWWWxNM0wyVlBhbnBuVUhwVU5FRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJRMEYzZGtKSmVuSnRVbTlMVjI1RlYwTkpTWFZvU0djek9HaFlWVVF3ZDBSMWJteFBWVFp6Vms1Q2JtUkhhR016TUFwb1pUWldURGhsUkU5UU9HSTNUbFJOVTNSbVRsTkdNMGxHYkhGeGFuQk9VRU5OWjBVclVVbHZXVEp1TW1nNE1ucEJUbVIzZWpKdU9VdGhabXhQYmxwbENrUmhNQ3RpTUc0MmVITlZMMkZxT0hFMVNXZE5iM1oyUzBkQ2VXRjBhWGhrV1VvMFNXSkdTSGRJYTJaalEzRk9jMjVCU1dzeFJWaHFWM2xZZFVvMWRtNEtSMjVCZGtWYVptZHdTalF5UW5GbWJrazFNWEZZZHpOaksxcExXVVZRVlVzNVluSnVOemhvTVV0TmRucDFlRGRWUjNReFRtSXZRVXAzVFhsRU9HSnRPQXBMV0RkQ2VXSkpVRnBVY1ZOTlVFdG5Ua1JWYlZKYWVXazFVbXhDUkdGd2NVeDNXV1JLU0hrM1VTODRjV1ZqVG01bFNsWm9OMUUyYTNwcWNTc3dXVmhVQ2k5bUsxWkRMekF3WW5CcmVIRllSblFyWVVWTlJuWndlR2xLVVUwd2JsYzVaelk0ZVFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzlhMDBjY2NjLWU2OTctNDczNS1hNTViLWUzODNjNDcxNTI1ZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA0MmtRRElCZ1drSmdqeFV5dVlQTzZUbjViRkVlYUdJclJOdkpUOFVVNE1HRnJGYmtLMW1lYTRENg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "658"
+ - "2694"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2882,7 +2783,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b8ef9dad-2493-41dd-ad31-c7aa3811ef1c
+ - ab19164a-fd24-4e0e-8175-9a8b11a6ae9d
status: 200 OK
code: 200
duration: ""
@@ -2893,19 +2794,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d/nodes?order_by=created_at_asc&page=1&pool_id=74826cb5-d680-463f-837c-4528cb7e4762&status=unknown
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJGZVUxR2IxaEVWRTE2VFZSRmVFMXFSWHBPVkVWNVRVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEVSVENuRnNTbk5JTlRCSVdXZERjMjk0UzNFNFpURldjMUEzWmxCa1dtbHNRMVIxZUdreFNsZHFURTQxVVV0RldtdENORVZLZUhWeWJrMTJRMFJMYUZSaFJ6RUtRWEpVVW5oSlpFazBhRGQ1Y21sMlVHdFhZbTVNU2t0RFVUbHVSMjgzY0ZScVlsRnBSM2hPVFRkTFpHMDFVekV2UVdZd2RHSnRZblZ2ZEdaSlNUTXhUUXBSU3poSFdsQlZWVm8zWlM5VlIxQndjeTlEUkRSNGVXcHFPVWsxWjJGVFpuRnJUbVJRZERVeWNUZGxhVFJyVUdOWk0zVk1kVU4yUVRSU1JWSnpTbFJ1Q2xSUVpXVXhiVGt6YVdGNGNrUXdNWFkyUnpReFRWWkNiazAyWTFKNU9XdEJiSFZwTHpGclRtWXJjRGRUSzJGeVlTdHhkVFY0UW1kbVdHbGpWa2hhT0ZFS1dUQk5kMnhCYlRGbFoydFRjbkUyZDJZeWMwWjBXR2hvVGpVdk9VaG9XVUZvU2tKWVdFUkNUMU4yU3prNFVXZ3pUWE5SU1dkR2NVMVJPSGRhTW5OUFRRcFJORXg1UjFSaGIyVkxSblYwTHl0QmMyTXdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkpXVFppYXl0VmJEUnJjemxNZUZCUVpESm1SbkZxUlZwSFVHMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNWSFpuVTBwNVZYTlBiRE5RY2xoMlZWSXlkRXdyWkhCM1kwMXBSR2R6VlN0TlRuZGtVMGxrZVdSSlZFSmFTSGQwT0FveE5WSmpZbk0wVkdOWWFqQTFaRmRDY1ZaTU16VXhXbU5EU0ZaMVZrcHphSE5xVkVsR1RHYzFaRkZKTkdkYVprRjBlbE5hU3pFNFRESTVUV3RaWTFOa0NpdGFkbk5oTm1WV1kyeExaREJGUjNwdlIzSnNSMlpwYWpOeE1uQjNTRTByZWs4clRtbFFNVE5IYWs1elFucGxSRkpxT1hwek5VZE1RMmg0Y1hSVGJHa0tTa1UyZFVoSlUya3JjVTFLUVd4SlNqZHhjSE5yVkdOeVJISXJWRTB2YWs1eFNtWTFaRFIxUjBSUWQwaDNSVTU0TXpONGNUWXpibVU1TWxGNlVGRnJZd3BWTm1wRFNUVllZWEJhUms5bWVITkpVR1JGZFRkQlFWbEhSMUJSY1RGSVlraE9SRUpGUjJveGNEQnNRblJVYmpCVVlUUnBielJ1WW5OaVQwNVBjMjlDQ214TWJsWjNZbFJvU1cweWExQXljRVJEY0djcmJVWm9PV2MyWVc5bU1HTlBPR013YUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FkMDk4OWYzLWRhMWItNDRlNy1hMzJhLWNhZGYzMjExMmUzMy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzbWRWUjNUdEVSdjczWTVkeVBYY0E5dW9iWVpYYXJJbnhDSHhweW8wWnBqclMzS29LTjlOQ1hxbA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"nodes":[{"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:34.482459Z","error_message":null,"id":"5e88f942-0c6d-4afd-98d5-18d08d66a78b","name":"scw-test-pool-placeme-test-pool-placeme-5e88f9","pool_id":"74826cb5-d680-463f-837c-4528cb7e4762","provider_id":"scaleway://instance/fr-par-1/71158d25-9515-48a2-a615-0e9d42b937bc","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:47.981857Z"}],"total_count":1}'
headers:
Content-Length:
- - "2694"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:23 GMT
+ - Fri, 08 Dec 2023 16:03:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2915,7 +2816,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5d1c4e83-7c1e-4dca-95b2-146f32a73a20
+ - 35aa24f2-7c37-476a-86c7-0f23582a60f3
status: 200 OK
code: 200
duration: ""
@@ -2926,10 +2827,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:24.661316166Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:55.229710691Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "675"
@@ -2938,7 +2839,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:03:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2948,7 +2849,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 09186106-a94f-40eb-a706-1452b10af855
+ - a1d8f0e9-6b87-46a9-b173-2874f944704e
status: 200 OK
code: 200
duration: ""
@@ -2959,10 +2860,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:24.661316Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:55.229711Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "672"
@@ -2971,7 +2872,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:03:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2981,7 +2882,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d11f8b25-aa75-43a9-aca1-1bfece8fac14
+ - 10c6e97f-ad47-4e41-872c-2b0155fee9c6
status: 200 OK
code: 200
duration: ""
@@ -2992,10 +2893,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:24.661316Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:55.229711Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "672"
@@ -3004,7 +2905,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:29 GMT
+ - Fri, 08 Dec 2023 16:04:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3014,7 +2915,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5949271a-48aa-46be-98a4-44dea44b7b59
+ - c767a93d-2206-4a97-ac8d-99096730aea7
status: 200 OK
code: 200
duration: ""
@@ -3025,10 +2926,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:24.661316Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:55.229711Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "672"
@@ -3037,7 +2938,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:34 GMT
+ - Fri, 08 Dec 2023 16:04:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3047,7 +2948,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3a6530a6-0802-4c1d-b4aa-3be1150c5f08
+ - 5a4416c8-76fb-4d0d-9278-765592102f08
status: 200 OK
code: 200
duration: ""
@@ -3058,10 +2959,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","container_runtime":"containerd","created_at":"2023-11-13T13:51:24.372865Z","id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"8980538f-16df-41a2-a00f-3653a5e91e1d","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:24.661316Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9a00cccc-e697-4735-a55b-e383c471525d","container_runtime":"containerd","created_at":"2023-12-08T15:58:45.386798Z","id":"74826cb5-d680-463f-837c-4528cb7e4762","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"b600d008-bbdd-4a80-82ab-41b14bae366a","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:55.229711Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "672"
@@ -3070,7 +2971,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3080,7 +2981,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 845f42b6-9bfc-4991-bcc2-6aeba9cd3a77
+ - 874ff2ac-1d0d-4991-bc7e-79701fc650c1
status: 200 OK
code: 200
duration: ""
@@ -3091,10 +2992,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6c929fde-f625-43ea-9db3-5413c5cac0b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/74826cb5-d680-463f-837c-4528cb7e4762
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"6c929fde-f625-43ea-9db3-5413c5cac0b9","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"74826cb5-d680-463f-837c-4528cb7e4762","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3103,7 +3004,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:44 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3113,7 +3014,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 12d10ab0-a40c-4e65-8898-38e1f3e50490
+ - 85193e97-107a-4e6c-93f2-86570210da45
status: 404 Not Found
code: 404
duration: ""
@@ -3124,19 +3025,15 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33?with_additional_resources=true
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b600d008-bbdd-4a80-82ab-41b14bae366a
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:44.954622019Z","upgrade_available":false,"version":"1.28.2"}'
+ body: ""
headers:
- Content-Length:
- - "1519"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3146,9 +3043,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a161f572-7eb8-405a-9204-71e51bfb045d
- status: 200 OK
- code: 200
+ - fc93156c-a13a-4b2f-a33d-d86b70be8599
+ status: 204 No Content
+ code: 204
duration: ""
- request:
body: ""
@@ -3157,15 +3054,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8980538f-16df-41a2-a00f-3653a5e91e1d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d?with_additional_resources=true
method: DELETE
response:
- body: ""
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:15.516279855Z","upgrade_available":false,"version":"1.28.2"}'
headers:
+ Content-Length:
+ - "1519"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3175,9 +3076,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 440fa652-3c2d-41cf-b241-95aa948bbf44
- status: 204 No Content
- code: 204
+ - 3374694e-31be-470c-8193-d2e56f56b36f
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -3186,10 +3087,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:44.954622Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:15.516280Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -3198,7 +3099,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3208,7 +3109,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66b06892-7c6b-45c0-94a0-97d3a5f799ff
+ - 5aa05750-5666-4c15-8e25-48d8a137caa8
status: 200 OK
code: 200
duration: ""
@@ -3224,7 +3125,7 @@ interactions:
url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups
method: POST
response:
- body: '{"placement_group":{"id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
+ body: '{"placement_group":{"id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
headers:
Content-Length:
- "331"
@@ -3233,9 +3134,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b7adfbe1-fed5-4293-aa43-25e4e6d75b25
+ - https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b0589c9f-ff8d-41de-9d65-5defb7c05ecf
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3245,7 +3146,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 87dfc0de-2e39-4fd0-bfbc-3057857928b2
+ - 11b80e2e-225a-4bf6-aae1-410404079f46
status: 201 Created
code: 201
duration: ""
@@ -3256,10 +3157,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b7adfbe1-fed5-4293-aa43-25e4e6d75b25
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b0589c9f-ff8d-41de-9d65-5defb7c05ecf
method: GET
response:
- body: '{"placement_group":{"id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
+ body: '{"placement_group":{"id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
headers:
Content-Length:
- "331"
@@ -3268,7 +3169,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:04:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3278,7 +3179,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a4a269e-6c6d-4909-b91e-f0364c8e433e
+ - 82168b22-0c51-457c-9cfd-a5e99d09e743
status: 200 OK
code: 200
duration: ""
@@ -3289,10 +3190,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ad0989f3-da1b-44e7-a32a-cadf32112e33.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.851450Z","created_at":"2023-11-13T13:51:18.851450Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ad0989f3-da1b-44e7-a32a-cadf32112e33.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:44.954622Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9a00cccc-e697-4735-a55b-e383c471525d.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T15:58:33.650818Z","created_at":"2023-12-08T15:58:33.650818Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9a00cccc-e697-4735-a55b-e383c471525d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9a00cccc-e697-4735-a55b-e383c471525d","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:15.516280Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -3301,7 +3202,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:50 GMT
+ - Fri, 08 Dec 2023 16:04:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3311,7 +3212,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92556ae1-c230-434c-94aa-6e772a19c0ef
+ - 7b74c71a-b151-4052-a1eb-f527007b8f38
status: 200 OK
code: 200
duration: ""
@@ -3322,10 +3223,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ad0989f3-da1b-44e7-a32a-cadf32112e33
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9a00cccc-e697-4735-a55b-e383c471525d
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"ad0989f3-da1b-44e7-a32a-cadf32112e33","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"9a00cccc-e697-4735-a55b-e383c471525d","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3334,7 +3235,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:04:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3344,7 +3245,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9413438b-78b6-47c4-a9ed-dfa1ce581adf
+ - ccd8746c-391d-440b-bf57-d8a070e8c84c
status: 404 Not Found
code: 404
duration: ""
@@ -3355,10 +3256,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8b5b10dc-070e-40e0-9881-b70984aa0e68
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c7a770a-4b97-4e29-8654-5024b21f94bc
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"8b5b10dc-070e-40e0-9881-b70984aa0e68","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"7c7a770a-4b97-4e29-8654-5024b21f94bc","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3367,7 +3268,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:04:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3377,7 +3278,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4b912df-8bba-40c8-a6ab-61d99d337db6
+ - 1eed6af7-279c-407b-8bf4-df2da2bcd27f
status: 404 Not Found
code: 404
duration: ""
@@ -3393,16 +3294,16 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:56:55.206123Z","dhcp_enabled":true,"id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:56:55.206123Z","id":"623363e3-ff96-455b-833e-e1d478df144f","subnet":"172.16.4.0/22","updated_at":"2023-11-13T13:56:55.206123Z"},{"created_at":"2023-11-13T13:56:55.206123Z","id":"16a86205-8fb7-4b9c-b740-800e85a3c809","subnet":"fd68:d440:21c4:ad4b::/64","updated_at":"2023-11-13T13:56:55.206123Z"}],"tags":[],"updated_at":"2023-11-13T13:56:55.206123Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:04:25.778264Z","dhcp_enabled":true,"id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:04:25.778264Z","id":"a89b4dcf-5379-4ee4-b661-4bb7b27ad202","subnet":"172.16.12.0/22","updated_at":"2023-12-08T16:04:25.778264Z"},{"created_at":"2023-12-08T16:04:25.778264Z","id":"060c6cf6-3962-4f20-bd04-5925717604ac","subnet":"fd68:d440:21c4:37e0::/64","updated_at":"2023-12-08T16:04:25.778264Z"}],"tags":[],"updated_at":"2023-12-08T16:04:25.778264Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- - "725"
+ - "726"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:04:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3412,7 +3313,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86744042-94f5-4587-acef-4a98dfe712eb
+ - ebf9abb5-a0a0-4e4c-ac4d-c91f4c067a9a
status: 200 OK
code: 200
duration: ""
@@ -3423,19 +3324,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9377678e-6fed-464c-a2ae-b3e40e4f9c82
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c065e62e-5aa8-4042-9221-3ef02002e4c0
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:55.206123Z","dhcp_enabled":true,"id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:56:55.206123Z","id":"623363e3-ff96-455b-833e-e1d478df144f","subnet":"172.16.4.0/22","updated_at":"2023-11-13T13:56:55.206123Z"},{"created_at":"2023-11-13T13:56:55.206123Z","id":"16a86205-8fb7-4b9c-b740-800e85a3c809","subnet":"fd68:d440:21c4:ad4b::/64","updated_at":"2023-11-13T13:56:55.206123Z"}],"tags":[],"updated_at":"2023-11-13T13:56:55.206123Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"created_at":"2023-12-08T16:04:25.778264Z","dhcp_enabled":true,"id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:04:25.778264Z","id":"a89b4dcf-5379-4ee4-b661-4bb7b27ad202","subnet":"172.16.12.0/22","updated_at":"2023-12-08T16:04:25.778264Z"},{"created_at":"2023-12-08T16:04:25.778264Z","id":"060c6cf6-3962-4f20-bd04-5925717604ac","subnet":"fd68:d440:21c4:37e0::/64","updated_at":"2023-12-08T16:04:25.778264Z"}],"tags":[],"updated_at":"2023-12-08T16:04:25.778264Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- - "725"
+ - "726"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:04:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3445,12 +3346,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5893e1d5-1fbf-49b7-9b0e-2348c80266fd
+ - 6bda51b7-c415-45f0-b4de-ca015a54763b
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-placement-group-2","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-placement-group-2","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0"}'
form: {}
headers:
Content-Type:
@@ -3461,7 +3362,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173270738Z","created_at":"2023-11-13T13:56:56.173270738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:56.187581045Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292294931Z","created_at":"2023-12-08T16:04:27.292294931Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:27.305409720Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1527"
@@ -3470,7 +3371,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3480,7 +3381,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e9105184-4272-406c-b263-3d6ac69ae1f9
+ - a172f211-01c8-4ea5-ad14-34b63c07ce24
status: 200 OK
code: 200
duration: ""
@@ -3491,10 +3392,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:56.187581Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:27.305410Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1518"
@@ -3503,7 +3404,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3513,7 +3414,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ce91cc2-3734-4d52-bc9e-2a7ca45d429f
+ - 09eb4e9a-7778-416c-b961-7d17a1dacaa8
status: 200 OK
code: 200
duration: ""
@@ -3524,10 +3425,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:57.812614Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:28.923393Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -3536,7 +3437,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:01 GMT
+ - Fri, 08 Dec 2023 16:04:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3546,7 +3447,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 15992811-5a54-4c38-9def-b5d6ad1536a9
+ - 5c709d59-e817-4109-939d-f30f271fdebc
status: 200 OK
code: 200
duration: ""
@@ -3557,10 +3458,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:57.812614Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:28.923393Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -3569,7 +3470,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:01 GMT
+ - Fri, 08 Dec 2023 16:04:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3579,7 +3480,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3fd115f5-44dc-4d14-9ce6-cfb2d33bfd3a
+ - 5801fba7-963f-4859-8fa4-0728f3aa1945
status: 200 OK
code: 200
duration: ""
@@ -3590,10 +3491,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUlpNVTR4YjFoRVZFMTZUVlJGZUUxcVJYcE9WRmt4VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUa2MwQ2pnMmRGQlFXbVZ0YVcwMlVuWlZjVmd2ZDNKWlUxZzJLM1psWjJOc1dsZENSalUwUXpnMFVUQjNhbTFwZWtGTmNFMXRhVFo2TlRKcWFVeDZjSEpGVDNNS01IUlNjamRuZGtGS01sRmFkMFpTYjNaa1pWVmFOVk5pTUZBd2FrVllkVXQwWldwbk9YVTNaa3B0V1N0SFNISmxjWHBwT0dwMlduaG9NVEJqUWpodVFRb3JUR3h1WmxOUGVXSTJZVWxWUzJvck1FTjVVSFJXWTBJeVptUlNRV2hqYWxaemRVSmFiMkYzVGxWWFRFNXVOamxGYm5oNFUyVkJUMDFTTm5aeVJFSm1DbUkxVjA1YVZuVTVWR0p0TlZNeWMzUkhiM2xFVGt0YVVuZExZVEpHVDNObFpHNWxlWGRhTlhveVpFWkdTU3RYU0VKTVJpOTRNbFk0V21KUmRUTm1MMlVLYms5VmVEZzBaRkpCYkVkaWRUY3dZV2RhVERobVNubzRVSGRTY0d4RU5GaGllVFI2TjJ0U1pUTlZOMlJ2S3k5c1JHeE1kbEZPVnpKVFNrd3pWR1pxTmdwWllrRXlWMFpqWVV4bU9XSnpkMGxzZG1ORlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTlJVWnhkMEZ4VVZad1VEaDZVMDF5WVdobU4xbHRiMVUxUWpCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQllrSnNPVFkwT1RCbmIybHVaV1pLV1VwU1lsVkplR1o1Y2s4d1UyWXhVa3hpVW1ad1JuWk5TbUpzUzNCYVQyTkxkd3BqTVdsa2JUZzFjRFZYY1dSeGQzZDNjV05WYmpNd1NuRkpPRzl4U0VwTFJFMUdURUZxYjA4NVRtSXpaMmRYYlZOUlQwSjFNMjlOVlZwWGRGbDVRVEJ1Q25aTlpXbzBTMDFOT1ZSdFUwWlNNMVp3YlVKelJFcDFXRWhsWjNJMWEwZFdPRFYwVlVOdlRIcFVjbEpvYlhSeE1ETnplVU5zVFhVMlQxVjZRMUpTUlVrS2NqbDBWMjlxUTNjMFZtSm5aa05rYTBGUVdDdGtNRUZ5ZURjMWNtbG5hbGRpVHpscllWWkVkakZrY1hwWlpVSnBSa1poVkZWa2VWRjJLekpPWlRJcmVRcDZXSGg2V0RsSk9ESm1WVlJ4VFVoeGJWcFdlWGRGV2tGcGQyWnllV2ROWkc1Rk5uQTRiR1JaYjNkNE5XWXZia2xoYmpsSldYQmhVVloyT1hWb05sVnpDbmcxYWxOdE9FdG9kMWh6VGtOak5sTkRjM2g1Y1ZwNFlUaGlRVlIwYUV0Q0wwdHplQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTJhMGUxMjctYjI0Ni00ZTdjLWIxZjYtZWI4Nzc2MmZmNzYzLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBOd3FranlUZFVkdmFxM0RVTDRJUDJ0ejZPdEdtUVdkSzRwaTNvWkhSQkZNck1jV0xXWW95STFnQQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlVTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY1VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1JVQ2sxQlVtc3dUVTEySzBrdlIzWk1XbU5aU2pKbGJsVjJRbUYwVVZSV1ZtUmpaRTF4WjIxMmRFRmFTMEZwTTNkV1ZVVmtTV2d6TjFOMFdFVTBkbGhPVkUwS1RIZHpaVkozTTNwaFpFVXliWEZxTmpFMFpFTktMMjFDVG5KQlVqTmtXblJ3TVZSc1MyMVhNVm94Wm5od05sRkdURU5HZVdOT00wVnROekZVWVVZMlZnbzBSV2hxWm5wemFWZEJiekpHZERCMGJYbGxNWGtyVDAxdlFVaEVkakZvWVd0R1VsaExhMk5QZGpOQlRuRkRaMnBNVldOU1UzZHFVV3hqVGpWNlRWbzFDbmhUVWpWTmMzSjNObXR0ZUVWaEt6bGpZVzVZTURCVU5XVXJkMVo0VlhsRFJWSlpUM3BNYnpoR1VYbFpVM3BwVkVaeWQzTnFNekZ6UVRWVVJDdEpVMVVLWTNVNFZVTkpVakVyU0VSeVZ6Rm1WalJUUlRaUEsxbDRRMXBqV2xjNVFqaFFVVTR3T1dwVVMydEtjREV2WlZZeEwySktUVzlGYW5GcmFrWlFlSE5NYndwU1RHWkxlR296UTB4b1JrSXdkM1J0VDBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS1FWTjVWamMzWTJaWk5ETktOVUpEUlRocVlXZHlLMWhXWVdGTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFFtaDNOR0l4ZDFRM1oxWlVOWEJTU0VWM05sRnZaVlZhWm5neVdWTTRjRGN6VDFSTlZYaFFWRXAyTWtOTWJGUXhWd3BpZUVaWmVGbzBhMXBYVWxGQ2FERXlWRVZoTW01MU1WSjJWREoxVkZGSFRGaENkUzlrUVdOMVZFeDVaMDAwTVc1V2IzaFRZM0V5YlVwVVpIaGxlRTV5Q25CblNIaHpjWEZPWms1UlFtaGpLekV5VlU1RFQzRnpWSFZPVjJSWlUzaE1ibWxaZHpWaUsydzRaSHBET1hkT1EyMVRXVzEwY0hKVFMwaDRUbmw2WWpBS2RqWkNja2wxYlhwcVlUQkpTREFyWW1Fd2RXMVVWV0ZvT0djdlFXTlRVMGd2U2pWdGRVcHRLelZaVWtwWVRWbHFhMVZXZW1OSVl6aGpZa3BSTm0xQ09RcENVbGRaZDFwVWRTOUdNbEE1YlV0cmNucGlOSEkwYlhwTmVFUjFXSEJaUTFSWFRIRllOMnh6V21adVVXOXNPQ3RsS3pGRU0wZGxlamRoTVZadkwwMUpDalJVZGpWQlF6TkhNMk5XVGxjeU55OVNPVGN4ZURKdWNUSTRVelU0ZDBWVlEzTTJRd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMzIzMzg3MTEtMWQ4OC00NzNlLWIwN2MtMDIyYzI5YmJmMzIyLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA1VHZTRktUemlrblI0MHBJVDhnMWdyV0x2OU8wYm1ralB3V2ZhekRtMG5tR1NsNlA5b2pqM0Y4Tw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -3602,7 +3503,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:01 GMT
+ - Fri, 08 Dec 2023 16:04:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3612,7 +3513,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8164f33f-eab6-404b-9e2f-07fd473eb090
+ - 04f50769-a220-478e-9aed-907a287a3e83
status: 200 OK
code: 200
duration: ""
@@ -3623,10 +3524,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:56:57.812614Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:04:28.923393Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -3635,7 +3536,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:01 GMT
+ - Fri, 08 Dec 2023 16:04:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3645,12 +3546,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bb6ad152-3ac9-4ce8-920f-eac4ba3bc20b
+ - de366109-d300-4e29-bfa1-c23e2ac1a491
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"nl-ams-2","root_volume_type":"default_volume_type","public_ip_disabled":false}'
+ body: '{"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"nl-ams-2","root_volume_type":"default_volume_type","public_ip_disabled":false}'
form: {}
headers:
Content-Type:
@@ -3658,10 +3559,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/pools
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/pools
method: POST
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882201Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057020Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "676"
@@ -3670,7 +3571,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:02 GMT
+ - Fri, 08 Dec 2023 16:04:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3680,7 +3581,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 353940b1-721d-4615-b2b6-09209dc47bce
+ - 6526714a-b7fd-4a5f-a24b-566b6456546d
status: 200 OK
code: 200
duration: ""
@@ -3691,10 +3592,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3703,7 +3604,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:02 GMT
+ - Fri, 08 Dec 2023 16:04:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3713,7 +3614,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9fc6df24-d1fa-4705-8957-944b9cee1990
+ - 19fdbb08-c3cd-46c6-bc0e-29f8433a00cb
status: 200 OK
code: 200
duration: ""
@@ -3724,10 +3625,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3736,7 +3637,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:07 GMT
+ - Fri, 08 Dec 2023 16:04:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3746,7 +3647,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f9b05bd7-5bf1-48ea-b14d-7def5b0c71a4
+ - 76704cc3-b354-4d34-a215-6007674c22d1
status: 200 OK
code: 200
duration: ""
@@ -3757,10 +3658,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3769,7 +3670,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:12 GMT
+ - Fri, 08 Dec 2023 16:04:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3779,7 +3680,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da405232-216a-4e8d-93bc-02baa654b0b6
+ - e50dd16c-871d-4436-b389-fd90b62b0315
status: 200 OK
code: 200
duration: ""
@@ -3790,10 +3691,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3802,7 +3703,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:17 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3812,7 +3713,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7fb5a241-d311-4b82-a140-3d1c658df4cc
+ - cd816bd3-78fd-476a-a730-29e573f69f40
status: 200 OK
code: 200
duration: ""
@@ -3823,10 +3724,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3835,7 +3736,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:22 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3845,7 +3746,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ad2a9589-2b6e-415a-9eb1-81bc08b437d5
+ - 7c017cbc-e952-4e10-9d73-9731527fbf41
status: 200 OK
code: 200
duration: ""
@@ -3856,10 +3757,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3868,7 +3769,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:27 GMT
+ - Fri, 08 Dec 2023 16:04:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3878,7 +3779,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e4f09f68-71ac-42b4-bdb5-e07f61cd8160
+ - c763a95c-7dde-40ca-a6dc-6d21d4889a65
status: 200 OK
code: 200
duration: ""
@@ -3889,10 +3790,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3901,7 +3802,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:32 GMT
+ - Fri, 08 Dec 2023 16:05:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3911,7 +3812,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eb978b7e-48cd-4e31-bd0d-faf798c530fc
+ - eb54d4d3-3ec9-4a6f-9780-854c2e77f04c
status: 200 OK
code: 200
duration: ""
@@ -3922,10 +3823,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3934,7 +3835,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:37 GMT
+ - Fri, 08 Dec 2023 16:05:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3944,7 +3845,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3b451f1b-44c7-4d3a-9fe8-e35c74cfcbf4
+ - b190e8d4-c9f0-4ba7-943f-fd38fa63b4d4
status: 200 OK
code: 200
duration: ""
@@ -3955,10 +3856,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -3967,7 +3868,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:42 GMT
+ - Fri, 08 Dec 2023 16:05:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3977,7 +3878,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 64ae4408-dd38-4bd7-b376-6d309f97c696
+ - 00c291bb-49f4-4efe-8442-c4fa48cf66ae
status: 200 OK
code: 200
duration: ""
@@ -3988,10 +3889,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4000,7 +3901,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:47 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4010,7 +3911,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01438f6a-6f42-49d6-a26e-5cca45c0836b
+ - 7fb52118-46f4-4416-8ba2-2cbc758eca77
status: 200 OK
code: 200
duration: ""
@@ -4021,10 +3922,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4033,7 +3934,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:53 GMT
+ - Fri, 08 Dec 2023 16:05:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4043,7 +3944,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3bc447d9-979a-4f8d-979d-c406bf3fe0a0
+ - 2cd53ada-b099-4848-b561-dc9fde9d10ef
status: 200 OK
code: 200
duration: ""
@@ -4054,10 +3955,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4066,7 +3967,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:58 GMT
+ - Fri, 08 Dec 2023 16:05:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4076,7 +3977,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5bfdb043-ad83-4005-8ed0-56b3d9cce06c
+ - 2110c112-7ef6-40a4-9393-f01b0b84fddf
status: 200 OK
code: 200
duration: ""
@@ -4087,10 +3988,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4099,7 +4000,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:03 GMT
+ - Fri, 08 Dec 2023 16:05:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4109,7 +4010,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97db4d4c-5669-4c0f-bb86-e67b4e3b7818
+ - d75777ca-135b-4ffc-90c0-d6f7e5cd55d1
status: 200 OK
code: 200
duration: ""
@@ -4120,10 +4021,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4132,7 +4033,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:08 GMT
+ - Fri, 08 Dec 2023 16:05:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4142,7 +4043,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cca14e82-8198-4b35-a8c4-b2641d515391
+ - 082181be-c57d-46d5-bdb4-c9d79b5366a1
status: 200 OK
code: 200
duration: ""
@@ -4153,10 +4054,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4165,7 +4066,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:13 GMT
+ - Fri, 08 Dec 2023 16:05:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4175,7 +4076,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce743cb8-8cdc-405a-aa38-899177fd4c2d
+ - d297d9a1-3c84-4409-8315-80db04bc09de
status: 200 OK
code: 200
duration: ""
@@ -4186,10 +4087,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4198,7 +4099,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:18 GMT
+ - Fri, 08 Dec 2023 16:05:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4208,7 +4109,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ddaf3a44-12e3-4f60-8771-33a95fbf387f
+ - 226ab86e-7d83-40d0-a592-83768ee46282
status: 200 OK
code: 200
duration: ""
@@ -4219,10 +4120,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4231,7 +4132,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:24 GMT
+ - Fri, 08 Dec 2023 16:05:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4241,7 +4142,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92d3b8f0-97ac-44b5-bde4-17a9ecc3a3e3
+ - 907f5e13-dfaa-474f-9911-f11c1c2ad141
status: 200 OK
code: 200
duration: ""
@@ -4252,10 +4153,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4264,7 +4165,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:29 GMT
+ - Fri, 08 Dec 2023 16:06:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4274,7 +4175,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f5b43c0-09d6-4e8a-a525-b01eeabbb892
+ - 732031ff-2995-435d-b059-7355e9f8e6c0
status: 200 OK
code: 200
duration: ""
@@ -4285,10 +4186,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4297,7 +4198,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:34 GMT
+ - Fri, 08 Dec 2023 16:06:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4307,7 +4208,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fd7c169f-e84e-4e98-84b7-d98f374dc490
+ - 434ccb7b-2009-478e-bb0b-90ad26cfb4e7
status: 200 OK
code: 200
duration: ""
@@ -4318,10 +4219,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4330,7 +4231,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:39 GMT
+ - Fri, 08 Dec 2023 16:06:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4340,7 +4241,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 292d6907-32fb-494e-bede-e25cf0e1cead
+ - cc98059f-779d-444a-974b-d646e4445716
status: 200 OK
code: 200
duration: ""
@@ -4351,10 +4252,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4363,7 +4264,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:06:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4373,7 +4274,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67107c76-f5a7-4ade-a3fb-7c95f812a21c
+ - 694a728b-fd11-404b-97e3-f4267af4d878
status: 200 OK
code: 200
duration: ""
@@ -4384,10 +4285,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4396,7 +4297,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:49 GMT
+ - Fri, 08 Dec 2023 16:06:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4406,7 +4307,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04d98387-70ea-4d3e-816c-6ad3f15c44ad
+ - 0ee40514-358a-48bf-9352-5c400dccf9b0
status: 200 OK
code: 200
duration: ""
@@ -4417,10 +4318,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4429,7 +4330,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:54 GMT
+ - Fri, 08 Dec 2023 16:06:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4439,7 +4340,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9896546f-70dc-4446-9b2b-68fcf830d5e6
+ - c5a944c7-71f6-4d87-b40a-40ee07ca84c6
status: 200 OK
code: 200
duration: ""
@@ -4450,10 +4351,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4462,7 +4363,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:59 GMT
+ - Fri, 08 Dec 2023 16:06:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4472,7 +4373,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 96695914-6bd8-450d-871e-cdcaabb19a92
+ - f528110d-723c-423d-9329-4a590635634c
status: 200 OK
code: 200
duration: ""
@@ -4483,10 +4384,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4495,7 +4396,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:04 GMT
+ - Fri, 08 Dec 2023 16:06:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4505,7 +4406,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b705f85-b5b9-44d3-86e4-4375004689c5
+ - b5aeab06-19d1-467c-9229-a9c156809291
status: 200 OK
code: 200
duration: ""
@@ -4516,10 +4417,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4528,7 +4429,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:09 GMT
+ - Fri, 08 Dec 2023 16:06:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4538,7 +4439,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c1354d34-2c2f-44db-843d-03f222c17555
+ - fd9c8470-f195-4796-9e4c-9cf36c4d46b1
status: 200 OK
code: 200
duration: ""
@@ -4549,10 +4450,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4561,7 +4462,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:15 GMT
+ - Fri, 08 Dec 2023 16:06:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4571,7 +4472,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2a3fc6f7-0efc-47e5-87a9-c3e43286bbaf
+ - 705f46f0-3d2a-4196-ae64-b5dc409a90bf
status: 200 OK
code: 200
duration: ""
@@ -4582,10 +4483,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4594,7 +4495,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:20 GMT
+ - Fri, 08 Dec 2023 16:06:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4604,7 +4505,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1ec5c94-a540-4dfa-bb25-eb1da868c22a
+ - 71e76ab5-36ee-4429-83b7-e6c13f8841ee
status: 200 OK
code: 200
duration: ""
@@ -4615,10 +4516,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4627,7 +4528,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:25 GMT
+ - Fri, 08 Dec 2023 16:06:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4637,7 +4538,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1a462b5b-a414-40cc-9cac-14aea3557867
+ - d4e32b95-fa95-4899-99bc-299b0f5bdad0
status: 200 OK
code: 200
duration: ""
@@ -4648,10 +4549,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4660,7 +4561,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:30 GMT
+ - Fri, 08 Dec 2023 16:07:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4670,7 +4571,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93da6fdd-8a61-49de-8d7e-e0603f5c5b85
+ - 9ee99f15-03ae-4fe3-984f-7f276d65376e
status: 200 OK
code: 200
duration: ""
@@ -4681,10 +4582,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4693,7 +4594,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:35 GMT
+ - Fri, 08 Dec 2023 16:07:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4703,7 +4604,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 094d5055-6901-4ea6-863b-5190fe6068c6
+ - da857cc6-0eb8-4ecd-ad39-cae651ff6a3d
status: 200 OK
code: 200
duration: ""
@@ -4714,10 +4615,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4726,7 +4627,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:40 GMT
+ - Fri, 08 Dec 2023 16:07:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4736,7 +4637,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e8504128-744e-46f7-8cc7-b3934d0e2b89
+ - 0d441aad-4777-4907-94b7-7176e3936ced
status: 200 OK
code: 200
duration: ""
@@ -4747,10 +4648,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4759,7 +4660,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:46 GMT
+ - Fri, 08 Dec 2023 16:07:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4769,7 +4670,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5ae8b2b0-5207-49be-bd77-1403fd212a94
+ - b63450e5-22e9-4552-afd0-d6623efa5ad6
status: 200 OK
code: 200
duration: ""
@@ -4780,10 +4681,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4792,7 +4693,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:51 GMT
+ - Fri, 08 Dec 2023 16:07:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4802,7 +4703,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f302e88b-5d97-4fb2-909d-59f2f5be283d
+ - 76405545-f158-4981-88e1-37c760b9de0d
status: 200 OK
code: 200
duration: ""
@@ -4813,10 +4714,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4825,7 +4726,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:56 GMT
+ - Fri, 08 Dec 2023 16:07:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4835,7 +4736,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3d250a59-3e40-40a2-9015-21020429325f
+ - cf68fbfb-f167-4320-a104-fb9a08a4ace6
status: 200 OK
code: 200
duration: ""
@@ -4846,10 +4747,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4858,7 +4759,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:01 GMT
+ - Fri, 08 Dec 2023 16:07:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4868,7 +4769,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 466311d9-201f-4949-84c7-2d9d07f4350c
+ - c1fb5a13-4b9b-4481-8938-413ef418c89f
status: 200 OK
code: 200
duration: ""
@@ -4879,10 +4780,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4891,7 +4792,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:06 GMT
+ - Fri, 08 Dec 2023 16:07:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4901,7 +4802,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1484245-4775-4b27-a543-e73ccb413de0
+ - d8ecba6a-d1c2-4d1e-a140-64dd1c81be7f
status: 200 OK
code: 200
duration: ""
@@ -4912,10 +4813,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4924,7 +4825,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:11 GMT
+ - Fri, 08 Dec 2023 16:07:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4934,7 +4835,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b1a8dcee-4558-4e6a-bbee-67069fedcd12
+ - f7c9eb92-e15e-4000-9514-74d415da61f7
status: 200 OK
code: 200
duration: ""
@@ -4945,10 +4846,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4957,7 +4858,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:16 GMT
+ - Fri, 08 Dec 2023 16:07:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4967,7 +4868,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8930b7a-8d99-4700-9a0a-89969407d4f8
+ - cfda8406-626c-41ff-afa2-a841b3e01e40
status: 200 OK
code: 200
duration: ""
@@ -4978,10 +4879,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -4990,7 +4891,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:21 GMT
+ - Fri, 08 Dec 2023 16:07:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5000,7 +4901,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48de48e3-ac8e-44b2-b52b-e21049b6d552
+ - 7ab0b36b-2f52-4bc0-a54d-fc6fdbded24a
status: 200 OK
code: 200
duration: ""
@@ -5011,10 +4912,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -5023,7 +4924,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:26 GMT
+ - Fri, 08 Dec 2023 16:07:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5033,7 +4934,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9ad02ccd-8f14-487f-846c-15b577f33018
+ - 5c51ccfd-f024-4252-9632-57a5cc1818f8
status: 200 OK
code: 200
duration: ""
@@ -5044,10 +4945,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -5056,7 +4957,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:31 GMT
+ - Fri, 08 Dec 2023 16:08:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5066,7 +4967,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 57e25823-a438-4044-a7ab-a6f729d827b0
+ - 4ba7e795-3a2e-40b0-808c-82e5f7db7afe
status: 200 OK
code: 200
duration: ""
@@ -5077,10 +4978,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -5089,7 +4990,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:36 GMT
+ - Fri, 08 Dec 2023 16:08:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5099,7 +5000,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b8821d7e-9d47-44c8-a712-5eb5449ddc3f
+ - c9b378cc-1dde-492e-981a-441f8884756e
status: 200 OK
code: 200
duration: ""
@@ -5110,10 +5011,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:57:01.979882Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "673"
@@ -5122,7 +5023,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:41 GMT
+ - Fri, 08 Dec 2023 16:08:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5132,7 +5033,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c71892ab-596c-41f6-b68d-c793dd069412
+ - de77ab33-8c3d-42d4-ba19-683689152781
status: 200 OK
code: 200
duration: ""
@@ -5143,19 +5044,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:44.836829Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "671"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:46 GMT
+ - Fri, 08 Dec 2023 16:08:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5165,7 +5066,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d63b01d2-526e-4e3f-9860-29834ea1c810
+ - 76f5e463-eda8-48d7-9468-00435ae63c1b
status: 200 OK
code: 200
duration: ""
@@ -5176,19 +5077,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:58:10.912448Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1515"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:08:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5198,7 +5099,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bec59341-679d-41cc-80b5-589aa2676934
+ - 81b64a0d-3457-4148-b9f3-67d8907bd047
status: 200 OK
code: 200
duration: ""
@@ -5209,19 +5110,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:44.836829Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "671"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:08:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5231,7 +5132,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5275545-d9a1-4ecb-abf8-a02e3a2b1112
+ - daa517ea-04e0-4093-9185-3cc115966069
status: 200 OK
code: 200
duration: ""
@@ -5242,19 +5143,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/nodes?order_by=created_at_asc&page=1&pool_id=549dd02e-61ea-40de-9aec-1c68dedcda39&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:38.751025Z","error_message":null,"id":"85120e23-c614-472a-b9f1-fb4b0f8a777b","name":"scw-test-pool-placeme-test-pool-placeme-85120e","pool_id":"549dd02e-61ea-40de-9aec-1c68dedcda39","provider_id":"scaleway://instance/nl-ams-2/9568932f-33d9-44f0-8240-077f4300de38","public_ip_v4":"51.158.238.63","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-11-13T14:00:44.815322Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "658"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:08:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5264,7 +5165,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 98ce9f78-cddd-46a8-8ec6-c568ece2fae1
+ - eec08a11-a756-4ea4-9df1-6cb592af29c0
status: 200 OK
code: 200
duration: ""
@@ -5275,19 +5176,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:58:10.912448Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1515"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:08:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5297,7 +5198,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f510249-9e03-4e0d-8a7e-0e6bedcfbacf
+ - 940820bc-e9c7-4db7-bafa-279d25d3ad4f
status: 200 OK
code: 200
duration: ""
@@ -5308,19 +5209,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:44.836829Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "671"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:08:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5330,7 +5231,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ee962cd-fd2c-4649-bff4-ab4e68c9627d
+ - 7817828a-d908-48e8-b20e-ba2c6e6e8db0
status: 200 OK
code: 200
duration: ""
@@ -5341,19 +5242,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9377678e-6fed-464c-a2ae-b3e40e4f9c82
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:55.206123Z","dhcp_enabled":true,"id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:56:55.206123Z","id":"623363e3-ff96-455b-833e-e1d478df144f","subnet":"172.16.4.0/22","updated_at":"2023-11-13T13:56:55.206123Z"},{"created_at":"2023-11-13T13:56:55.206123Z","id":"16a86205-8fb7-4b9c-b740-800e85a3c809","subnet":"fd68:d440:21c4:ad4b::/64","updated_at":"2023-11-13T13:56:55.206123Z"}],"tags":[],"updated_at":"2023-11-13T13:56:55.206123Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "725"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:08:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5363,7 +5264,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dc16f246-bb88-4b0f-9739-8efa2b72bfae
+ - 7b74f04a-ce59-4523-b3df-16ec74cf2f76
status: 200 OK
code: 200
duration: ""
@@ -5374,19 +5275,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b7adfbe1-fed5-4293-aa43-25e4e6d75b25
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"placement_group":{"id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "331"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:48 GMT
+ - Fri, 08 Dec 2023 16:08:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5396,7 +5297,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2ef54e82-f02b-4749-b13a-883aad9f4392
+ - 2371e63b-5c48-4c8e-828f-4d59c9196e88
status: 200 OK
code: 200
duration: ""
@@ -5407,19 +5308,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:58:10.912448Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1515"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:48 GMT
+ - Fri, 08 Dec 2023 16:08:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5429,7 +5330,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1924e5b-b518-4649-b942-f72c353faf8e
+ - 374cdecd-c3cb-44a5-8885-8bdefe6c7f24
status: 200 OK
code: 200
duration: ""
@@ -5440,19 +5341,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUlpNVTR4YjFoRVZFMTZUVlJGZUUxcVJYcE9WRmt4VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUa2MwQ2pnMmRGQlFXbVZ0YVcwMlVuWlZjVmd2ZDNKWlUxZzJLM1psWjJOc1dsZENSalUwUXpnMFVUQjNhbTFwZWtGTmNFMXRhVFo2TlRKcWFVeDZjSEpGVDNNS01IUlNjamRuZGtGS01sRmFkMFpTYjNaa1pWVmFOVk5pTUZBd2FrVllkVXQwWldwbk9YVTNaa3B0V1N0SFNISmxjWHBwT0dwMlduaG9NVEJqUWpodVFRb3JUR3h1WmxOUGVXSTJZVWxWUzJvck1FTjVVSFJXWTBJeVptUlNRV2hqYWxaemRVSmFiMkYzVGxWWFRFNXVOamxGYm5oNFUyVkJUMDFTTm5aeVJFSm1DbUkxVjA1YVZuVTVWR0p0TlZNeWMzUkhiM2xFVGt0YVVuZExZVEpHVDNObFpHNWxlWGRhTlhveVpFWkdTU3RYU0VKTVJpOTRNbFk0V21KUmRUTm1MMlVLYms5VmVEZzBaRkpCYkVkaWRUY3dZV2RhVERobVNubzRVSGRTY0d4RU5GaGllVFI2TjJ0U1pUTlZOMlJ2S3k5c1JHeE1kbEZPVnpKVFNrd3pWR1pxTmdwWllrRXlWMFpqWVV4bU9XSnpkMGxzZG1ORlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTlJVWnhkMEZ4VVZad1VEaDZVMDF5WVdobU4xbHRiMVUxUWpCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQllrSnNPVFkwT1RCbmIybHVaV1pLV1VwU1lsVkplR1o1Y2s4d1UyWXhVa3hpVW1ad1JuWk5TbUpzUzNCYVQyTkxkd3BqTVdsa2JUZzFjRFZYY1dSeGQzZDNjV05WYmpNd1NuRkpPRzl4U0VwTFJFMUdURUZxYjA4NVRtSXpaMmRYYlZOUlQwSjFNMjlOVlZwWGRGbDVRVEJ1Q25aTlpXbzBTMDFOT1ZSdFUwWlNNMVp3YlVKelJFcDFXRWhsWjNJMWEwZFdPRFYwVlVOdlRIcFVjbEpvYlhSeE1ETnplVU5zVFhVMlQxVjZRMUpTUlVrS2NqbDBWMjlxUTNjMFZtSm5aa05rYTBGUVdDdGtNRUZ5ZURjMWNtbG5hbGRpVHpscllWWkVkakZrY1hwWlpVSnBSa1poVkZWa2VWRjJLekpPWlRJcmVRcDZXSGg2V0RsSk9ESm1WVlJ4VFVoeGJWcFdlWGRGV2tGcGQyWnllV2ROWkc1Rk5uQTRiR1JaYjNkNE5XWXZia2xoYmpsSldYQmhVVloyT1hWb05sVnpDbmcxYWxOdE9FdG9kMWh6VGtOak5sTkRjM2g1Y1ZwNFlUaGlRVlIwYUV0Q0wwdHplQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTJhMGUxMjctYjI0Ni00ZTdjLWIxZjYtZWI4Nzc2MmZmNzYzLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBOd3FranlUZFVkdmFxM0RVTDRJUDJ0ejZPdEdtUVdkSzRwaTNvWkhSQkZNck1jV0xXWW95STFnQQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "2710"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:48 GMT
+ - Fri, 08 Dec 2023 16:09:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5462,7 +5363,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 613ce93a-9094-4355-adb9-47e301fb4689
+ - ee56b547-82e0-49a2-a423-e500a1025c50
status: 200 OK
code: 200
duration: ""
@@ -5473,19 +5374,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:44.836829Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "671"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:48 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5495,7 +5396,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a99e293-4426-4ca8-abab-ecc0456152b0
+ - d102005d-6feb-4358-84c9-f73ff8fd5909
status: 200 OK
code: 200
duration: ""
@@ -5506,19 +5407,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/nodes?order_by=created_at_asc&page=1&pool_id=549dd02e-61ea-40de-9aec-1c68dedcda39&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:38.751025Z","error_message":null,"id":"85120e23-c614-472a-b9f1-fb4b0f8a777b","name":"scw-test-pool-placeme-test-pool-placeme-85120e","pool_id":"549dd02e-61ea-40de-9aec-1c68dedcda39","provider_id":"scaleway://instance/nl-ams-2/9568932f-33d9-44f0-8240-077f4300de38","public_ip_v4":"51.158.238.63","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-11-13T14:00:44.815322Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "658"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:48 GMT
+ - Fri, 08 Dec 2023 16:09:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5528,7 +5429,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65e1881d-465b-4e3f-b7d7-e73580366b7c
+ - cbf4fd41-f34f-48fb-9017-7d40acef8555
status: 200 OK
code: 200
duration: ""
@@ -5539,19 +5440,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T13:58:10.912448Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1515"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5561,7 +5462,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0827e39a-f051-4bfe-bad6-149f0a804984
+ - c98909f0-6598-43e6-9985-98d6cb278255
status: 200 OK
code: 200
duration: ""
@@ -5572,19 +5473,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9377678e-6fed-464c-a2ae-b3e40e4f9c82
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:55.206123Z","dhcp_enabled":true,"id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-11-13T13:56:55.206123Z","id":"623363e3-ff96-455b-833e-e1d478df144f","subnet":"172.16.4.0/22","updated_at":"2023-11-13T13:56:55.206123Z"},{"created_at":"2023-11-13T13:56:55.206123Z","id":"16a86205-8fb7-4b9c-b740-800e85a3c809","subnet":"fd68:d440:21c4:ad4b::/64","updated_at":"2023-11-13T13:56:55.206123Z"}],"tags":[],"updated_at":"2023-11-13T13:56:55.206123Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "725"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5594,7 +5495,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69701e54-8d18-4512-8300-80231d73d2f8
+ - b289c2bc-ba35-47b2-bbd5-312c78841960
status: 200 OK
code: 200
duration: ""
@@ -5605,19 +5506,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b7adfbe1-fed5-4293-aa43-25e4e6d75b25
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"placement_group":{"id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "331"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5627,7 +5528,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0fb10711-2100-42a6-a52b-4484a971ebf4
+ - e07353c3-5ce8-4a77-8c02-f8761bb95e9b
status: 200 OK
code: 200
duration: ""
@@ -5638,19 +5539,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUlpNVTR4YjFoRVZFMTZUVlJGZUUxcVJYcE9WRmt4VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUa2MwQ2pnMmRGQlFXbVZ0YVcwMlVuWlZjVmd2ZDNKWlUxZzJLM1psWjJOc1dsZENSalUwUXpnMFVUQjNhbTFwZWtGTmNFMXRhVFo2TlRKcWFVeDZjSEpGVDNNS01IUlNjamRuZGtGS01sRmFkMFpTYjNaa1pWVmFOVk5pTUZBd2FrVllkVXQwWldwbk9YVTNaa3B0V1N0SFNISmxjWHBwT0dwMlduaG9NVEJqUWpodVFRb3JUR3h1WmxOUGVXSTJZVWxWUzJvck1FTjVVSFJXWTBJeVptUlNRV2hqYWxaemRVSmFiMkYzVGxWWFRFNXVOamxGYm5oNFUyVkJUMDFTTm5aeVJFSm1DbUkxVjA1YVZuVTVWR0p0TlZNeWMzUkhiM2xFVGt0YVVuZExZVEpHVDNObFpHNWxlWGRhTlhveVpFWkdTU3RYU0VKTVJpOTRNbFk0V21KUmRUTm1MMlVLYms5VmVEZzBaRkpCYkVkaWRUY3dZV2RhVERobVNubzRVSGRTY0d4RU5GaGllVFI2TjJ0U1pUTlZOMlJ2S3k5c1JHeE1kbEZPVnpKVFNrd3pWR1pxTmdwWllrRXlWMFpqWVV4bU9XSnpkMGxzZG1ORlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTlJVWnhkMEZ4VVZad1VEaDZVMDF5WVdobU4xbHRiMVUxUWpCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQllrSnNPVFkwT1RCbmIybHVaV1pLV1VwU1lsVkplR1o1Y2s4d1UyWXhVa3hpVW1ad1JuWk5TbUpzUzNCYVQyTkxkd3BqTVdsa2JUZzFjRFZYY1dSeGQzZDNjV05WYmpNd1NuRkpPRzl4U0VwTFJFMUdURUZxYjA4NVRtSXpaMmRYYlZOUlQwSjFNMjlOVlZwWGRGbDVRVEJ1Q25aTlpXbzBTMDFOT1ZSdFUwWlNNMVp3YlVKelJFcDFXRWhsWjNJMWEwZFdPRFYwVlVOdlRIcFVjbEpvYlhSeE1ETnplVU5zVFhVMlQxVjZRMUpTUlVrS2NqbDBWMjlxUTNjMFZtSm5aa05rYTBGUVdDdGtNRUZ5ZURjMWNtbG5hbGRpVHpscllWWkVkakZrY1hwWlpVSnBSa1poVkZWa2VWRjJLekpPWlRJcmVRcDZXSGg2V0RsSk9ESm1WVlJ4VFVoeGJWcFdlWGRGV2tGcGQyWnllV2ROWkc1Rk5uQTRiR1JaYjNkNE5XWXZia2xoYmpsSldYQmhVVloyT1hWb05sVnpDbmcxYWxOdE9FdG9kMWh6VGtOak5sTkRjM2g1Y1ZwNFlUaGlRVlIwYUV0Q0wwdHplQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTJhMGUxMjctYjI0Ni00ZTdjLWIxZjYtZWI4Nzc2MmZmNzYzLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBOd3FranlUZFVkdmFxM0RVTDRJUDJ0ejZPdEdtUVdkSzRwaTNvWkhSQkZNck1jV0xXWW95STFnQQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "2710"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5660,7 +5561,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c881ebc3-abc7-4bfd-843d-105121381c0b
+ - 591f868e-650a-414a-b6aa-4e2a8ca5f1a2
status: 200 OK
code: 200
duration: ""
@@ -5671,19 +5572,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:04:33.430057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "780"
+ - "673"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5693,7 +5594,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 54d5e3d4-99ae-4ba1-8619-a17fde078b9a
+ - d9a00a93-5cbf-4a45-b049-047f6ad7c656
status: 200 OK
code: 200
duration: ""
@@ -5704,10 +5605,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:44.836829Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:09:41.037255Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- "671"
@@ -5716,7 +5617,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5726,7 +5627,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07518b3b-8edb-497e-8e13-310e03af04ac
+ - 7c24a878-cdb0-4dc0-a549-37480fa30e06
status: 200 OK
code: 200
duration: ""
@@ -5737,19 +5638,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/nodes?order_by=created_at_asc&page=1&pool_id=549dd02e-61ea-40de-9aec-1c68dedcda39&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:38.751025Z","error_message":null,"id":"85120e23-c614-472a-b9f1-fb4b0f8a777b","name":"scw-test-pool-placeme-test-pool-placeme-85120e","pool_id":"549dd02e-61ea-40de-9aec-1c68dedcda39","provider_id":"scaleway://instance/nl-ams-2/9568932f-33d9-44f0-8240-077f4300de38","public_ip_v4":"51.158.238.63","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-11-13T14:00:44.815322Z"}],"total_count":1}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:05:59.992341Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "658"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5759,7 +5660,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74572eae-6926-4208-ae83-1d8820d2efbe
+ - 530bc62e-cc40-4a6a-8888-b88757f9e651
status: 200 OK
code: 200
duration: ""
@@ -5770,19 +5671,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:09:41.037255Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "780"
+ - "671"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:09:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5792,7 +5693,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 18000d1d-9773-4ed4-8151-6b910c1d1cda
+ - 893023f6-6b48-471a-bc44-32f399052f9a
status: 200 OK
code: 200
duration: ""
@@ -5803,19 +5704,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/nodes?order_by=created_at_asc&page=1&pool_id=4be03cca-c30e-45b5-9f37-6dffc6deec33&status=unknown
+ method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:50.442643421Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"nodes":[{"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:15.634489Z","error_message":null,"id":"603f07f6-74d2-4c67-9b56-609692dd750f","name":"scw-test-pool-placeme-test-pool-placeme-603f07","pool_id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","provider_id":"scaleway://instance/nl-ams-2/93a93f4d-a64e-4005-8556-4b9ed8228ae5","public_ip_v4":"51.158.245.178","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-12-08T16:09:41.014995Z"}],"total_count":1}'
headers:
Content-Length:
- - "677"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:50 GMT
+ - Fri, 08 Dec 2023 16:09:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5825,7 +5726,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9976f121-05bf-4013-9b15-4f721364be02
+ - 414ff1a1-67bc-4637-98c9-520facba69d0
status: 200 OK
code: 200
duration: ""
@@ -5836,19 +5737,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:50.442643Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:05:59.992341Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "674"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:50 GMT
+ - Fri, 08 Dec 2023 16:09:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5858,7 +5759,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 53fc04c0-364c-4663-bd32-bbb73275c2ca
+ - d2665cdc-ab74-45e1-a26e-551c163dad1e
status: 200 OK
code: 200
duration: ""
@@ -5869,19 +5770,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","container_runtime":"containerd","created_at":"2023-11-13T13:57:01.967275Z","id":"549dd02e-61ea-40de-9aec-1c68dedcda39","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b7adfbe1-fed5-4293-aa43-25e4e6d75b25","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:50.442643Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:09:41.037255Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "674"
+ - "671"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:55 GMT
+ - Fri, 08 Dec 2023 16:09:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5891,7 +5792,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f8a5c98-230c-464d-a515-7a8fcf6965ca
+ - f9d43a90-709f-46fc-94d7-90a690c243a7
status: 200 OK
code: 200
duration: ""
@@ -5902,19 +5803,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/549dd02e-61ea-40de-9aec-1c68dedcda39
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c065e62e-5aa8-4042-9221-3ef02002e4c0
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"549dd02e-61ea-40de-9aec-1c68dedcda39","type":"not_found"}'
+ body: '{"created_at":"2023-12-08T16:04:25.778264Z","dhcp_enabled":true,"id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:04:25.778264Z","id":"a89b4dcf-5379-4ee4-b661-4bb7b27ad202","subnet":"172.16.12.0/22","updated_at":"2023-12-08T16:04:25.778264Z"},{"created_at":"2023-12-08T16:04:25.778264Z","id":"060c6cf6-3962-4f20-bd04-5925717604ac","subnet":"fd68:d440:21c4:37e0::/64","updated_at":"2023-12-08T16:04:25.778264Z"}],"tags":[],"updated_at":"2023-12-08T16:04:25.778264Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- - "125"
+ - "726"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:09:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5924,9 +5825,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f702b1a7-c171-499d-9fd0-caec963f9fd0
- status: 404 Not Found
- code: 404
+ - 77e3fce7-c1f5-4917-8fa1-148a9fa8ee51
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -5935,19 +5836,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763?with_additional_resources=true
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T14:01:00.780939509Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:05:59.992341Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1521"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:09:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5957,7 +5858,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d600000-1c7e-4207-8475-1f7269f22d83
+ - 1dc8ca26-1db5-4ce4-a436-44e2ab1cd6f2
status: 200 OK
code: 200
duration: ""
@@ -5968,15 +5869,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b7adfbe1-fed5-4293-aa43-25e4e6d75b25
- method: DELETE
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b0589c9f-ff8d-41de-9d65-5defb7c05ecf
+ method: GET
response:
- body: ""
+ body: '{"placement_group":{"id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
headers:
+ Content-Length:
+ - "331"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:09:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5986,9 +5891,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ce4d6ea-ba4a-4866-9857-fe498f0e9321
- status: 204 No Content
- code: 204
+ - 612be8e3-7469-43bd-b649-d5ed44373eec
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -5997,19 +5902,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T14:01:00.780940Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlVTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY1VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1JVQ2sxQlVtc3dUVTEySzBrdlIzWk1XbU5aU2pKbGJsVjJRbUYwVVZSV1ZtUmpaRTF4WjIxMmRFRmFTMEZwTTNkV1ZVVmtTV2d6TjFOMFdFVTBkbGhPVkUwS1RIZHpaVkozTTNwaFpFVXliWEZxTmpFMFpFTktMMjFDVG5KQlVqTmtXblJ3TVZSc1MyMVhNVm94Wm5od05sRkdURU5HZVdOT00wVnROekZVWVVZMlZnbzBSV2hxWm5wemFWZEJiekpHZERCMGJYbGxNWGtyVDAxdlFVaEVkakZvWVd0R1VsaExhMk5QZGpOQlRuRkRaMnBNVldOU1UzZHFVV3hqVGpWNlRWbzFDbmhUVWpWTmMzSjNObXR0ZUVWaEt6bGpZVzVZTURCVU5XVXJkMVo0VlhsRFJWSlpUM3BNYnpoR1VYbFpVM3BwVkVaeWQzTnFNekZ6UVRWVVJDdEpVMVVLWTNVNFZVTkpVakVyU0VSeVZ6Rm1WalJUUlRaUEsxbDRRMXBqV2xjNVFqaFFVVTR3T1dwVVMydEtjREV2WlZZeEwySktUVzlGYW5GcmFrWlFlSE5NYndwU1RHWkxlR296UTB4b1JrSXdkM1J0VDBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS1FWTjVWamMzWTJaWk5ETktOVUpEUlRocVlXZHlLMWhXWVdGTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFFtaDNOR0l4ZDFRM1oxWlVOWEJTU0VWM05sRnZaVlZhWm5neVdWTTRjRGN6VDFSTlZYaFFWRXAyTWtOTWJGUXhWd3BpZUVaWmVGbzBhMXBYVWxGQ2FERXlWRVZoTW01MU1WSjJWREoxVkZGSFRGaENkUzlrUVdOMVZFeDVaMDAwTVc1V2IzaFRZM0V5YlVwVVpIaGxlRTV5Q25CblNIaHpjWEZPWms1UlFtaGpLekV5VlU1RFQzRnpWSFZPVjJSWlUzaE1ibWxaZHpWaUsydzRaSHBET1hkT1EyMVRXVzEwY0hKVFMwaDRUbmw2WWpBS2RqWkNja2wxYlhwcVlUQkpTREFyWW1Fd2RXMVVWV0ZvT0djdlFXTlRVMGd2U2pWdGRVcHRLelZaVWtwWVRWbHFhMVZXZW1OSVl6aGpZa3BSTm0xQ09RcENVbGRaZDFwVWRTOUdNbEE1YlV0cmNucGlOSEkwYlhwTmVFUjFXSEJaUTFSWFRIRllOMnh6V21adVVXOXNPQ3RsS3pGRU0wZGxlamRoTVZadkwwMUpDalJVZGpWQlF6TkhNMk5XVGxjeU55OVNPVGN4ZURKdWNUSTRVelU0ZDBWVlEzTTJRd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMzIzMzg3MTEtMWQ4OC00NzNlLWIwN2MtMDIyYzI5YmJmMzIyLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA1VHZTRktUemlrblI0MHBJVDhnMWdyV0x2OU8wYm1ralB3V2ZhekRtMG5tR1NsNlA5b2pqM0Y4Tw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1518"
+ - "2710"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:09:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6019,34 +5924,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 52070013-2418-4d3e-8166-656784bad3c5
+ - b9b854b1-599d-429b-84df-f97769ce6a37
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"name":"test-pool-placement-group","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_type":"max_availability"}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
+ method: GET
response:
- body: '{"placement_group":{"id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:09:41.037255Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "331"
+ - "671"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:01 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/5950daa2-7826-4eab-b245-35eb5dd2aba8
+ - Fri, 08 Dec 2023 16:09:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6056,9 +5957,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 90b31d91-52d6-44b0-b0d8-fe36b50e259f
- status: 201 Created
- code: 201
+ - b89b5f65-f5a4-4fa9-9a54-2ed82a4eeef0
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -6067,19 +5968,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/5950daa2-7826-4eab-b245-35eb5dd2aba8
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/nodes?order_by=created_at_asc&page=1&pool_id=4be03cca-c30e-45b5-9f37-6dffc6deec33&status=unknown
method: GET
response:
- body: '{"placement_group":{"id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}'
+ body: '{"nodes":[{"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:15.634489Z","error_message":null,"id":"603f07f6-74d2-4c67-9b56-609692dd750f","name":"scw-test-pool-placeme-test-pool-placeme-603f07","pool_id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","provider_id":"scaleway://instance/nl-ams-2/93a93f4d-a64e-4005-8556-4b9ed8228ae5","public_ip_v4":"51.158.245.178","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-12-08T16:09:41.014995Z"}],"total_count":1}'
headers:
Content-Length:
- - "331"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:02 GMT
+ - Fri, 08 Dec 2023 16:09:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6089,7 +5990,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2955703e-1ad9-45dd-8a31-0d3e1b782b7f
+ - 2f5380a6-ac2f-42fc-9fd8-cb24e639e6eb
status: 200 OK
code: 200
duration: ""
@@ -6100,19 +6001,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a2a0e127-b246-4e7c-b1f6-eb87762ff763.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:56:56.173271Z","created_at":"2023-11-13T13:56:56.173271Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a2a0e127-b246-4e7c-b1f6-eb87762ff763.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-11-13T14:01:00.780940Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:05:59.992341Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1518"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:05 GMT
+ - Fri, 08 Dec 2023 16:09:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6122,7 +6023,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f84d8995-373f-4dd9-8fac-35d015a5ffff
+ - 26cfc798-f04d-4666-a3c8-d7f78e121d52
status: 200 OK
code: 200
duration: ""
@@ -6133,19 +6034,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/a2a0e127-b246-4e7c-b1f6-eb87762ff763
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b0589c9f-ff8d-41de-9d65-5defb7c05ecf
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"a2a0e127-b246-4e7c-b1f6-eb87762ff763","type":"not_found"}'
+ body: '{"placement_group":{"id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}'
headers:
Content-Length:
- - "128"
+ - "331"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:10 GMT
+ - Fri, 08 Dec 2023 16:09:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6155,9 +6056,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - efa2aea6-f13b-46b5-8ad4-fae56403eced
- status: 404 Not Found
- code: 404
+ - 469f7f84-8bfb-4af5-9869-50625f25237e
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -6166,19 +6067,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9377678e-6fed-464c-a2ae-b3e40e4f9c82
- method: DELETE
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c065e62e-5aa8-4042-9221-3ef02002e4c0
+ method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"9377678e-6fed-464c-a2ae-b3e40e4f9c82","type":"not_found"}'
+ body: '{"created_at":"2023-12-08T16:04:25.778264Z","dhcp_enabled":true,"id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-12-08T16:04:25.778264Z","id":"a89b4dcf-5379-4ee4-b661-4bb7b27ad202","subnet":"172.16.12.0/22","updated_at":"2023-12-08T16:04:25.778264Z"},{"created_at":"2023-12-08T16:04:25.778264Z","id":"060c6cf6-3962-4f20-bd04-5925717604ac","subnet":"fd68:d440:21c4:37e0::/64","updated_at":"2023-12-08T16:04:25.778264Z"}],"tags":[],"updated_at":"2023-12-08T16:04:25.778264Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}'
headers:
Content-Length:
- - "136"
+ - "726"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:11 GMT
+ - Fri, 08 Dec 2023 16:09:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6188,32 +6089,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d394708-fa06-45a0-880d-b66dba0ecac9
- status: 404 Not Found
- code: 404
+ - 13caafb5-2223-49f0-9160-8f956f66e8e2
+ status: 200 OK
+ code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-pool-placement-group-2","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/kubeconfig
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522465Z","created_at":"2023-11-13T14:01:11.288522465Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303527518Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJlVTlHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkY1VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1JVQ2sxQlVtc3dUVTEySzBrdlIzWk1XbU5aU2pKbGJsVjJRbUYwVVZSV1ZtUmpaRTF4WjIxMmRFRmFTMEZwTTNkV1ZVVmtTV2d6TjFOMFdFVTBkbGhPVkUwS1RIZHpaVkozTTNwaFpFVXliWEZxTmpFMFpFTktMMjFDVG5KQlVqTmtXblJ3TVZSc1MyMVhNVm94Wm5od05sRkdURU5HZVdOT00wVnROekZVWVVZMlZnbzBSV2hxWm5wemFWZEJiekpHZERCMGJYbGxNWGtyVDAxdlFVaEVkakZvWVd0R1VsaExhMk5QZGpOQlRuRkRaMnBNVldOU1UzZHFVV3hqVGpWNlRWbzFDbmhUVWpWTmMzSjNObXR0ZUVWaEt6bGpZVzVZTURCVU5XVXJkMVo0VlhsRFJWSlpUM3BNYnpoR1VYbFpVM3BwVkVaeWQzTnFNekZ6UVRWVVJDdEpVMVVLWTNVNFZVTkpVakVyU0VSeVZ6Rm1WalJUUlRaUEsxbDRRMXBqV2xjNVFqaFFVVTR3T1dwVVMydEtjREV2WlZZeEwySktUVzlGYW5GcmFrWlFlSE5NYndwU1RHWkxlR296UTB4b1JrSXdkM1J0VDBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaS1FWTjVWamMzWTJaWk5ETktOVUpEUlRocVlXZHlLMWhXWVdGTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFFtaDNOR0l4ZDFRM1oxWlVOWEJTU0VWM05sRnZaVlZhWm5neVdWTTRjRGN6VDFSTlZYaFFWRXAyTWtOTWJGUXhWd3BpZUVaWmVGbzBhMXBYVWxGQ2FERXlWRVZoTW01MU1WSjJWREoxVkZGSFRGaENkUzlrUVdOMVZFeDVaMDAwTVc1V2IzaFRZM0V5YlVwVVpIaGxlRTV5Q25CblNIaHpjWEZPWms1UlFtaGpLekV5VlU1RFQzRnpWSFZPVjJSWlUzaE1ibWxaZHpWaUsydzRaSHBET1hkT1EyMVRXVzEwY0hKVFMwaDRUbmw2WWpBS2RqWkNja2wxYlhwcVlUQkpTREFyWW1Fd2RXMVVWV0ZvT0djdlFXTlRVMGd2U2pWdGRVcHRLelZaVWtwWVRWbHFhMVZXZW1OSVl6aGpZa3BSTm0xQ09RcENVbGRaZDFwVWRTOUdNbEE1YlV0cmNucGlOSEkwYlhwTmVFUjFXSEJaUTFSWFRIRllOMnh6V21adVVXOXNPQ3RsS3pGRU0wZGxlamRoTVZadkwwMUpDalJVZGpWQlF6TkhNMk5XVGxjeU55OVNPVGN4ZURKdWNUSTRVelU0ZDBWVlEzTTJRd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMzIzMzg3MTEtMWQ4OC00NzNlLWIwN2MtMDIyYzI5YmJmMzIyLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA1VHZTRktUemlrblI0MHBJVDhnMWdyV0x2OU8wYm1ralB3V2ZhekRtMG5tR1NsNlA5b2pqM0Y4Tw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1494"
+ - "2710"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:11 GMT
+ - Fri, 08 Dec 2023 16:09:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6223,7 +6122,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4802b9f0-2ec2-42e1-9cc5-784cb9f3545a
+ - 365775ec-3b46-41bc-872e-20847f202cee
status: 200 OK
code: 200
duration: ""
@@ -6234,19 +6133,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"scarce","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"scarce","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
headers:
Content-Length:
- - "1485"
+ - "774"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:11 GMT
+ - Fri, 08 Dec 2023 16:09:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6256,7 +6155,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f4b06ae-e9cc-4dc8-b474-eecee4976f5b
+ - d52d6d7a-71f6-40c2-8699-5121956972e8
status: 200 OK
code: 200
duration: ""
@@ -6267,19 +6166,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:09:41.037255Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1485"
+ - "671"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:16 GMT
+ - Fri, 08 Dec 2023 16:09:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6289,7 +6188,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0850238f-905b-425a-9a54-abf049257089
+ - 60f02886-9444-48f2-bd69-4b37399c182a
status: 200 OK
code: 200
duration: ""
@@ -6300,19 +6199,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/nodes?order_by=created_at_asc&page=1&pool_id=4be03cca-c30e-45b5-9f37-6dffc6deec33&status=unknown
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"nodes":[{"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:15.634489Z","error_message":null,"id":"603f07f6-74d2-4c67-9b56-609692dd750f","name":"scw-test-pool-placeme-test-pool-placeme-603f07","pool_id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","provider_id":"scaleway://instance/nl-ams-2/93a93f4d-a64e-4005-8556-4b9ed8228ae5","public_ip_v4":"51.158.245.178","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-12-08T16:09:41.014995Z"}],"total_count":1}'
headers:
Content-Length:
- - "1485"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:21 GMT
+ - Fri, 08 Dec 2023 16:09:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6322,7 +6221,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1deb0df7-4388-4435-ac76-1993a46e081a
+ - 1cc50fa6-c596-4ad5-ab07-e76c86ab2322
status: 200 OK
code: 200
duration: ""
@@ -6333,19 +6232,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"scarce","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"scarce","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
headers:
Content-Length:
- - "1485"
+ - "774"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:26 GMT
+ - Fri, 08 Dec 2023 16:09:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6355,7 +6254,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 20e86db1-c939-4c53-86db-be610f2d74b2
+ - 62c6303e-a602-46d8-9aa1-bdc88fa54aac
status: 200 OK
code: 200
duration: ""
@@ -6366,19 +6265,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
+ method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:09:47.102055779Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1485"
+ - "677"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:31 GMT
+ - Fri, 08 Dec 2023 16:09:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6388,7 +6287,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 02feaaa2-7230-4e4e-bc9b-2885c1bfd601
+ - bd16ad9a-f54a-4592-ae3b-6e22d49e92e3
status: 200 OK
code: 200
duration: ""
@@ -6399,19 +6298,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:09:47.102056Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1485"
+ - "674"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:36 GMT
+ - Fri, 08 Dec 2023 16:09:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6421,7 +6320,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4303b8b-ed8f-469b-ad17-333cec504259
+ - 05121acb-a9ca-4686-936b-d54a52c205d4
status: 200 OK
code: 200
duration: ""
@@ -6432,19 +6331,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"32338711-1d88-473e-b07c-022c29bbf322","container_runtime":"containerd","created_at":"2023-12-08T16:04:33.417789Z","id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"b0589c9f-ff8d-41de-9d65-5defb7c05ecf","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:09:47.102056Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}'
headers:
Content-Length:
- - "1485"
+ - "674"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:41 GMT
+ - Fri, 08 Dec 2023 16:09:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6454,7 +6353,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6568fc02-1d33-43da-9179-ce785828cddd
+ - c41a27de-e024-4c1c-bfdd-127a96aaa06d
status: 200 OK
code: 200
duration: ""
@@ -6465,19 +6364,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/4be03cca-c30e-45b5-9f37-6dffc6deec33
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"4be03cca-c30e-45b5-9f37-6dffc6deec33","type":"not_found"}'
headers:
Content-Length:
- - "1485"
+ - "125"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:46 GMT
+ - Fri, 08 Dec 2023 16:09:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6487,9 +6386,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff634778-5462-4ac7-af25-11509f40667f
- status: 200 OK
- code: 200
+ - e56309dc-9348-43cd-8e27-b06d7823bb58
+ status: 404 Not Found
+ code: 404
duration: ""
- request:
body: ""
@@ -6498,19 +6397,15 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/b0589c9f-ff8d-41de-9d65-5defb7c05ecf
+ method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: ""
headers:
- Content-Length:
- - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
Date:
- - Mon, 13 Nov 2023 14:01:51 GMT
+ - Fri, 08 Dec 2023 16:09:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6520,9 +6415,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb829989-e205-41c0-bcec-f7e969aaf6b2
- status: 200 OK
- code: 200
+ - 190eafc6-750f-4d94-82dd-9bc8f310ee4c
+ status: 204 No Content
+ code: 204
duration: ""
- request:
body: ""
@@ -6531,681 +6426,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322?with_additional_resources=true
+ method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:09:57.402661943Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1485"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:01:56 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b4a421eb-1349-4e7a-9175-dc898a7fa9b1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1485"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:01 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fb1efa7c-ade2-4ab6-b922-5d440656207f
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1485"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:07 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 468a50ed-7114-4be5-8c1a-a9bb464643c6
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1485"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:12 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a307f4b1-d2b1-4f15-8351-10bc653c3e26
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1485"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:17 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e9cff673-9bf3-4f64-a9f5-befb4cbdf0a1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:01:11.303528Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1485"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:22 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 60e94763-037d-4ee6-b276-baab1d570794
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:02:22.986688Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:27 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ab0d7d85-5877-4dd1-a085-3b4667a6902b
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:02:22.986688Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:27 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 88d72116-ae5f-4910-b56d-0be039d85ba1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5/kubeconfig
- method: GET
- response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtVd1RVUkZlRTFzYjFoRVZFMTZUVlJGZUUxcVJUQk5SRVY0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVEJqQ25GVFlYZFlVMWszU25ObWNIWkxURTFGYURCSlptdFhRM1ppUWs1U1RHaEVVM05QWW5rMk1taE5OblJtTmtsSlZrdDNOMGhpUzBwWU5rMWtPWFJ3TmpFS1pVbEZLMHN6ZFZscFFrWmxibkZOVUVoR1MwOU5aaXRyVjNOMU1HSk1WRVF6VEN0TVF6UldRVTlXTkVjcloyRmhZVGxtVERndlJEWm5XbEZTZW5sa01RcHNVbmRxSzJ4dGJHZHJVVVJXYTJzNFFWUTVWVkpzWkRFcmNHZzVWMHBFZFZCTlJsQmtSVEpyWjJnMVdFd3ZRMU5wU2xSc1VqZHdSRzl2ZFZsVE1tSXpDbE5zZVRSSE0wZzBha2xhV0VKVVRteHNia3hKVG10WVZIQTFNM1p2UnpKWWJqQTFRelF3U1dkcWEwWjNiRGRRTW5JNVlYTkZNRWhtV205a01qQjJieXNLU25WUFVHbHhla0l5WVhCdVVUUTFVeXRzTUZCU1dXY3ZRMWgyTmpSTFVHWTNaVVp5V1ZjNU1VcDRhREJ0ZUhGbloyRktTVTlTUVVOT01YSkxRWE4zYkFwQmFITlFSbEEwV1ROS1VrbzRTbU5rYzFvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VrcDVVMWt6U3k5UU1IUXZRVFExYWtoMldHUjVNVFo1ZGsxTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05VRnlkMEZYT0ZscE5GVjBOak5rYTJScE1rcEZLMG8zZFN0cGIwRlNhSEZRTTNoblpXZDJTbHBUVVVoQlRGcFhiZ280VWpCTmF5dHhhVEoyVWpGdlVtNTFXbnBxT1hoRVlXOUthbUYwZFRKUU1sSmhkRkpoTjBKcFIyTjNOQ3RqYjJKNFZFdzJUWFZhU2xjM1dtaFZSa0V2Q2tWUWJreHJVR2hUWjA4dmFTOXlTVzFuYTFacWNXNWlhRFY0VERVd1IzRjJOVFEyUVVsM1VHRTVSekJGY1dGUVNHSkJhME5LU2tOT1lsQkZPVUo0UmtVS1pFRjFXVGhPWXpSdWNVMVVOek5sV21ab05VTmFOR3QwTWtrMVUya3daSE5pUzJkb1NIVm9ibGR6Y2sxS00zcGthalUzU3pRd1prdHdWM1ZqYUcxcE13cDRlWGt3VjJSdWJXcFNNRFozYmtzeFNISjZhRmhUZG1kRFFYaFhWMjUxY1hSdmFraHRLMWxwVHprNGQzTnhWMGcxT0U1RldHUXZUalZIVFROck4wRmtDbTFRUVVadU1VSXJOVWRpWjNReE9IaFFUR3h3ZERKNlpYRlNSR1VyZFdONEswbDFkUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTk3NWVlZDEtM2YwMC00ODI0LThlZWItMDc5ZTg1MWEyMGE1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBDSnpqUTZwd3BDZ0NOUHZtYjlQTHVNejBGRmthWmJyRnQ4S2FzN2lONEM5TWNDdXZHNmtuNUNTcQ==","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:
- - Mon, 13 Nov 2023 14:02:27 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 05ddfd01-539b-43c9-8ff3-87af0a9d6332
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:02:22.986688Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:27 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1f5931b0-e570-498a-9bbf-dee5e32959c6
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"nl-ams-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5/pools
- method: POST
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782071Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "676"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:27 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d20aebdc-5160-4d81-874f-e38b7b246a53
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:28 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f3053bee-6a8e-4c45-b587-53c190691313
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:33 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fe89fded-6acd-4c6e-84b2-4bd413ca1201
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:38 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3484bbb8-5f25-4360-a334-f05dac766b82
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:43 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f20461d1-0890-4d81-9b99-cdc5cf8d37f3
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:48 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b887b9fc-5910-46f6-b512-6a8757ad08d7
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:53 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f5d27efd-2c31-4784-9717-56a3c38d72d6
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:58 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0d1e9b52-439c-4cea-b51c-d859eba89195
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7fa5e90d-c93f-41d7-9167-da40c4ed6f26
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:03:08 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e95d2e4-15cc-4363-812e-d5b67a79e873
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "673"
+ - "1521"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:13 GMT
+ - Fri, 08 Dec 2023 16:09:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7215,7 +6448,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3db19542-ec12-4e5c-8ea1-82c58a9c29fd
+ - 5ef10453-e97f-4c28-884e-46613e337b50
status: 200 OK
code: 200
duration: ""
@@ -7226,19 +6459,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:09:57.402662Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1518"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:19 GMT
+ - Fri, 08 Dec 2023 16:09:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7248,30 +6481,34 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dfd3cd0c-c706-41fc-8ae4-f4f8777a797f
+ - 5a995a15-5527-497e-adaa-cdf710070668
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"name":"test-pool-placement-group","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_type":"max_availability"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups
+ method: POST
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"placement_group":{"id":"528e7130-6b28-429d-aef7-dd41fea7157b","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}'
headers:
Content-Length:
- - "673"
+ - "331"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:24 GMT
+ - Fri, 08 Dec 2023 16:09:57 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/528e7130-6b28-429d-aef7-dd41fea7157b
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7281,9 +6518,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 79816bd7-c8ba-4ae7-8a18-617449d96011
- status: 200 OK
- code: 200
+ - 6edac51b-4af9-4f6b-8d42-fad78caa4415
+ status: 201 Created
+ code: 201
duration: ""
- request:
body: ""
@@ -7292,19 +6529,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/528e7130-6b28-429d-aef7-dd41fea7157b
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"placement_group":{"id":"528e7130-6b28-429d-aef7-dd41fea7157b","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}'
headers:
Content-Length:
- - "673"
+ - "331"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:29 GMT
+ - Fri, 08 Dec 2023 16:09:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7314,7 +6551,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 71cf4f7b-6fb0-4aae-a2b0-b86fc150b8a2
+ - aa729b80-f6e6-4ebd-b0e8-382186c45196
status: 200 OK
code: 200
duration: ""
@@ -7325,19 +6562,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://32338711-1d88-473e-b07c-022c29bbf322.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:27.292295Z","created_at":"2023-12-08T16:04:27.292295Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.32338711-1d88-473e-b07c-022c29bbf322.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"32338711-1d88-473e-b07c-022c29bbf322","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-12-08T16:09:57.402662Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1518"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:34 GMT
+ - Fri, 08 Dec 2023 16:10:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7347,7 +6584,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2ffbaef2-02ba-4f94-99bf-07a2f15bf562
+ - 2fdfa2db-6ec0-470a-9ee8-465b888eb522
status: 200 OK
code: 200
duration: ""
@@ -7358,19 +6595,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/32338711-1d88-473e-b07c-022c29bbf322
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"32338711-1d88-473e-b07c-022c29bbf322","type":"not_found"}'
headers:
Content-Length:
- - "673"
+ - "128"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:39 GMT
+ - Fri, 08 Dec 2023 16:10:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7380,9 +6617,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 58afc496-1aa9-44c4-b292-8d6c4905bde6
- status: 200 OK
- code: 200
+ - 75e85e3f-3bee-46d0-99a0-8020519d6231
+ status: 404 Not Found
+ code: 404
duration: ""
- request:
body: ""
@@ -7391,19 +6628,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
+ url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/c065e62e-5aa8-4042-9221-3ef02002e4c0
+ method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"c065e62e-5aa8-4042-9221-3ef02002e4c0","type":"not_found"}'
headers:
Content-Length:
- - "673"
+ - "136"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:10:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7413,30 +6650,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7f3ac924-f533-4620-b4b5-052f853da1f0
- status: 200 OK
- code: 200
+ - b2a9c5a8-f954-4a4d-9b28-082ce48841c1
+ status: 404 Not Found
+ code: 404
duration: ""
- request:
- body: ""
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-pool-placement-group-2","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
+ method: POST
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820797676Z","created_at":"2023-12-08T16:10:07.820797676Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:49 GMT
+ - Fri, 08 Dec 2023 16:10:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7446,7 +6685,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f2b84ea-0feb-4d4d-afc2-40c9cf65fd65
+ - 7df36e04-e2e5-4f7a-a161-d17d78862d9a
status: 200 OK
code: 200
duration: ""
@@ -7457,19 +6696,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:54 GMT
+ - Fri, 08 Dec 2023 16:10:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7479,7 +6718,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0191e70-32c1-4a18-b5bc-0327c8e0b32d
+ - 7cd2a2f8-e2eb-4e8e-9c97-4b3c52d666a0
status: 200 OK
code: 200
duration: ""
@@ -7490,19 +6729,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:59 GMT
+ - Fri, 08 Dec 2023 16:10:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7512,7 +6751,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d62a20e1-4dc3-4719-a7d9-71510d719aac
+ - 21680d70-8789-4d81-bc9f-163f564ab8d6
status: 200 OK
code: 200
duration: ""
@@ -7523,19 +6762,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:04 GMT
+ - Fri, 08 Dec 2023 16:10:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7545,7 +6784,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2e79c4e3-9e54-47d6-878f-cf6c2473c8d9
+ - e2ab9a98-1069-44bc-b5e9-351bbfd907da
status: 200 OK
code: 200
duration: ""
@@ -7556,19 +6795,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:09 GMT
+ - Fri, 08 Dec 2023 16:10:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7578,7 +6817,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 14690763-a685-4fe9-9d76-ab1172e8958c
+ - f4f45e81-f63c-4c68-b972-ffb4c45565ca
status: 200 OK
code: 200
duration: ""
@@ -7589,19 +6828,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:14 GMT
+ - Fri, 08 Dec 2023 16:10:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7611,7 +6850,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e80ca11b-67ee-442f-922e-8d2027c8b540
+ - 0baa3842-1398-4bde-816b-0238bd1fcc8f
status: 200 OK
code: 200
duration: ""
@@ -7622,19 +6861,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:19 GMT
+ - Fri, 08 Dec 2023 16:10:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7644,7 +6883,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c82d8f8b-7c71-4b9f-8ac4-8fc45e8f218e
+ - ba0181ac-7d50-4eab-bf21-9ef9067d34b2
status: 200 OK
code: 200
duration: ""
@@ -7655,19 +6894,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:24 GMT
+ - Fri, 08 Dec 2023 16:10:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7677,7 +6916,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - de3e5445-4030-415a-a376-722845db7291
+ - 95ba7da4-91d2-4a78-8d92-cc3c112b0d5d
status: 200 OK
code: 200
duration: ""
@@ -7688,19 +6927,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:29 GMT
+ - Fri, 08 Dec 2023 16:10:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7710,7 +6949,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01e69820-5ddb-4b47-9d34-ff387d3c3be3
+ - 370ebd77-64ad-43ae-a610-fed39cded284
status: 200 OK
code: 200
duration: ""
@@ -7721,19 +6960,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:34 GMT
+ - Fri, 08 Dec 2023 16:10:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7743,7 +6982,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3eadefee-b0ec-4249-aed1-69acf9ed4e06
+ - a1ee6739-f1c6-4bde-b049-96300551d449
status: 200 OK
code: 200
duration: ""
@@ -7754,19 +6993,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:39 GMT
+ - Fri, 08 Dec 2023 16:10:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7776,7 +7015,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f31caf94-554a-4ac4-9f28-06c6f89942f8
+ - 1d2fbcf0-21d4-4d06-a51a-dcbc4e0f269e
status: 200 OK
code: 200
duration: ""
@@ -7787,19 +7026,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:44 GMT
+ - Fri, 08 Dec 2023 16:10:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7809,7 +7048,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 749a3195-db5c-4034-9a30-96d33359f3c7
+ - 4390450a-9b17-4cae-bbb4-3e1030d17906
status: 200 OK
code: 200
duration: ""
@@ -7820,19 +7059,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:49 GMT
+ - Fri, 08 Dec 2023 16:11:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7842,7 +7081,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 879c2a18-221e-44de-80ea-4024a5a39748
+ - 1d2bdebc-346b-494d-b835-af9dfa12d1f5
status: 200 OK
code: 200
duration: ""
@@ -7853,19 +7092,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:54 GMT
+ - Fri, 08 Dec 2023 16:11:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7875,7 +7114,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c28de70-40e3-4387-bd9c-e34699651e75
+ - 4f3717e3-6a43-42e9-b01b-23eb1f72f2c3
status: 200 OK
code: 200
duration: ""
@@ -7886,19 +7125,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:00 GMT
+ - Fri, 08 Dec 2023 16:11:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7908,7 +7147,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 24a5bfdb-1821-4aab-a90a-50c93079072f
+ - 45cff999-c447-45a4-b9ad-183fc2ca241e
status: 200 OK
code: 200
duration: ""
@@ -7919,19 +7158,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:05 GMT
+ - Fri, 08 Dec 2023 16:11:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7941,7 +7180,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bbef2b9d-6ae9-4637-82fb-716e8d1e178d
+ - 3611b6dd-199e-4b25-bf41-c394b54c27b0
status: 200 OK
code: 200
duration: ""
@@ -7952,19 +7191,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:10 GMT
+ - Fri, 08 Dec 2023 16:11:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7974,7 +7213,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce977f05-5d1a-4411-825d-564574b6183b
+ - 98ffe0ff-87d4-4904-955e-4d8f60e572db
status: 200 OK
code: 200
duration: ""
@@ -7985,19 +7224,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:15 GMT
+ - Fri, 08 Dec 2023 16:11:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8007,7 +7246,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a1565040-efe7-4e9a-968b-5d09e4dad64e
+ - 947d046b-0b8a-454f-bde5-0d0dadc89a34
status: 200 OK
code: 200
duration: ""
@@ -8018,19 +7257,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:10:07.832068Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1485"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:20 GMT
+ - Fri, 08 Dec 2023 16:11:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8040,7 +7279,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74fd75cf-0ef0-4b2d-a67a-30f2b56e2aa6
+ - ef625b28-d0b9-4851-bf8a-1fe22bda16b6
status: 200 OK
code: 200
duration: ""
@@ -8051,19 +7290,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:11:34.646180Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:25 GMT
+ - Fri, 08 Dec 2023 16:11:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8073,7 +7312,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ad88c3b0-1cd1-4f41-ab2c-49221a6ba0d3
+ - df2524d2-96cb-4513-bd17-9b433e67ada8
status: 200 OK
code: 200
duration: ""
@@ -8084,19 +7323,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:11:34.646180Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:30 GMT
+ - Fri, 08 Dec 2023 16:11:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8106,7 +7345,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e4c49b44-cf42-4ff4-a6d0-ea5ce4a1c770
+ - 2820e83e-05a2-41d0-95d7-312e6961c7c3
status: 200 OK
code: 200
duration: ""
@@ -8117,19 +7356,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc/kubeconfig
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRWUkJkMDlXYjFoRVZFMTZUVlJKZDA1NlJUSk5WRUYzVDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUakZzQ2xwdlVHTkpRMkZsSzJaT05tOTNiU3RuY1RGUlUyWkpORTFoTURWbE1GZHdWRzh3YVRGclJUaDNNRnBWV2k5U1JEUk1hMVp3TkhZMVNqbEdTRElyYW5nS1N5OTFjWFZZZUhGQk0xa3dOVTFUZG10S01XVldRaXR0Y2pWbmJYQXZiUzkwVkZkc2RITlhjRkExZWk5eFJEUlBSMEpsTjAxWVpEUnhWVEJaUmpkQk13bzFVWEZoVkRONGNteFliVXBCUjAwNVVETjZhRVozYkc1eVNFb3ZTblp5YzFjMGMydFNjV1pTYTNoWlNsZFViVmRyV1VGb1RXRlJja1ZwTVRab1J6VTNDak00YjFOUVIwRk5jRGt4ZVU1cE0xUXJWbkI0SzNodVUyMTVkR3QzYzJZclIwUTBVVU4wZDJRd1VUbE5WbnBUYnpJeVFrMVZVa2s1YW1FNFEzSm5RbVFLV0VOWFowMW1XWE4xWTNoUVJtTkxLM1oyT1d0T2NHNXVURkJtYzJFMU1FRXpSR05HYkhkUGIwUjJOVk5KV1U1bVF6RXpMM0l6TDFZck1VYzRTakpGVlFwcFVXZ3pNa0V5V1dwRlFqVXJRMnhVWld3NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRFF6Y3diR2x3YlVWeFRXVXljbWhzVDNKUWFDOUtNR2wxUW5GTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RHOTVRMWhwZDJkSE1VNW5XRmxMTDFadU1HbGlMMHBRUjAxc09EZEdaVEE0TTBWTFMwRTFRV2xIYlZkdmFUaERRd3BMZUhoSmIxcHJXa0ZRVlVzelRGTnZXWGhKYlRseVZVcDRMMWxGV1hGWlRrSnJWbll3VXpKUlNUTkxNemh2TW5SVGJYSlJkV0YxY1ZWWFpGbHVlRVZrQ2s1UVVVUm5iQzlwV0VkVmRqSjBWM0pYWWtoUGVrOHZjMDVNWTJWNlNIZHhOVmwzVmtaNlJETTJkekZYY0dobmFYSmtaaTlqTVM5RE5YaEdZM2RJYVVjS2RYQnBaekZIZUZaTWNtNVhOMmQzU0ZvMWNUWXdiWFIyVVUxWFNGUXhOVmt5V2xVMk1sTk9XRnBoYkdnMFltcHFaVlJVZG5WaVYyZFFiRWRvZEZBNFNBbzRPVlUyYUdoSmVUaFFaM0U0Wm5GWFEyZ3JkSHB3WkhSWFZFVkVXaTgxVDI1dVl6Sk1ibGt4TjNGSWQwZFpSVzVIZW5WQmRHdDFTU3RVY2l0dFpTdGFDbk5GT0VJclpFTnVSa3hCVFdORGRqTkJlV1ZzUWs1YVdscDZhV1ZGVFVGVWRXbHVTZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWIwNDBkYzEtZjAyZC00MGRmLWIyYjktYzIxOWZhNzhjZGZjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBkWmIzSWtUM1J4Z01HVUNyYm13U1dDbktiMUN6enhKdnpnc0NFVld1UVdubEs0OTBucWRjSUNVWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "673"
+ - "2710"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:35 GMT
+ - Fri, 08 Dec 2023 16:11:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8139,7 +7378,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7257d987-86d2-47b9-99d4-ad1735afc564
+ - 31aaae0b-b770-4673-a6f4-61e6d47dbbf9
status: 200 OK
code: 200
duration: ""
@@ -8150,19 +7389,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:11:34.646180Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "673"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:40 GMT
+ - Fri, 08 Dec 2023 16:11:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8172,30 +7411,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97a4eed3-917e-4da9-95fb-b39dc84704a5
+ - 63897318-fa83-4c36-9b8c-0db822a9f98e
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"nl-ams-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc/pools
+ method: POST
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379558949Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- - "673"
+ - "676"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:45 GMT
+ - Fri, 08 Dec 2023 16:11:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8205,7 +7446,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 070b7001-a689-4ba6-8cde-8cdca932febb
+ - 10b2f7d8-8193-4ac3-a9fa-1cc003809b62
status: 200 OK
code: 200
duration: ""
@@ -8216,10 +7457,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8228,7 +7469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:50 GMT
+ - Fri, 08 Dec 2023 16:11:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8238,7 +7479,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - edc664ca-d83f-4438-b2e2-2ee698474852
+ - 35764320-d57b-4c89-b36c-d277e467f9e1
status: 200 OK
code: 200
duration: ""
@@ -8249,10 +7490,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8261,7 +7502,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:05:56 GMT
+ - Fri, 08 Dec 2023 16:11:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8271,7 +7512,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c4f85d47-5c8c-433c-af2c-9799505d7c59
+ - 62649a3f-44d0-4cb4-8d80-cf1672ace1c6
status: 200 OK
code: 200
duration: ""
@@ -8282,10 +7523,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8294,7 +7535,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:01 GMT
+ - Fri, 08 Dec 2023 16:11:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8304,7 +7545,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 812b70ae-45a8-4ce5-9269-58dcc46b672e
+ - bbb65ae8-e25c-4445-a7c0-adb1e9e05cc0
status: 200 OK
code: 200
duration: ""
@@ -8315,10 +7556,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8327,7 +7568,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:06 GMT
+ - Fri, 08 Dec 2023 16:11:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8337,7 +7578,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b60d4130-4326-4dc8-9fd8-331e0b5ccc8d
+ - cd565d5c-6b0c-4521-bd41-3ade91656a70
status: 200 OK
code: 200
duration: ""
@@ -8348,10 +7589,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8360,7 +7601,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:11 GMT
+ - Fri, 08 Dec 2023 16:11:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8370,7 +7611,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a8788fb9-f6b4-4eae-ad74-fceb64898c52
+ - be8e3747-7668-42ca-80f7-b7ab08b43cd7
status: 200 OK
code: 200
duration: ""
@@ -8381,10 +7622,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8393,7 +7634,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:16 GMT
+ - Fri, 08 Dec 2023 16:12:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8403,7 +7644,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 06c5117f-b16f-47c8-a368-4c3add5b8dc2
+ - cd514e5a-be69-4084-ae0b-588033a96983
status: 200 OK
code: 200
duration: ""
@@ -8414,10 +7655,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8426,7 +7667,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:21 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8436,7 +7677,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 064f730e-d076-44fe-b1f4-8d0f6f03fa50
+ - f7292993-c91f-43c3-a738-d23ddfc268ad
status: 200 OK
code: 200
duration: ""
@@ -8447,10 +7688,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8459,7 +7700,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:26 GMT
+ - Fri, 08 Dec 2023 16:12:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8469,7 +7710,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07f8770a-b5ef-4272-bc99-0aa3aa418b7e
+ - 63059b16-d75d-4890-a925-84b51ce523a9
status: 200 OK
code: 200
duration: ""
@@ -8480,10 +7721,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8492,7 +7733,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:31 GMT
+ - Fri, 08 Dec 2023 16:12:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8502,7 +7743,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d652f113-be0b-4021-a6ff-b01dae20cb97
+ - 2877b8fb-c952-46be-8209-b169868d6476
status: 200 OK
code: 200
duration: ""
@@ -8513,10 +7754,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8525,7 +7766,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:36 GMT
+ - Fri, 08 Dec 2023 16:12:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8535,7 +7776,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 68cdd8a4-c7bf-429e-8ee5-df9a0a5b7013
+ - 25a37bd3-cf31-4e33-8379-8e7bfbafc1eb
status: 200 OK
code: 200
duration: ""
@@ -8546,10 +7787,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8558,7 +7799,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:41 GMT
+ - Fri, 08 Dec 2023 16:12:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8568,7 +7809,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 50cd7cd1-d944-466e-a513-2c545f76ae34
+ - bdf90d9f-af1e-46a7-8a08-6cb769b4f1b5
status: 200 OK
code: 200
duration: ""
@@ -8579,10 +7820,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8591,7 +7832,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:46 GMT
+ - Fri, 08 Dec 2023 16:12:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8601,7 +7842,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74315021-a4c2-4b03-a3a7-99ca19f3d5f8
+ - bba73697-159b-4f03-a565-e3fab2d7d7f7
status: 200 OK
code: 200
duration: ""
@@ -8612,10 +7853,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8624,7 +7865,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:51 GMT
+ - Fri, 08 Dec 2023 16:12:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8634,7 +7875,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfa2e9a5-b5af-4b05-9fa1-42b869f57c68
+ - c598e8cf-4f6f-42bd-bbd0-357c435c8641
status: 200 OK
code: 200
duration: ""
@@ -8645,10 +7886,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8657,7 +7898,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:56 GMT
+ - Fri, 08 Dec 2023 16:12:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8667,7 +7908,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b83ff0a0-567d-4ef3-8531-2d6b032a40d8
+ - 3ef862c5-e572-4872-a951-d3da9ea57e98
status: 200 OK
code: 200
duration: ""
@@ -8678,10 +7919,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8690,7 +7931,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:01 GMT
+ - Fri, 08 Dec 2023 16:12:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8700,7 +7941,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1a47e452-e7d2-40cf-815e-4eb74df3a342
+ - 72d66816-32e8-46a3-a1d8-53bf4b5455f0
status: 200 OK
code: 200
duration: ""
@@ -8711,10 +7952,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8723,7 +7964,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:12:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8733,7 +7974,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6fcf57ed-1842-4dd9-8d23-941a3120544a
+ - 042bfd6a-03a6-4ed1-9006-75fe6e5367e5
status: 200 OK
code: 200
duration: ""
@@ -8744,10 +7985,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8756,7 +7997,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:11 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8766,7 +8007,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f72866f-431a-4282-828a-a7a41cec3917
+ - 6792a04f-1d47-4da6-b786-57f045eafa57
status: 200 OK
code: 200
duration: ""
@@ -8777,10 +8018,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8789,7 +8030,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:16 GMT
+ - Fri, 08 Dec 2023 16:13:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8799,7 +8040,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9ff7dc32-e323-41f8-b316-a7784808ef13
+ - e1b1bacf-c8e3-4bdf-9c54-315ab7450c1b
status: 200 OK
code: 200
duration: ""
@@ -8810,10 +8051,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8822,7 +8063,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:21 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8832,7 +8073,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 138f7701-7b4b-4348-81a2-6f784b10edc8
+ - 10b088a9-92a6-4ea5-81ba-1f4bd57b4387
status: 200 OK
code: 200
duration: ""
@@ -8843,10 +8084,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:02:27.699782Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:11:39.379559Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "673"
@@ -8855,7 +8096,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:26 GMT
+ - Fri, 08 Dec 2023 16:13:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8865,7 +8106,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1744b8d0-8978-4f2b-9b4c-1ea4e7b876a5
+ - 77829ffc-1864-4801-ac4b-8f80f0e2f6b3
status: 200 OK
code: 200
duration: ""
@@ -8876,10 +8117,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:07:29.088260Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:15.821413Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "671"
@@ -8888,7 +8129,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:31 GMT
+ - Fri, 08 Dec 2023 16:13:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8898,7 +8139,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 20fa8ef3-c515-493c-b9ed-5d7c7413833f
+ - c708d500-c1e8-4de0-8885-3321254a8c5a
status: 200 OK
code: 200
duration: ""
@@ -8909,10 +8150,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:07:29.088260Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:15.821413Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "671"
@@ -8921,7 +8162,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:32 GMT
+ - Fri, 08 Dec 2023 16:13:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8931,7 +8172,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4ce5cad1-fcd0-4681-9589-8349786fcea7
+ - 44d44137-d689-4318-807f-821275b65043
status: 200 OK
code: 200
duration: ""
@@ -8942,10 +8183,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5/nodes?order_by=created_at_asc&page=1&pool_id=548fbd02-d615-4a4a-b949-afcd80e2095a&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc/nodes?order_by=created_at_asc&page=1&pool_id=58678a81-ae5b-4f3d-9f35-ff782737eebc&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-11-13T14:04:58.407357Z","error_message":null,"id":"7d8e7d14-48e8-422a-9650-f915682a8c8a","name":"scw-test-pool-placeme-test-pool-placeme-7d8e7d","pool_id":"548fbd02-d615-4a4a-b949-afcd80e2095a","provider_id":"scaleway://instance/nl-ams-1/08842a06-1018-4284-9746-0af02ed7edfd","public_ip_v4":"51.15.60.254","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:07:29.072452Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-12-08T16:11:39.872103Z","error_message":null,"id":"1cad8e5b-80f0-4cad-855f-23ea664cd4ef","name":"scw-test-pool-placeme-test-pool-placeme-1cad8e","pool_id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","provider_id":"scaleway://instance/nl-ams-1/9665801d-0e63-4751-86aa-7af0e70476a7","public_ip_v4":"51.15.94.228","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:15.806236Z"}],"total_count":1}'
headers:
Content-Length:
- "620"
@@ -8954,7 +8195,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:32 GMT
+ - Fri, 08 Dec 2023 16:13:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8964,7 +8205,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f42f3a1d-1018-462f-b36b-0e77b730190a
+ - 0c84ef39-d1bb-41aa-8383-45372e15aaab
status: 200 OK
code: 200
duration: ""
@@ -8975,10 +8216,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:02:22.986688Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:11:34.646180Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -8987,7 +8228,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:32 GMT
+ - Fri, 08 Dec 2023 16:13:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8997,7 +8238,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ead21760-3832-40e8-bca7-d6bd9449896c
+ - 37552b77-a341-4b09-a44a-4e09b9412498
status: 200 OK
code: 200
duration: ""
@@ -9008,10 +8249,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:07:29.088260Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:15.821413Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "671"
@@ -9020,7 +8261,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:32 GMT
+ - Fri, 08 Dec 2023 16:13:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9030,7 +8271,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 30f4ad0a-ec85-4d69-a765-ccd74d7148e6
+ - 40f3c20c-8a93-420d-9c6e-370803941bfa
status: 200 OK
code: 200
duration: ""
@@ -9041,10 +8282,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:02:22.986688Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:11:34.646180Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -9053,7 +8294,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:33 GMT
+ - Fri, 08 Dec 2023 16:13:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9063,7 +8304,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7828a962-8e27-4dc2-95bb-3da81c6938fc
+ - 213c55b7-688c-4482-9f0d-e6b1500efdfe
status: 200 OK
code: 200
duration: ""
@@ -9074,10 +8315,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/5950daa2-7826-4eab-b245-35eb5dd2aba8
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/528e7130-6b28-429d-aef7-dd41fea7157b
method: GET
response:
- body: '{"placement_group":{"id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}'
+ body: '{"placement_group":{"id":"528e7130-6b28-429d-aef7-dd41fea7157b","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}'
headers:
Content-Length:
- "331"
@@ -9086,7 +8327,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:33 GMT
+ - Fri, 08 Dec 2023 16:13:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9096,7 +8337,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c233ce21-bd0e-4990-978c-791bf99b7c40
+ - 8b692737-fa5a-48e8-8dcf-933fb1c95460
status: 200 OK
code: 200
duration: ""
@@ -9107,10 +8348,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtVd1RVUkZlRTFzYjFoRVZFMTZUVlJGZUUxcVJUQk5SRVY0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVEJqQ25GVFlYZFlVMWszU25ObWNIWkxURTFGYURCSlptdFhRM1ppUWs1U1RHaEVVM05QWW5rMk1taE5OblJtTmtsSlZrdDNOMGhpUzBwWU5rMWtPWFJ3TmpFS1pVbEZLMHN6ZFZscFFrWmxibkZOVUVoR1MwOU5aaXRyVjNOMU1HSk1WRVF6VEN0TVF6UldRVTlXTkVjcloyRmhZVGxtVERndlJEWm5XbEZTZW5sa01RcHNVbmRxSzJ4dGJHZHJVVVJXYTJzNFFWUTVWVkpzWkRFcmNHZzVWMHBFZFZCTlJsQmtSVEpyWjJnMVdFd3ZRMU5wU2xSc1VqZHdSRzl2ZFZsVE1tSXpDbE5zZVRSSE0wZzBha2xhV0VKVVRteHNia3hKVG10WVZIQTFNM1p2UnpKWWJqQTFRelF3U1dkcWEwWjNiRGRRTW5JNVlYTkZNRWhtV205a01qQjJieXNLU25WUFVHbHhla0l5WVhCdVVUUTFVeXRzTUZCU1dXY3ZRMWgyTmpSTFVHWTNaVVp5V1ZjNU1VcDRhREJ0ZUhGbloyRktTVTlTUVVOT01YSkxRWE4zYkFwQmFITlFSbEEwV1ROS1VrbzRTbU5rYzFvd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT2VrcDVVMWt6U3k5UU1IUXZRVFExYWtoMldHUjVNVFo1ZGsxTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05VRnlkMEZYT0ZscE5GVjBOak5rYTJScE1rcEZLMG8zZFN0cGIwRlNhSEZRTTNoblpXZDJTbHBUVVVoQlRGcFhiZ280VWpCTmF5dHhhVEoyVWpGdlVtNTFXbnBxT1hoRVlXOUthbUYwZFRKUU1sSmhkRkpoTjBKcFIyTjNOQ3RqYjJKNFZFdzJUWFZhU2xjM1dtaFZSa0V2Q2tWUWJreHJVR2hUWjA4dmFTOXlTVzFuYTFacWNXNWlhRFY0VERVd1IzRjJOVFEyUVVsM1VHRTVSekJGY1dGUVNHSkJhME5LU2tOT1lsQkZPVUo0UmtVS1pFRjFXVGhPWXpSdWNVMVVOek5sV21ab05VTmFOR3QwTWtrMVUya3daSE5pUzJkb1NIVm9ibGR6Y2sxS00zcGthalUzU3pRd1prdHdWM1ZqYUcxcE13cDRlWGt3VjJSdWJXcFNNRFozYmtzeFNISjZhRmhUZG1kRFFYaFhWMjUxY1hSdmFraHRLMWxwVHprNGQzTnhWMGcxT0U1RldHUXZUalZIVFROck4wRmtDbTFRUVVadU1VSXJOVWRpWjNReE9IaFFUR3h3ZERKNlpYRlNSR1VyZFdONEswbDFkUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTk3NWVlZDEtM2YwMC00ODI0LThlZWItMDc5ZTg1MWEyMGE1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBDSnpqUTZwd3BDZ0NOUHZtYjlQTHVNejBGRmthWmJyRnQ4S2FzN2lONEM5TWNDdXZHNmtuNUNTcQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRWUkJkMDlXYjFoRVZFMTZUVlJKZDA1NlJUSk5WRUYzVDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUakZzQ2xwdlVHTkpRMkZsSzJaT05tOTNiU3RuY1RGUlUyWkpORTFoTURWbE1GZHdWRzh3YVRGclJUaDNNRnBWV2k5U1JEUk1hMVp3TkhZMVNqbEdTRElyYW5nS1N5OTFjWFZZZUhGQk0xa3dOVTFUZG10S01XVldRaXR0Y2pWbmJYQXZiUzkwVkZkc2RITlhjRkExZWk5eFJEUlBSMEpsTjAxWVpEUnhWVEJaUmpkQk13bzFVWEZoVkRONGNteFliVXBCUjAwNVVETjZhRVozYkc1eVNFb3ZTblp5YzFjMGMydFNjV1pTYTNoWlNsZFViVmRyV1VGb1RXRlJja1ZwTVRab1J6VTNDak00YjFOUVIwRk5jRGt4ZVU1cE0xUXJWbkI0SzNodVUyMTVkR3QzYzJZclIwUTBVVU4wZDJRd1VUbE5WbnBUYnpJeVFrMVZVa2s1YW1FNFEzSm5RbVFLV0VOWFowMW1XWE4xWTNoUVJtTkxLM1oyT1d0T2NHNXVURkJtYzJFMU1FRXpSR05HYkhkUGIwUjJOVk5KV1U1bVF6RXpMM0l6TDFZck1VYzRTakpGVlFwcFVXZ3pNa0V5V1dwRlFqVXJRMnhVWld3NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRFF6Y3diR2x3YlVWeFRXVXljbWhzVDNKUWFDOUtNR2wxUW5GTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RHOTVRMWhwZDJkSE1VNW5XRmxMTDFadU1HbGlMMHBRUjAxc09EZEdaVEE0TTBWTFMwRTFRV2xIYlZkdmFUaERRd3BMZUhoSmIxcHJXa0ZRVlVzelRGTnZXWGhKYlRseVZVcDRMMWxGV1hGWlRrSnJWbll3VXpKUlNUTkxNemh2TW5SVGJYSlJkV0YxY1ZWWFpGbHVlRVZrQ2s1UVVVUm5iQzlwV0VkVmRqSjBWM0pYWWtoUGVrOHZjMDVNWTJWNlNIZHhOVmwzVmtaNlJETTJkekZYY0dobmFYSmtaaTlqTVM5RE5YaEdZM2RJYVVjS2RYQnBaekZIZUZaTWNtNVhOMmQzU0ZvMWNUWXdiWFIyVVUxWFNGUXhOVmt5V2xVMk1sTk9XRnBoYkdnMFltcHFaVlJVZG5WaVYyZFFiRWRvZEZBNFNBbzRPVlUyYUdoSmVUaFFaM0U0Wm5GWFEyZ3JkSHB3WkhSWFZFVkVXaTgxVDI1dVl6Sk1ibGt4TjNGSWQwZFpSVzVIZW5WQmRHdDFTU3RVY2l0dFpTdGFDbk5GT0VJclpFTnVSa3hCVFdORGRqTkJlV1ZzUWs1YVdscDZhV1ZGVFVGVWRXbHVTZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWIwNDBkYzEtZjAyZC00MGRmLWIyYjktYzIxOWZhNzhjZGZjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBkWmIzSWtUM1J4Z01HVUNyYm13U1dDbktiMUN6enhKdnpnc0NFVld1UVdubEs0OTBucWRjSUNVWA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -9119,7 +8360,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:33 GMT
+ - Fri, 08 Dec 2023 16:13:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9129,7 +8370,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 099abf11-1098-4f8a-8cd6-e3d31dca72a4
+ - 01ce194e-cef5-4081-b4a2-c419911b37c8
status: 200 OK
code: 200
duration: ""
@@ -9140,10 +8381,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:07:29.088260Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:15.821413Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "671"
@@ -9152,7 +8393,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:33 GMT
+ - Fri, 08 Dec 2023 16:13:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9162,7 +8403,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4146831f-4dbb-4792-ba23-daae7bddd3fe
+ - dd3812f0-c342-4003-977d-039a6819b5ca
status: 200 OK
code: 200
duration: ""
@@ -9173,10 +8414,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5/nodes?order_by=created_at_asc&page=1&pool_id=548fbd02-d615-4a4a-b949-afcd80e2095a&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc/nodes?order_by=created_at_asc&page=1&pool_id=58678a81-ae5b-4f3d-9f35-ff782737eebc&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-11-13T14:04:58.407357Z","error_message":null,"id":"7d8e7d14-48e8-422a-9650-f915682a8c8a","name":"scw-test-pool-placeme-test-pool-placeme-7d8e7d","pool_id":"548fbd02-d615-4a4a-b949-afcd80e2095a","provider_id":"scaleway://instance/nl-ams-1/08842a06-1018-4284-9746-0af02ed7edfd","public_ip_v4":"51.15.60.254","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:07:29.072452Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-12-08T16:11:39.872103Z","error_message":null,"id":"1cad8e5b-80f0-4cad-855f-23ea664cd4ef","name":"scw-test-pool-placeme-test-pool-placeme-1cad8e","pool_id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","provider_id":"scaleway://instance/nl-ams-1/9665801d-0e63-4751-86aa-7af0e70476a7","public_ip_v4":"51.15.94.228","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:15.806236Z"}],"total_count":1}'
headers:
Content-Length:
- "620"
@@ -9185,7 +8426,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:33 GMT
+ - Fri, 08 Dec 2023 16:13:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9195,7 +8436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 995dde04-eed0-4a0a-930b-9aff3d7fa1a3
+ - f73709a0-ccfd-47f8-acd1-b81d3d2701ce
status: 200 OK
code: 200
duration: ""
@@ -9206,10 +8447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097731803Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:22.551779760Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "677"
@@ -9218,106 +8459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:34 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f6063126-9c00-4b93-8626-23445bc2f441
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "674"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:07:34 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - abe1bd11-fa0a-4e91-b0da-0445810d54d4
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "674"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:07:39 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 78a56628-1cbb-48c8-92e2-291db81e1c58
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "674"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:07:44 GMT
+ - Fri, 08 Dec 2023 16:13:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9327,7 +8469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 080cf58b-1acc-49cb-9459-70e00b59583b
+ - 5859da30-0d04-4de9-8b3c-1e50734e5a18
status: 200 OK
code: 200
duration: ""
@@ -9338,10 +8480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:22.551780Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "674"
@@ -9350,7 +8492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:49 GMT
+ - Fri, 08 Dec 2023 16:13:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9360,7 +8502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2fca180f-504d-4ae3-809f-e8c1997df18b
+ - f30e4d7a-031b-4882-ac90-74b818005ac3
status: 200 OK
code: 200
duration: ""
@@ -9371,10 +8513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","container_runtime":"containerd","created_at":"2023-12-08T16:11:39.365827Z","id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"528e7130-6b28-429d-aef7-dd41fea7157b","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:22.551780Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
headers:
Content-Length:
- "674"
@@ -9383,7 +8525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:54 GMT
+ - Fri, 08 Dec 2023 16:13:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9393,7 +8535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7168ba55-581f-4741-a6d8-beb19b6f3582
+ - a2af0511-0c13-4ae5-a548-17b42ba7260a
status: 200 OK
code: 200
duration: ""
@@ -9404,19 +8546,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","type":"not_found"}'
headers:
Content-Length:
- - "674"
+ - "125"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:59 GMT
+ - Fri, 08 Dec 2023 16:13:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9426,9 +8568,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df5962cd-8eb5-4688-bb3a-cf072b8cff1a
- status: 200 OK
- code: 200
+ - 0ac014c8-4193-4545-b845-4d19740378d8
+ status: 404 Not Found
+ code: 404
duration: ""
- request:
body: ""
@@ -9437,19 +8579,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc?with_additional_resources=true
+ method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","container_runtime":"containerd","created_at":"2023-11-13T14:02:27.678801Z","id":"548fbd02-d615-4a4a-b949-afcd80e2095a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"5950daa2-7826-4eab-b245-35eb5dd2aba8","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:07:34.097732Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:13:32.735763704Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "674"
+ - "1488"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:04 GMT
+ - Fri, 08 Dec 2023 16:13:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9459,7 +8601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 77f370e6-d822-430a-bac2-33066be16a12
+ - c76cc295-4e04-4adb-9762-bd1b07cfad9c
status: 200 OK
code: 200
duration: ""
@@ -9470,52 +8612,15 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
- method: GET
- response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"548fbd02-d615-4a4a-b949-afcd80e2095a","type":"not_found"}'
- headers:
- Content-Length:
- - "125"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:09 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fc787685-9ac1-4c2f-ad75-e90392473b22
- status: 404 Not Found
- code: 404
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5?with_additional_resources=true
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/528e7130-6b28-429d-aef7-dd41fea7157b
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:08:09.550142800Z","upgrade_available":false,"version":"1.28.2"}'
+ body: ""
headers:
- Content-Length:
- - "1488"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
Date:
- - Mon, 13 Nov 2023 14:08:09 GMT
+ - Fri, 08 Dec 2023 16:13:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9525,9 +8630,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6256773e-0d3a-4cc7-97b7-e65f2bbcfa8f
- status: 200 OK
- code: 200
+ - 0c04fbd3-ff6b-47a9-9aa9-5e0340a163ea
+ status: 204 No Content
+ code: 204
duration: ""
- request:
body: ""
@@ -9536,10 +8641,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:08:09.550143Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:13:32.735764Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1485"
@@ -9548,7 +8653,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:09 GMT
+ - Fri, 08 Dec 2023 16:13:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9558,7 +8663,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76bf2ca3-49a6-4a3b-8256-34304fcb8f3b
+ - e07dfb6f-bbb4-4689-8b52-02c22b5d345d
status: 200 OK
code: 200
duration: ""
@@ -9569,39 +8674,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/5950daa2-7826-4eab-b245-35eb5dd2aba8
- method: DELETE
- response:
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Date:
- - Mon, 13 Nov 2023 14:08:09 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9b8fd045-6b3a-4511-8ef5-3c9eb97d58b0
- status: 204 No Content
- code: 204
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1975eed1-3f00-4824-8eeb-079e851a20a5.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:01:11.288522Z","created_at":"2023-11-13T14:01:11.288522Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1975eed1-3f00-4824-8eeb-079e851a20a5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1975eed1-3f00-4824-8eeb-079e851a20a5","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-11-13T14:08:09.550143Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://eb040dc1-f02d-40df-b2b9-c219fa78cdfc.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:10:07.820798Z","created_at":"2023-12-08T16:10:07.820798Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.eb040dc1-f02d-40df-b2b9-c219fa78cdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-12-08T16:13:32.735764Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1485"
@@ -9610,7 +8686,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:15 GMT
+ - Fri, 08 Dec 2023 16:13:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9620,7 +8696,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 484ac430-4266-42a6-bc9a-9668bf37b5cf
+ - 8af3fd83-91b0-4201-9a7c-2ad3e04e860d
status: 200 OK
code: 200
duration: ""
@@ -9631,10 +8707,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -9643,7 +8719,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:20 GMT
+ - Fri, 08 Dec 2023 16:13:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9653,7 +8729,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3d5f8ca2-f2b8-4114-b777-3c2d1eb32e7a
+ - 34ec243d-d0f3-4c33-b681-0112d318f0cf
status: 404 Not Found
code: 404
duration: ""
@@ -9664,10 +8740,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/548fbd02-d615-4a4a-b949-afcd80e2095a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/58678a81-ae5b-4f3d-9f35-ff782737eebc
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"548fbd02-d615-4a4a-b949-afcd80e2095a","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"58678a81-ae5b-4f3d-9f35-ff782737eebc","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -9676,7 +8752,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:20 GMT
+ - Fri, 08 Dec 2023 16:13:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9686,7 +8762,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 075e63ce-a9ed-4f76-be7f-a1d82b406e56
+ - 74ab3ebe-8f60-46ad-b598-924a2ffb2fc0
status: 404 Not Found
code: 404
duration: ""
@@ -9697,10 +8773,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1975eed1-3f00-4824-8eeb-079e851a20a5
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eb040dc1-f02d-40df-b2b9-c219fa78cdfc
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"1975eed1-3f00-4824-8eeb-079e851a20a5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"eb040dc1-f02d-40df-b2b9-c219fa78cdfc","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -9709,7 +8785,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:20 GMT
+ - Fri, 08 Dec 2023 16:13:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -9719,7 +8795,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 23610f0d-9b43-4256-8a44-ea975449689d
+ - 4391dbdf-8dc8-4ca2-a3f8-2739cb269da6
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml
index bfa07cf0b6..5a252eea9f 100644
--- a/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2bfdde8f-6196-4677-8871-bfe099b4e1a6
+ - 7435683f-e506-4f4f-9f20-548d32fd8d27
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"172.16.60.0/22","updated_at":"2023-11-13T13:52:29.268912Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:52:29.268912Z"}],"tags":[],"updated_at":"2023-11-13T13:52:29.268912Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:59:58.899481Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T15:59:58.899481Z"}],"tags":[],"updated_at":"2023-12-08T15:59:58.899481Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "719"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:34 GMT
+ - Fri, 08 Dec 2023 15:59:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4da160d-e9f7-448e-b102-fa2016850338
+ - f39a6b2b-bb16-44d3-bc80-df8ff4415405
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"172.16.60.0/22","updated_at":"2023-11-13T13:52:29.268912Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:52:29.268912Z"}],"tags":[],"updated_at":"2023-11-13T13:52:29.268912Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:59:58.899481Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T15:59:58.899481Z"}],"tags":[],"updated_at":"2023-12-08T15:59:58.899481Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "719"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:34 GMT
+ - Fri, 08 Dec 2023 15:59:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 72993812-ff3c-488a-a86e-00a16c7cde3b
+ - 74747bea-a4c6-4079-9a4f-839746faed20
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-k8s-public-ip","description":"","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-k8s-public-ip","description":"","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691065904Z","created_at":"2023-11-13T13:52:34.691065904Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:52:34.708783492Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842395955Z","created_at":"2023-12-08T15:59:59.842395955Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.858515786Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1512"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:34 GMT
+ - Fri, 08 Dec 2023 15:59:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c27bc03-09d8-48d6-9dae-fac20a9037d4
+ - 5c8c233c-7d17-42d5-b872-d3d2a279a3d6
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:52:34.708783Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T15:59:59.858516Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1503"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:34 GMT
+ - Fri, 08 Dec 2023 16:00:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 36f3dee6-c09e-4ef4-bb2c-928ed16f6696
+ - a86b6471-25b5-46f8-acdf-d277c97571c6
status: 200 OK
code: 200
duration: ""
@@ -181,19 +181,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:52:34.708783Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:00:01.491920Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1503"
+ - "1508"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:40 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7f90e4af-bdb3-46e5-bafb-00f2ff8ebcb0
+ - 893b4d57-d760-4d6d-830d-0195dfd83d99
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:52:41.893066Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:00:01.491920Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:45 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f686bac3-f040-4b2c-bdc0-67e406a693dc
+ - b3a3af82-8e85-4266-b818-dd78777f8339
status: 200 OK
code: 200
duration: ""
@@ -247,19 +247,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:52:41.893066Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUkJkMDFXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRUYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFl3Q2psMVN6SkdlRzVLV0Zwd01EbFZkR0o0Y1N0cVNtRjVPRFJKYVVKMWRVVmpSMHB5VmpGdlkyRmxWRXczUlZORlFtWmlOakJCUzJGVWRtdEVUVU5RYzBvS1JVNVhlakZpVVhkWGNrRTFkV3RoVVdOMGRsSlpOak5rV0Rkb1RsZGhRbXBWZEZOSmVWVlNUV0o1ZUhGRVMwMXJZbFl3YVZSaWJqaHFVRk5UTUZjeWJncHZPRVV2VlRrd1ZVRTViRWh0Y0ZSbE5WVmlSMHRqZGtwR2NuWkVkVGxtVW1sMFpHYzFWR1JUZW1sTGNWTXlWMGsxTmt4R1ZtSTFMekZSTldWdGFsbEZDa0l5VVdWVU0xRnZXRVJYVTNOb016QjZjRmxPYW5WbVIzQXdjMlZaVmxFeU9VdG9UekF2VjI1dFpFZDZUbGhIVGxOR1JGUjRXVGRZZDFoemRHNXlha01LY1hBclQyUTFXV0ZDV1ZWb2RWQXlRMUp5UmxaU09FaERhek5EY21NNEwwVkhTbkkzUzNaTFlra3hkM2R2ZW5KQlltMW5NRWxTWlZSNWVGQk5aVUZSYlFwWlVtc3pPRlZQZFROQ1RWaG1URGROZEdnd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5WVjBSaXRHUkhkVEswOUNMeXRsV0VSblJDOTJNVTh5YkZWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1pYTm1ObUZWVW1GNVRHODROR3BPZUVwcU0yMXBaWEpqZDFWUU1XTjVjV2x6VG1sdFVFOXJMeTk2Y2l0aldXTXpjUW9yYjNCeloyZzRiMHRLWkc5SmNXdzRabkJMVWxOMlJqQm5iM2hqTmxCdE1XMVhSWEUxYkVFNWRqZG1jRmd5YUVSVFJtMVpRM1ZqVDJ4aVQwRmhhVFpZQ21kNmVFTklSRmhwVlc1NGFHMWhZVlZIVG01S2JFTXdkakJVVW5oWFNuRjRTRlV5VFVVNE4wNVdaVE41VEc1bk4xWXZMMmxLUm1oelVGaHlWbFZRU2xvS1EwZGFjM2xaTW5weVZXOHhjMlZLYTIxbk0zRk1aWFpYZEV3eGNqWlpheTlxZVZSRU1HbFJXR2xGVFVReWNEWm5MekZDZUhaWmVUbEpkSFJMUlhSWWRncFBVWFZqUmt4eGVDODRRV3hsV2pCM09UTTRjelZ0ZHpSS1VXTjBibXc0TTJsWFFUSnhha1pOYURVclZITllkbXRFZUhWNGRIQTJUWE4xYTBaTlVWUkRDbTEzVkZGWGJuRlROekl6TDBOS09FNHdUak5XZGpscVJDOVRhRTlCYzNSMmVVRkVVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWQyNzQ1ZTEtYmMwYS00YmFjLTgzZDYtZTgzMjE4Y2NhZWIxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGT1lDRzZ2dXk2ak91TzhUMk5YRkxYYVNlMWtwQWNyQ0g5TExJT25RVjBpaEpienZoeW1mQTVncQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1508"
+ - "2638"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:45 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4c2e1ab-7d00-4963-9cd8-39a84adfb345
+ - e0ad3eae-38e9-4a76-af2b-b0a77a6e3f09
status: 200 OK
code: 200
duration: ""
@@ -280,19 +280,54 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkpNRTFXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRWt3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE5QQ214VWF6WllNMVZNU0daVmEzUmplWFJCYlM5SmJIQnBSMGRRYjI5b1lsUlhjekptY3pBeWMxaHVWRTUzTWtGWFVXSktRbWR3VGtGcVYyaGtXVkZvU1djS1FUVk5OV3AzVDFabU5rZFZWVFo0YTBoVFozRkxaVEZRV0hSc1NYVkhUekF2YlhGaFJWUk9RMFpoV0dKV2RsRkxSa0p3U1U1dVJ6VjZUbkJsYm1VeU9BbzVUR1pCV0dGYVYwdHpiVE5PY0VKTUwxcHJhRkpITW5OSk1YQnlVVmxSVFcwMldVbHFSRVZ2U1U1S2VtTTFjamxWVEdGSWVqbFJRbk0wTTFobVdFVnNDamxTS3pabFZWVnpTa0YyWkUxTVQyVTJlamd4TVRVdmFrWTFiMFY1ZWtNMVkwOXNSR2RKUjJNMGJraGpSVUl6WkVsa04waGpWbFJDUjNOTlRETlpXVTRLYVdjeVFrWnFjRFp4VnpONVlsbDJSV3hHYWpWeGQyVXhUVXN4WW1KR056YzBVekJRVWtsWk1HMTVaM0JWVWpOeFdYUkxiRUpXU2tKRk1qQXpVRTlUYWdwdk9FRnBkWFpaVlhVdmEzUXpaekZyT0hkalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1ZFNVhjMDA0TXpKNmRGQXlMMWhYVjJKdWEzbE1WRzFHYmk5TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRE1TdFlURkI0YVROR1FrZEZhWGhCVkdJNVVreEVNRU54TUZSdkt6ZFhVRlpoUkdKQ05reHVSblpFZFhSck1rNUxPUXB2UWs4MVlVUkhjbEZZVDNCSU0wUnBSbU5LY0hGaUt6Sm1WbmRTVlRod2MwRnhlakJUWlVvMVUyTXlXVWczUW5OMlNqWlBaQ3RMV0ZSaFdFb3ZaRWQzQ2xsSlZqRkhUV0kzTW0xRVRubGxhWEJaUkhFMmJuWTJkVE5LTUhkNGRXWXlUSEZPZWxWMVVUVjFOazVwYUZGbGIwazRiMkozUVdwTFVYSnRjelV4ZEVZS2MwZ3lNVzVZS3psYVEybExXQ3RZWjJ4WE0zTkRja3BrT1RsdlpGWkVhelZIVGpnclozSnVha3hSYlZkc2NISTFhbGxYU1d4c1dDOWFTekJSYjNWb0x3cFFOMDEyU1U1WU1YTkhLekZCTVhsM2MzaHZZa1JNV2taNFJ6aHdiSEZ4VTBGb1Jsa3pVMWRpTmxKUFFXTk5XVUpWVGtJeU5XRnhabFpvT0VaVEswbEZDa1EwWm10dlNIVnRhQzlUUTFBNU1qZGhiSGhwWlRORU4yVjNkMmxWUkRCU1RpdFJZd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTI1MzcwNGQtOTkzYy00MTkzLTgwMjItMDdhNzExZjBmMDE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBFNG9CRVI4Z1dSOUtaNjFmdWRrYXRadzV1bTVsOFRBTlRTU29ibk03SFFpMnlGYWN1VVZuSHNjNA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:00:01.491920Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2638"
+ - "1508"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:00:34 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c0132f50-90ee-40e1-928f-c60b0c3a4633
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"name":"test-k8s-public-ip","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/pools
+ method: POST
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462707717Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "632"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:45 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +337,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1a16c065-f519-419b-8110-f48e7e11cc35
+ - 9cdc11b9-0267-4d2d-94b3-17ef3f21c371
status: 200 OK
code: 200
duration: ""
@@ -313,19 +348,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:52:41.893066Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1508"
+ - "629"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:45 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,32 +370,63 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dea99413-56cc-4d24-86f6-8bafda6f98c7
+ - e563c6a8-36df-495b-a67b-3ce86e64fe0e
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"name":"test-k8s-public-ip","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
+ body: ""
form: {}
headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
+ method: GET
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "629"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
+ Date:
+ - Fri, 08 Dec 2023 16:00:39 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - ebf7ad0b-5962-41d9-be24-908fad8ffa45
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/pools
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
+ method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388056649Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "632"
+ - "629"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:45 GMT
+ - Fri, 08 Dec 2023 16:00:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -370,7 +436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f40bd8d9-2d67-4a2e-a294-636832328570
+ - 1bfe0134-38a5-4858-bb2e-a43acc3110b6
status: 200 OK
code: 200
duration: ""
@@ -381,10 +447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -393,7 +459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:45 GMT
+ - Fri, 08 Dec 2023 16:00:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -403,7 +469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93e1f739-f5e9-4250-bdc0-352a326a6f0e
+ - 8e3e3417-cb2c-4d88-b52c-580cba6de091
status: 200 OK
code: 200
duration: ""
@@ -414,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -426,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:50 GMT
+ - Fri, 08 Dec 2023 16:00:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -436,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - db5e7099-2080-494c-8db8-a457649f107b
+ - f57a2f0f-9da6-4c62-b311-946c779a91b1
status: 200 OK
code: 200
duration: ""
@@ -447,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -459,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:55 GMT
+ - Fri, 08 Dec 2023 16:01:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -469,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 133c88fb-86e0-4286-b325-5dd93ce87944
+ - b632c6c3-3d4f-43e2-99e3-533ff402ecb7
status: 200 OK
code: 200
duration: ""
@@ -480,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -492,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:00 GMT
+ - Fri, 08 Dec 2023 16:01:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 809c2784-92d0-4d28-81b6-433fcdb24069
+ - 52620c42-d473-4e32-a08f-229a47171af3
status: 200 OK
code: 200
duration: ""
@@ -513,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -525,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:06 GMT
+ - Fri, 08 Dec 2023 16:01:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26f72568-94e2-4c97-9b71-b0acc85f1f25
+ - a04ff1da-81ff-4cf0-b73c-5bea3371ec9c
status: 200 OK
code: 200
duration: ""
@@ -546,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -558,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:11 GMT
+ - Fri, 08 Dec 2023 16:01:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d30ad943-0b1c-4694-b1de-dd32f24eef2b
+ - 676ae2b5-37e6-4c44-842f-f31e6e2cb2b2
status: 200 OK
code: 200
duration: ""
@@ -579,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -591,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:16 GMT
+ - Fri, 08 Dec 2023 16:01:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c3835912-8a83-4910-bbb2-5f96f86b1708
+ - a642c1e4-f863-4253-a28c-c8466fcc0bec
status: 200 OK
code: 200
duration: ""
@@ -612,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -624,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:21 GMT
+ - Fri, 08 Dec 2023 16:01:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 51b6fc15-043a-409f-8b95-b009b29ade64
+ - 0c364a43-33d5-43ff-a11a-5a27950ba86b
status: 200 OK
code: 200
duration: ""
@@ -645,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -657,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:26 GMT
+ - Fri, 08 Dec 2023 16:01:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65aa9204-2cce-4975-b3fc-fc1150381a5e
+ - 1f4f2410-d532-4200-ab41-c77b2d217fd3
status: 200 OK
code: 200
duration: ""
@@ -678,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -690,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:31 GMT
+ - Fri, 08 Dec 2023 16:01:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 613d11b1-8d6f-4b98-bc1c-182ac63ffea9
+ - dcb30e54-2ba5-40cd-b4c3-a6d151c0e865
status: 200 OK
code: 200
duration: ""
@@ -711,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -723,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:36 GMT
+ - Fri, 08 Dec 2023 16:01:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f990bdbd-45a8-4d60-835f-8e9c3128a90c
+ - 08e5ec93-6b7e-4dd1-becb-75c60e9de2d1
status: 200 OK
code: 200
duration: ""
@@ -744,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -756,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:41 GMT
+ - Fri, 08 Dec 2023 16:01:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5cf990ff-ecfd-47cc-a772-b92484d7c686
+ - 2e5430ef-59a7-4a51-9bd4-fec8d833d344
status: 200 OK
code: 200
duration: ""
@@ -777,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -789,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:46 GMT
+ - Fri, 08 Dec 2023 16:01:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2496feda-bec9-4c35-aa62-1f5ec8fd51e6
+ - c75dfc50-f060-4ab4-9ec7-f57edc14ec35
status: 200 OK
code: 200
duration: ""
@@ -810,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -822,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:51 GMT
+ - Fri, 08 Dec 2023 16:01:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6303e8b7-5efa-4e78-a702-8821b6b9bc58
+ - 0de091c8-6156-4f28-b827-5773192a91f3
status: 200 OK
code: 200
duration: ""
@@ -843,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -855,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:56 GMT
+ - Fri, 08 Dec 2023 16:02:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3fae9df9-fdf1-410e-aafd-afd341992658
+ - ad55d3fa-8d5f-4353-a6d0-fa0f9982300a
status: 200 OK
code: 200
duration: ""
@@ -876,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -888,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:01 GMT
+ - Fri, 08 Dec 2023 16:02:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6bed715d-67ec-4d0b-b7b0-b7a1e599b226
+ - 1e8ea8ab-afdf-42d8-baed-ad7d65fabc18
status: 200 OK
code: 200
duration: ""
@@ -909,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -921,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:06 GMT
+ - Fri, 08 Dec 2023 16:02:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0182d7d0-9796-4c49-a5a9-a92a168f4f06
+ - eeeea213-1f39-4f3a-a51f-b0276c1c3ed4
status: 200 OK
code: 200
duration: ""
@@ -942,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -954,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:11 GMT
+ - Fri, 08 Dec 2023 16:02:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4c37a4c-f71b-47d9-8a2a-c56d31633310
+ - 5b2094ee-4629-496e-95a9-e5efe720e339
status: 200 OK
code: 200
duration: ""
@@ -975,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -987,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:16 GMT
+ - Fri, 08 Dec 2023 16:02:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ec20ed7-7db7-492d-9148-4f146aba2261
+ - f021ef51-577e-49f1-ab70-d99d6a3c3261
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1020,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:21 GMT
+ - Fri, 08 Dec 2023 16:02:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a34e0fd5-f352-4c04-8656-3ff2b55c7201
+ - 6b04317e-84fc-40f2-bafd-19c4d1ed130c
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1053,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:26 GMT
+ - Fri, 08 Dec 2023 16:02:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 859d4436-d7ed-4f7a-b9a9-9d1b2a9fa878
+ - 8ad9ddd7-01fb-47ce-82e8-fe9773025e35
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1086,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:32 GMT
+ - Fri, 08 Dec 2023 16:02:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 99dd27b6-6604-4040-a554-a46304d3be22
+ - 24092812-0116-4245-9801-dcba2729b122
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1119,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:37 GMT
+ - Fri, 08 Dec 2023 16:02:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c17399bb-189c-4f7a-bb95-4ab0d5e77932
+ - 78f7c6f2-3ee6-4c1d-ac21-b51d5e14009c
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1152,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:42 GMT
+ - Fri, 08 Dec 2023 16:02:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7bbfd280-0ce2-4576-8418-9532d35c35b0
+ - 89ea3d95-d634-40c2-bd26-4d8075922965
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1185,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:47 GMT
+ - Fri, 08 Dec 2023 16:02:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 117da9fd-4a90-45ee-86ae-2b3306d65b89
+ - 953c7ff4-71c2-484b-84ba-906e5a917e2f
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1218,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:52 GMT
+ - Fri, 08 Dec 2023 16:02:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67205dfa-f257-43de-b38c-414c78fa719a
+ - c802daf6-6280-4c05-89bb-91b7196ceb03
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1251,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:57 GMT
+ - Fri, 08 Dec 2023 16:03:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 06b57706-5ef9-4223-876b-e550e6d4a96a
+ - 758c0977-740b-4a11-8543-711f6c218318
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1284,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:02 GMT
+ - Fri, 08 Dec 2023 16:03:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb0ddd9b-2827-4e57-9143-638d7bd253d8
+ - 4d8bbc57-1f42-4c4f-9aed-ae9423556a3c
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1317,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:07 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a84b67ad-3ba4-4a1c-96ed-8150cda543b4
+ - c84a6397-521a-428b-ae26-0f5ec14ee71d
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1350,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:12 GMT
+ - Fri, 08 Dec 2023 16:03:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a61ed53-92de-4232-8055-cd27f068363f
+ - 8aecc770-5b8f-4d29-bb5c-a16e834780f6
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1383,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:17 GMT
+ - Fri, 08 Dec 2023 16:03:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 85545609-7287-4a03-8365-cc91b5e622d8
+ - 645f192d-db3c-4fdf-98f7-371422f406fc
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1416,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:22 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a255d051-2ff9-4386-a25d-59af0f7a438f
+ - 4c29b360-5eab-4aa7-ad63-5a412d78ab5b
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1449,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:27 GMT
+ - Fri, 08 Dec 2023 16:03:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f1c4c28-0d61-4a7c-b78a-84189fd9916d
+ - 0e1fe7e3-9eda-4a4a-931c-873627858942
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1482,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:32 GMT
+ - Fri, 08 Dec 2023 16:03:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2671428d-f456-469f-993e-851a19560e61
+ - 2a481c6b-9b4d-4553-b6cf-892ea04a51df
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1515,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:38 GMT
+ - Fri, 08 Dec 2023 16:03:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 385e8a3c-f5f1-42dd-af87-eed7883e50ef
+ - 2b2100e4-4650-47e5-ba74-e42946eb74dd
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1548,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:43 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 24fd6c60-ebbb-44c7-8afe-3a7aef851c2d
+ - 6f38e5f2-fde5-46f5-b882-0dacab2e4ac5
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1581,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:49 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ebedcc8e-d9ff-418d-b2c5-2400564ea434
+ - 8b319b6b-72b8-4a8f-b5cd-3e0502e0ba03
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1614,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:54 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 79aeafc6-431b-4dd3-9874-7d8e0f5df913
+ - 40fdbfbc-6b78-4852-9d0c-56464612fac0
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1647,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:59 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3a63b0ae-8c3d-406a-81d3-69da9d4257da
+ - 40b60e73-24d7-4844-be70-e62124133ed5
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1680,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:04 GMT
+ - Fri, 08 Dec 2023 16:04:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9ce2a5a7-d111-474d-9687-e029e54914fa
+ - 03727571-8358-4dfb-9e24-e77fcf5971c0
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1713,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:09 GMT
+ - Fri, 08 Dec 2023 16:04:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a20bed8-3919-4f1c-87c9-407c582c6ae7
+ - db1d46de-5e9d-46de-a2e2-6b84662e9ca0
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1800,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1746,7 +1812,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:14 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 873b157b-c378-43cf-8395-0b2108eb7d01
+ - 4ca254ac-60c5-47f0-bebf-58d6453d6752
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1833,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1779,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0651a9d7-e035-436a-a710-a96697042702
+ - cdb02479-fdc5-492e-958f-11313b97495e
status: 200 OK
code: 200
duration: ""
@@ -1800,10 +1866,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1812,7 +1878,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:04:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4f961b6-213b-4a5b-a7f3-2e859e461f9a
+ - 1584b50a-9d63-4707-a936-080a770e968e
status: 200 OK
code: 200
duration: ""
@@ -1833,10 +1899,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1845,7 +1911,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:29 GMT
+ - Fri, 08 Dec 2023 16:04:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 254d6c27-c973-423e-9247-c83a0fcaed97
+ - cad8c831-2fad-498c-b5fe-a5968f0a3869
status: 200 OK
code: 200
duration: ""
@@ -1866,10 +1932,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1878,7 +1944,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:34 GMT
+ - Fri, 08 Dec 2023 16:04:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6d317ae8-5de2-495d-82da-41db160c3035
+ - e87a698b-2e68-46bc-a92c-4b29e54a27e7
status: 200 OK
code: 200
duration: ""
@@ -1899,10 +1965,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1911,7 +1977,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:39 GMT
+ - Fri, 08 Dec 2023 16:04:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e45dea4-28b5-41a9-9ab1-c8d382c99280
+ - bed1d078-64d5-40d6-97d9-094ae82cb91f
status: 200 OK
code: 200
duration: ""
@@ -1932,10 +1998,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1944,7 +2010,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:44 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1954,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 487959a3-cc91-4ffc-933c-9643f240211d
+ - 5b32323a-846f-42d8-95f8-4f3b155b8889
status: 200 OK
code: 200
duration: ""
@@ -1965,10 +2031,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -1977,7 +2043,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:50 GMT
+ - Fri, 08 Dec 2023 16:04:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1987,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6aa6208e-4b2b-4517-9d33-7272c7020b86
+ - f68e68c7-78c6-4eb7-91f2-b65a97653ea6
status: 200 OK
code: 200
duration: ""
@@ -1998,10 +2064,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2010,7 +2076,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:04:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2020,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 228a396d-2c21-48af-9f7f-a57dc8c86511
+ - 7e196d37-b5f3-4538-890a-85ca74638482
status: 200 OK
code: 200
duration: ""
@@ -2031,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2043,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 16:05:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2053,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8e24e94d-3883-468b-a252-2a9c2e7f17ca
+ - 5691f63f-4b90-4bd5-8f2f-61b8d9bc6570
status: 200 OK
code: 200
duration: ""
@@ -2064,10 +2130,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2076,7 +2142,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2086,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ed7099e-edb2-48f9-abf6-974a489f7995
+ - 9a20620d-323f-4f87-8bdf-5d656f8e3c4a
status: 200 OK
code: 200
duration: ""
@@ -2097,10 +2163,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2109,7 +2175,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:10 GMT
+ - Fri, 08 Dec 2023 16:05:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2119,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48a4487f-2456-4575-ae09-ec500040000f
+ - f05f6a8a-0db4-4869-9de8-08bfcc8a1d94
status: 200 OK
code: 200
duration: ""
@@ -2130,10 +2196,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2142,7 +2208,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2152,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f7ac1e26-963b-4bc2-97c2-7df5a07e833b
+ - e3f9621a-ab70-4f8f-bd54-45bad0b78a3f
status: 200 OK
code: 200
duration: ""
@@ -2163,10 +2229,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2175,7 +2241,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:20 GMT
+ - Fri, 08 Dec 2023 16:05:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2185,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - beb697fe-c4e3-4090-ba36-6a4eb64d1cf8
+ - ed62c031-b6da-4fff-89c8-2e876ac93a2e
status: 200 OK
code: 200
duration: ""
@@ -2196,10 +2262,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2208,7 +2274,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:25 GMT
+ - Fri, 08 Dec 2023 16:05:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2218,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a461686-773b-4759-9ac0-10ce494c2e63
+ - d604afb6-b6ba-4924-9b78-d86b6d020c20
status: 200 OK
code: 200
duration: ""
@@ -2229,10 +2295,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2241,7 +2307,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:05:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2251,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4ecd1653-0649-4f57-a2f1-1aadcb273b14
+ - dffd79b4-117e-4e65-974c-e8f808bc4791
status: 200 OK
code: 200
duration: ""
@@ -2262,10 +2328,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2274,7 +2340,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:35 GMT
+ - Fri, 08 Dec 2023 16:05:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2284,7 +2350,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3572e6ee-8d7c-4521-91d6-e0a7cbe00617
+ - fd76bd26-b292-4be7-b054-5b5ab1fb62b2
status: 200 OK
code: 200
duration: ""
@@ -2295,10 +2361,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2307,7 +2373,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:40 GMT
+ - Fri, 08 Dec 2023 16:05:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2317,7 +2383,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff8e1844-63f6-4881-8d8a-00ddda10d450
+ - dae7a442-6577-4d15-886e-a3dd68f21076
status: 200 OK
code: 200
duration: ""
@@ -2328,10 +2394,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:45.388057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:00:34.462708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -2340,7 +2406,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:45 GMT
+ - Fri, 08 Dec 2023 16:05:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2350,7 +2416,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5fe3e1b-a895-4554-9a95-bd47a3acf324
+ - 06d6e47d-b409-4e1c-9a08-85bee0261079
status: 200 OK
code: 200
duration: ""
@@ -2361,10 +2427,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:57:48.806091Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:05:50.094062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -2373,7 +2439,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 16:05:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2383,7 +2449,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4dfc46f-4f21-4762-b017-9862e1b18d0e
+ - 148bb36a-51ec-4085-91f9-b8cef94f11c8
status: 200 OK
code: 200
duration: ""
@@ -2394,10 +2460,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:54:22.539011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:01:50.400521Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -2406,7 +2472,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 16:05:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2416,7 +2482,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 595d7af4-a093-4040-a211-5e8899be5523
+ - a6c7a64a-29bb-440d-b390-eddfcc141ea6
status: 200 OK
code: 200
duration: ""
@@ -2427,10 +2493,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:57:48.806091Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:05:50.094062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -2439,7 +2505,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 16:05:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2449,7 +2515,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b583e10-3588-4881-adff-bd09039b794d
+ - 370a831e-b96b-4cf3-85d6-128707df3c1c
status: 200 OK
code: 200
duration: ""
@@ -2460,19 +2526,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&page=1&pool_id=c9e09286-7234-4cee-b778-8c329b183bb3&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&page=1&pool_id=73df29dd-4cd0-49ee-a757-5998712dcc2d&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:54:46.754812Z","error_message":null,"id":"695f4767-96d4-4c42-8260-2d47930f4805","name":"scw-test-k8s-public-i-test-k8s-public-i-695f47","pool_id":"c9e09286-7234-4cee-b778-8c329b183bb3","provider_id":"scaleway://instance/fr-par-1/9ce74004-fe13-4f71-b92d-d9a7379e34f1","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:57:48.705995Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:18.599635Z","error_message":null,"id":"4d9d1a35-f93b-41e2-a5df-346075237026","name":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a","pool_id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","provider_id":"scaleway://instance/fr-par-1/662db66d-d7a7-426a-b67c-99f4ba571696","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:50.080318Z"}],"total_count":1}'
headers:
Content-Length:
- - "657"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 16:05:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2482,7 +2548,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ac16dfa7-a370-413b-bb3f-6ee8adef4617
+ - 8b23b160-1407-4aae-95d3-f48d498836e1
status: 200 OK
code: 200
duration: ""
@@ -2493,10 +2559,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:54:22.539011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:01:50.400521Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -2505,7 +2571,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:51 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2515,7 +2581,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92783d2c-e183-46ae-9fe5-889b2f80d915
+ - 6e7fe4f0-1a45-4d68-b3df-b1886915ad08
status: 200 OK
code: 200
duration: ""
@@ -2526,10 +2592,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"172.16.60.0/22","updated_at":"2023-11-13T13:52:29.268912Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:52:29.268912Z"}],"tags":[],"updated_at":"2023-11-13T13:52:29.268912Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:59:58.899481Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T15:59:58.899481Z"}],"tags":[],"updated_at":"2023-12-08T15:59:58.899481Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "719"
@@ -2538,7 +2604,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:51 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2548,7 +2614,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aa8ba596-c5ce-4057-8b21-b73412c1ac29
+ - a9727261-657a-4d45-b18a-7b493ca84c08
status: 200 OK
code: 200
duration: ""
@@ -2559,10 +2625,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:57:48.806091Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:05:50.094062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -2571,7 +2637,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:51 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2581,7 +2647,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 46d7a10c-1cb9-4e87-bed0-ab0f553d664a
+ - 4c8e2cd3-db84-4d1e-83de-6f7e9bc847b1
status: 200 OK
code: 200
duration: ""
@@ -2592,19 +2658,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&pool_id=c9e09286-7234-4cee-b778-8c329b183bb3&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&pool_id=73df29dd-4cd0-49ee-a757-5998712dcc2d&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:54:46.754812Z","error_message":null,"id":"695f4767-96d4-4c42-8260-2d47930f4805","name":"scw-test-k8s-public-i-test-k8s-public-i-695f47","pool_id":"c9e09286-7234-4cee-b778-8c329b183bb3","provider_id":"scaleway://instance/fr-par-1/9ce74004-fe13-4f71-b92d-d9a7379e34f1","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:57:48.705995Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:18.599635Z","error_message":null,"id":"4d9d1a35-f93b-41e2-a5df-346075237026","name":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a","pool_id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","provider_id":"scaleway://instance/fr-par-1/662db66d-d7a7-426a-b67c-99f4ba571696","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:50.080318Z"}],"total_count":1}'
headers:
Content-Length:
- - "657"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:51 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2614,7 +2680,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c478e7e8-02c0-4023-8c62-d32d030cf663
+ - 028c99e9-2aa0-4812-8790-9ed858ed5aed
status: 200 OK
code: 200
duration: ""
@@ -2625,23 +2691,23 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ce74004-fe13-4f71-b92d-d9a7379e34f1
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/662db66d-d7a7-426a-b67c-99f4ba571696
method: GET
response:
body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
- mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-11-13T13:54:47.524934+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-695f47","id":"9ce74004-fe13-4f71-b92d-d9a7379e34f1","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:610:9105::1","gateway":"2001:bc8:610:9105::","netmask":"64"},"location":{"cluster_id":"52","hypervisor_id":"703","node_id":"6","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2d:50:93","maintenances":[],"modification_date":"2023-11-13T13:55:06.294975+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-695f47","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.194.91.11","private_nics":[{"creation_date":"2023-11-13T13:54:48.305494+00:00","id":"dd9af198-169d-4615-b172-ce7986f14352","mac_address":"02:00:00:14:bd:91","modification_date":"2023-11-13T13:54:49.135948+00:00","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","server_id":"9ce74004-fe13-4f71-b92d-d9a7379e34f1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.216.28","dynamic":true,"family":"inet","gateway":null,"id":"9a742e28-6d72-4774-98e2-e9116edc5bbf","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.216.28","dynamic":true,"family":"inet","gateway":null,"id":"9a742e28-6d72-4774-98e2-e9116edc5bbf","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"cbc09d40-13ee-4639-88d8-041bbc840a9d","name":"kubernetes
- a253704d-993c-4193-8022-07a711f0f014"},"state":"running","state_detail":"booting
- kernel","tags":["kapsule=a253704d-993c-4193-8022-07a711f0f014","pool=c9e09286-7234-4cee-b778-8c329b183bb3","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=695f4767-96d4-4c42-8260-2d47930f4805"],"volumes":{"0":{"boot":false,"creation_date":"2023-11-13T13:54:47.524934+00:00","export_uri":null,"id":"b03d2a12-70b8-4863-bdfb-f685eeb431c9","modification_date":"2023-11-13T13:54:47.524934+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"9ce74004-fe13-4f71-b92d-d9a7379e34f1","name":"scw-test-k8s-public-i-test-k8s-public-i-695f47"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-12-08T16:03:19.341567+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a","id":"662db66d-d7a7-426a-b67c-99f4ba571696","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:638:1006::1","gateway":"2001:bc8:638:1006::","netmask":"64"},"location":{"cluster_id":"28","hypervisor_id":"901","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:31:84:cf","maintenances":[],"modification_date":"2023-12-08T16:03:38.912857+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.68.13","private_nics":[{"creation_date":"2023-12-08T16:03:19.891621+00:00","id":"cbf15476-9181-4e63-93c3-28fef2de3db0","mac_address":"02:00:00:15:4e:bd","modification_date":"2023-12-08T16:03:21.102482+00:00","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","server_id":"662db66d-d7a7-426a-b67c-99f4ba571696","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.158.121.51","dynamic":true,"family":"inet","gateway":null,"id":"97b7e4f1-1555-46ee-bdda-5c094aec6c97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.121.51","dynamic":true,"family":"inet","gateway":null,"id":"97b7e4f1-1555-46ee-bdda-5c094aec6c97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"a73c40a7-cfcf-4ba3-be85-d41c2de1ae92","name":"kubernetes
+ ed2745e1-bc0a-4bac-83d6-e83218ccaeb1"},"state":"running","state_detail":"booting
+ kernel","tags":["kapsule=ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","pool=73df29dd-4cd0-49ee-a757-5998712dcc2d","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=4d9d1a35-f93b-41e2-a5df-346075237026"],"volumes":{"0":{"boot":false,"creation_date":"2023-12-08T16:03:19.341567+00:00","export_uri":null,"id":"ef34553e-3043-4d47-ad8f-6ed14262070f","modification_date":"2023-12-08T16:03:19.341567+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"662db66d-d7a7-426a-b67c-99f4ba571696","name":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "3964"
+ - "3965"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:51 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2651,7 +2717,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5db06a1f-b06b-447a-8511-2a542e7ac43a
+ - de30c478-d2e5-4f62-8b96-cd36c5dd9947
status: 200 OK
code: 200
duration: ""
@@ -2662,10 +2728,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"172.16.60.0/22","updated_at":"2023-11-13T13:52:29.268912Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:52:29.268912Z"}],"tags":[],"updated_at":"2023-11-13T13:52:29.268912Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:59:58.899481Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T15:59:58.899481Z"}],"tags":[],"updated_at":"2023-12-08T15:59:58.899481Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "719"
@@ -2674,7 +2740,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2684,7 +2750,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee2934e3-ea8d-4bf1-b4cc-d7adba754b0d
+ - a8681fb2-bce2-44a1-a559-41f198930adc
status: 200 OK
code: 200
duration: ""
@@ -2695,10 +2761,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:54:22.539011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:01:50.400521Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -2707,7 +2773,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2717,7 +2783,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c1005c11-1352-4571-9542-090992bf1afb
+ - 02034510-09a4-4d2b-ae9f-4b32e56e3e43
status: 200 OK
code: 200
duration: ""
@@ -2728,10 +2794,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkpNRTFXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRWt3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE5QQ214VWF6WllNMVZNU0daVmEzUmplWFJCYlM5SmJIQnBSMGRRYjI5b1lsUlhjekptY3pBeWMxaHVWRTUzTWtGWFVXSktRbWR3VGtGcVYyaGtXVkZvU1djS1FUVk5OV3AzVDFabU5rZFZWVFo0YTBoVFozRkxaVEZRV0hSc1NYVkhUekF2YlhGaFJWUk9RMFpoV0dKV2RsRkxSa0p3U1U1dVJ6VjZUbkJsYm1VeU9BbzVUR1pCV0dGYVYwdHpiVE5PY0VKTUwxcHJhRkpITW5OSk1YQnlVVmxSVFcwMldVbHFSRVZ2U1U1S2VtTTFjamxWVEdGSWVqbFJRbk0wTTFobVdFVnNDamxTS3pabFZWVnpTa0YyWkUxTVQyVTJlamd4TVRVdmFrWTFiMFY1ZWtNMVkwOXNSR2RKUjJNMGJraGpSVUl6WkVsa04waGpWbFJDUjNOTlRETlpXVTRLYVdjeVFrWnFjRFp4VnpONVlsbDJSV3hHYWpWeGQyVXhUVXN4WW1KR056YzBVekJRVWtsWk1HMTVaM0JWVWpOeFdYUkxiRUpXU2tKRk1qQXpVRTlUYWdwdk9FRnBkWFpaVlhVdmEzUXpaekZyT0hkalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1ZFNVhjMDA0TXpKNmRGQXlMMWhYVjJKdWEzbE1WRzFHYmk5TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRE1TdFlURkI0YVROR1FrZEZhWGhCVkdJNVVreEVNRU54TUZSdkt6ZFhVRlpoUkdKQ05reHVSblpFZFhSck1rNUxPUXB2UWs4MVlVUkhjbEZZVDNCSU0wUnBSbU5LY0hGaUt6Sm1WbmRTVlRod2MwRnhlakJUWlVvMVUyTXlXVWczUW5OMlNqWlBaQ3RMV0ZSaFdFb3ZaRWQzQ2xsSlZqRkhUV0kzTW0xRVRubGxhWEJaUkhFMmJuWTJkVE5LTUhkNGRXWXlUSEZPZWxWMVVUVjFOazVwYUZGbGIwazRiMkozUVdwTFVYSnRjelV4ZEVZS2MwZ3lNVzVZS3psYVEybExXQ3RZWjJ4WE0zTkRja3BrT1RsdlpGWkVhelZIVGpnclozSnVha3hSYlZkc2NISTFhbGxYU1d4c1dDOWFTekJSYjNWb0x3cFFOMDEyU1U1WU1YTkhLekZCTVhsM2MzaHZZa1JNV2taNFJ6aHdiSEZ4VTBGb1Jsa3pVMWRpTmxKUFFXTk5XVUpWVGtJeU5XRnhabFpvT0VaVEswbEZDa1EwWm10dlNIVnRhQzlUUTFBNU1qZGhiSGhwWlRORU4yVjNkMmxWUkRCU1RpdFJZd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTI1MzcwNGQtOTkzYy00MTkzLTgwMjItMDdhNzExZjBmMDE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBFNG9CRVI4Z1dSOUtaNjFmdWRrYXRadzV1bTVsOFRBTlRTU29ibk03SFFpMnlGYWN1VVZuSHNjNA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUkJkMDFXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRUYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFl3Q2psMVN6SkdlRzVLV0Zwd01EbFZkR0o0Y1N0cVNtRjVPRFJKYVVKMWRVVmpSMHB5VmpGdlkyRmxWRXczUlZORlFtWmlOakJCUzJGVWRtdEVUVU5RYzBvS1JVNVhlakZpVVhkWGNrRTFkV3RoVVdOMGRsSlpOak5rV0Rkb1RsZGhRbXBWZEZOSmVWVlNUV0o1ZUhGRVMwMXJZbFl3YVZSaWJqaHFVRk5UTUZjeWJncHZPRVV2VlRrd1ZVRTViRWh0Y0ZSbE5WVmlSMHRqZGtwR2NuWkVkVGxtVW1sMFpHYzFWR1JUZW1sTGNWTXlWMGsxTmt4R1ZtSTFMekZSTldWdGFsbEZDa0l5VVdWVU0xRnZXRVJYVTNOb016QjZjRmxPYW5WbVIzQXdjMlZaVmxFeU9VdG9UekF2VjI1dFpFZDZUbGhIVGxOR1JGUjRXVGRZZDFoemRHNXlha01LY1hBclQyUTFXV0ZDV1ZWb2RWQXlRMUp5UmxaU09FaERhek5EY21NNEwwVkhTbkkzUzNaTFlra3hkM2R2ZW5KQlltMW5NRWxTWlZSNWVGQk5aVUZSYlFwWlVtc3pPRlZQZFROQ1RWaG1URGROZEdnd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5WVjBSaXRHUkhkVEswOUNMeXRsV0VSblJDOTJNVTh5YkZWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1pYTm1ObUZWVW1GNVRHODROR3BPZUVwcU0yMXBaWEpqZDFWUU1XTjVjV2x6VG1sdFVFOXJMeTk2Y2l0aldXTXpjUW9yYjNCeloyZzRiMHRLWkc5SmNXdzRabkJMVWxOMlJqQm5iM2hqTmxCdE1XMVhSWEUxYkVFNWRqZG1jRmd5YUVSVFJtMVpRM1ZqVDJ4aVQwRmhhVFpZQ21kNmVFTklSRmhwVlc1NGFHMWhZVlZIVG01S2JFTXdkakJVVW5oWFNuRjRTRlV5VFVVNE4wNVdaVE41VEc1bk4xWXZMMmxLUm1oelVGaHlWbFZRU2xvS1EwZGFjM2xaTW5weVZXOHhjMlZLYTIxbk0zRk1aWFpYZEV3eGNqWlpheTlxZVZSRU1HbFJXR2xGVFVReWNEWm5MekZDZUhaWmVUbEpkSFJMUlhSWWRncFBVWFZqUmt4eGVDODRRV3hsV2pCM09UTTRjelZ0ZHpSS1VXTjBibXc0TTJsWFFUSnhha1pOYURVclZITllkbXRFZUhWNGRIQTJUWE4xYTBaTlVWUkRDbTEzVkZGWGJuRlROekl6TDBOS09FNHdUak5XZGpscVJDOVRhRTlCYzNSMmVVRkVVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWQyNzQ1ZTEtYmMwYS00YmFjLTgzZDYtZTgzMjE4Y2NhZWIxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGT1lDRzZ2dXk2ak91TzhUMk5YRkxYYVNlMWtwQWNyQ0g5TExJT25RVjBpaEpienZoeW1mQTVncQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -2740,7 +2806,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:05:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2750,7 +2816,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 608a9d1a-fd4b-416a-8c8b-d9216f40ffdb
+ - f9dec1ea-3f45-408b-afa3-117b4555854a
status: 200 OK
code: 200
duration: ""
@@ -2761,10 +2827,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:57:48.806091Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:05:50.094062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -2773,7 +2839,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:05:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2783,7 +2849,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7382e8fd-4ff4-4926-82db-2eaf8d9bed15
+ - 7cfb19b8-22b8-4c01-adb5-3463671f3305
status: 200 OK
code: 200
duration: ""
@@ -2794,19 +2860,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&page=1&pool_id=c9e09286-7234-4cee-b778-8c329b183bb3&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&page=1&pool_id=73df29dd-4cd0-49ee-a757-5998712dcc2d&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:54:46.754812Z","error_message":null,"id":"695f4767-96d4-4c42-8260-2d47930f4805","name":"scw-test-k8s-public-i-test-k8s-public-i-695f47","pool_id":"c9e09286-7234-4cee-b778-8c329b183bb3","provider_id":"scaleway://instance/fr-par-1/9ce74004-fe13-4f71-b92d-d9a7379e34f1","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:57:48.705995Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:18.599635Z","error_message":null,"id":"4d9d1a35-f93b-41e2-a5df-346075237026","name":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a","pool_id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","provider_id":"scaleway://instance/fr-par-1/662db66d-d7a7-426a-b67c-99f4ba571696","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:50.080318Z"}],"total_count":1}'
headers:
Content-Length:
- - "657"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:05:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2816,7 +2882,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c26ec50f-8f37-4627-80c3-2ca6530ef00d
+ - 89aae86e-7fd4-4513-a2d7-f12c469d6af0
status: 200 OK
code: 200
duration: ""
@@ -2827,10 +2893,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"172.16.60.0/22","updated_at":"2023-11-13T13:52:29.268912Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:52:29.268912Z"}],"tags":[],"updated_at":"2023-11-13T13:52:29.268912Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"172.16.12.0/22","updated_at":"2023-12-08T15:59:58.899481Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T15:59:58.899481Z"}],"tags":[],"updated_at":"2023-12-08T15:59:58.899481Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "719"
@@ -2839,7 +2905,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:53 GMT
+ - Fri, 08 Dec 2023 16:05:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2849,7 +2915,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5238c242-916d-4176-bbc1-5b2866f9dc8f
+ - dec98b52-96cf-4a24-aeca-e19a880592ad
status: 200 OK
code: 200
duration: ""
@@ -2860,10 +2926,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:54:22.539011Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:01:50.400521Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -2872,7 +2938,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:53 GMT
+ - Fri, 08 Dec 2023 16:05:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2882,7 +2948,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d8f9a9c9-bf37-4d1b-a698-918abaab5987
+ - 44c59544-13d5-4ea9-bf89-d8f807ba28e4
status: 200 OK
code: 200
duration: ""
@@ -2893,10 +2959,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkpNRTFXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRWt3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE5QQ214VWF6WllNMVZNU0daVmEzUmplWFJCYlM5SmJIQnBSMGRRYjI5b1lsUlhjekptY3pBeWMxaHVWRTUzTWtGWFVXSktRbWR3VGtGcVYyaGtXVkZvU1djS1FUVk5OV3AzVDFabU5rZFZWVFo0YTBoVFozRkxaVEZRV0hSc1NYVkhUekF2YlhGaFJWUk9RMFpoV0dKV2RsRkxSa0p3U1U1dVJ6VjZUbkJsYm1VeU9BbzVUR1pCV0dGYVYwdHpiVE5PY0VKTUwxcHJhRkpITW5OSk1YQnlVVmxSVFcwMldVbHFSRVZ2U1U1S2VtTTFjamxWVEdGSWVqbFJRbk0wTTFobVdFVnNDamxTS3pabFZWVnpTa0YyWkUxTVQyVTJlamd4TVRVdmFrWTFiMFY1ZWtNMVkwOXNSR2RKUjJNMGJraGpSVUl6WkVsa04waGpWbFJDUjNOTlRETlpXVTRLYVdjeVFrWnFjRFp4VnpONVlsbDJSV3hHYWpWeGQyVXhUVXN4WW1KR056YzBVekJRVWtsWk1HMTVaM0JWVWpOeFdYUkxiRUpXU2tKRk1qQXpVRTlUYWdwdk9FRnBkWFpaVlhVdmEzUXpaekZyT0hkalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1ZFNVhjMDA0TXpKNmRGQXlMMWhYVjJKdWEzbE1WRzFHYmk5TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRE1TdFlURkI0YVROR1FrZEZhWGhCVkdJNVVreEVNRU54TUZSdkt6ZFhVRlpoUkdKQ05reHVSblpFZFhSck1rNUxPUXB2UWs4MVlVUkhjbEZZVDNCSU0wUnBSbU5LY0hGaUt6Sm1WbmRTVlRod2MwRnhlakJUWlVvMVUyTXlXVWczUW5OMlNqWlBaQ3RMV0ZSaFdFb3ZaRWQzQ2xsSlZqRkhUV0kzTW0xRVRubGxhWEJaUkhFMmJuWTJkVE5LTUhkNGRXWXlUSEZPZWxWMVVUVjFOazVwYUZGbGIwazRiMkozUVdwTFVYSnRjelV4ZEVZS2MwZ3lNVzVZS3psYVEybExXQ3RZWjJ4WE0zTkRja3BrT1RsdlpGWkVhelZIVGpnclozSnVha3hSYlZkc2NISTFhbGxYU1d4c1dDOWFTekJSYjNWb0x3cFFOMDEyU1U1WU1YTkhLekZCTVhsM2MzaHZZa1JNV2taNFJ6aHdiSEZ4VTBGb1Jsa3pVMWRpTmxKUFFXTk5XVUpWVGtJeU5XRnhabFpvT0VaVEswbEZDa1EwWm10dlNIVnRhQzlUUTFBNU1qZGhiSGhwWlRORU4yVjNkMmxWUkRCU1RpdFJZd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTI1MzcwNGQtOTkzYy00MTkzLTgwMjItMDdhNzExZjBmMDE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBFNG9CRVI4Z1dSOUtaNjFmdWRrYXRadzV1bTVsOFRBTlRTU29ibk03SFFpMnlGYWN1VVZuSHNjNA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUkJkMDFXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRUYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFl3Q2psMVN6SkdlRzVLV0Zwd01EbFZkR0o0Y1N0cVNtRjVPRFJKYVVKMWRVVmpSMHB5VmpGdlkyRmxWRXczUlZORlFtWmlOakJCUzJGVWRtdEVUVU5RYzBvS1JVNVhlakZpVVhkWGNrRTFkV3RoVVdOMGRsSlpOak5rV0Rkb1RsZGhRbXBWZEZOSmVWVlNUV0o1ZUhGRVMwMXJZbFl3YVZSaWJqaHFVRk5UTUZjeWJncHZPRVV2VlRrd1ZVRTViRWh0Y0ZSbE5WVmlSMHRqZGtwR2NuWkVkVGxtVW1sMFpHYzFWR1JUZW1sTGNWTXlWMGsxTmt4R1ZtSTFMekZSTldWdGFsbEZDa0l5VVdWVU0xRnZXRVJYVTNOb016QjZjRmxPYW5WbVIzQXdjMlZaVmxFeU9VdG9UekF2VjI1dFpFZDZUbGhIVGxOR1JGUjRXVGRZZDFoemRHNXlha01LY1hBclQyUTFXV0ZDV1ZWb2RWQXlRMUp5UmxaU09FaERhek5EY21NNEwwVkhTbkkzUzNaTFlra3hkM2R2ZW5KQlltMW5NRWxTWlZSNWVGQk5aVUZSYlFwWlVtc3pPRlZQZFROQ1RWaG1URGROZEdnd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5WVjBSaXRHUkhkVEswOUNMeXRsV0VSblJDOTJNVTh5YkZWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1pYTm1ObUZWVW1GNVRHODROR3BPZUVwcU0yMXBaWEpqZDFWUU1XTjVjV2x6VG1sdFVFOXJMeTk2Y2l0aldXTXpjUW9yYjNCeloyZzRiMHRLWkc5SmNXdzRabkJMVWxOMlJqQm5iM2hqTmxCdE1XMVhSWEUxYkVFNWRqZG1jRmd5YUVSVFJtMVpRM1ZqVDJ4aVQwRmhhVFpZQ21kNmVFTklSRmhwVlc1NGFHMWhZVlZIVG01S2JFTXdkakJVVW5oWFNuRjRTRlV5VFVVNE4wNVdaVE41VEc1bk4xWXZMMmxLUm1oelVGaHlWbFZRU2xvS1EwZGFjM2xaTW5weVZXOHhjMlZLYTIxbk0zRk1aWFpYZEV3eGNqWlpheTlxZVZSRU1HbFJXR2xGVFVReWNEWm5MekZDZUhaWmVUbEpkSFJMUlhSWWRncFBVWFZqUmt4eGVDODRRV3hsV2pCM09UTTRjelZ0ZHpSS1VXTjBibXc0TTJsWFFUSnhha1pOYURVclZITllkbXRFZUhWNGRIQTJUWE4xYTBaTlVWUkRDbTEzVkZGWGJuRlROekl6TDBOS09FNHdUak5XZGpscVJDOVRhRTlCYzNSMmVVRkVVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWQyNzQ1ZTEtYmMwYS00YmFjLTgzZDYtZTgzMjE4Y2NhZWIxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGT1lDRzZ2dXk2ak91TzhUMk5YRkxYYVNlMWtwQWNyQ0g5TExJT25RVjBpaEpienZoeW1mQTVncQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2638"
@@ -2905,7 +2971,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:57 GMT
+ - Fri, 08 Dec 2023 16:05:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2915,7 +2981,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 44073691-91d9-4fbb-aacd-1f4086051f28
+ - dc78cba1-a510-479b-9278-8d2dbadb8fe9
status: 200 OK
code: 200
duration: ""
@@ -2926,10 +2992,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:57:48.806091Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:05:50.094062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -2938,7 +3004,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:57 GMT
+ - Fri, 08 Dec 2023 16:05:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2948,7 +3014,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - de1be935-1e3d-486c-b666-a35c7f962459
+ - b7f7df13-cb0c-4a42-936a-f76e0b8db3c6
status: 200 OK
code: 200
duration: ""
@@ -2959,19 +3025,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&page=1&pool_id=c9e09286-7234-4cee-b778-8c329b183bb3&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&page=1&pool_id=73df29dd-4cd0-49ee-a757-5998712dcc2d&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:54:46.754812Z","error_message":null,"id":"695f4767-96d4-4c42-8260-2d47930f4805","name":"scw-test-k8s-public-i-test-k8s-public-i-695f47","pool_id":"c9e09286-7234-4cee-b778-8c329b183bb3","provider_id":"scaleway://instance/fr-par-1/9ce74004-fe13-4f71-b92d-d9a7379e34f1","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:57:48.705995Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:03:18.599635Z","error_message":null,"id":"4d9d1a35-f93b-41e2-a5df-346075237026","name":"scw-test-k8s-public-i-test-k8s-public-i-4d9d1a","pool_id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","provider_id":"scaleway://instance/fr-par-1/662db66d-d7a7-426a-b67c-99f4ba571696","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:05:50.080318Z"}],"total_count":1}'
headers:
Content-Length:
- - "657"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:57 GMT
+ - Fri, 08 Dec 2023 16:05:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2981,7 +3047,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 17a7e872-6a7a-40d7-8af6-fa3a992e4789
+ - d93af7c2-4a7b-42f6-9f56-147213f17c26
status: 200 OK
code: 200
duration: ""
@@ -2992,10 +3058,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562201556Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118266945Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "633"
@@ -3004,7 +3070,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:58 GMT
+ - Fri, 08 Dec 2023 16:05:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3014,7 +3080,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8b08b688-015a-4578-a7a4-96289039458b
+ - 5cbdda91-b940-4837-90dd-6ee7ab619309
status: 200 OK
code: 200
duration: ""
@@ -3025,10 +3091,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3037,7 +3103,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:58 GMT
+ - Fri, 08 Dec 2023 16:05:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3047,7 +3113,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0c5258e3-c383-4d6e-b8b6-ac8ba513aa46
+ - 68f48a02-b372-4a5f-a022-6b8a0d62abf5
status: 200 OK
code: 200
duration: ""
@@ -3058,10 +3124,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3070,7 +3136,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:03 GMT
+ - Fri, 08 Dec 2023 16:06:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3080,7 +3146,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2daabe0f-7385-4f36-957b-4597dc20d1f5
+ - 26f9f2d3-7a63-4cb8-94fb-dd030b03c930
status: 200 OK
code: 200
duration: ""
@@ -3091,10 +3157,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3103,7 +3169,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:08 GMT
+ - Fri, 08 Dec 2023 16:06:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3113,7 +3179,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e86286ef-13b4-47b5-8526-d6fcc174d1ae
+ - ffa1371b-a7e5-4a74-b30b-594bd6c5f227
status: 200 OK
code: 200
duration: ""
@@ -3124,10 +3190,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3136,7 +3202,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:13 GMT
+ - Fri, 08 Dec 2023 16:06:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3146,7 +3212,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 98fe10c8-8128-43ab-bb74-1cff07a5559c
+ - 43d599bd-c806-4562-af82-b87cac1f7d9c
status: 200 OK
code: 200
duration: ""
@@ -3157,10 +3223,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3169,7 +3235,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:19 GMT
+ - Fri, 08 Dec 2023 16:06:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3179,7 +3245,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - de448d69-26fd-4856-b21e-d263dabd334a
+ - 10a9d620-ce24-4a54-a393-5092394b2000
status: 200 OK
code: 200
duration: ""
@@ -3190,10 +3256,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3202,7 +3268,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:24 GMT
+ - Fri, 08 Dec 2023 16:06:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3212,7 +3278,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f5f0500e-325e-4543-8f62-d2e8c10861fc
+ - 9e936eb4-7a25-4733-bd5a-1dc804d8de01
status: 200 OK
code: 200
duration: ""
@@ -3223,10 +3289,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3235,7 +3301,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:29 GMT
+ - Fri, 08 Dec 2023 16:06:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3245,7 +3311,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ceb76170-1d72-4460-bd78-3fda39c44395
+ - 149a6259-6c9c-4d6e-8ec4-e0965ae1baab
status: 200 OK
code: 200
duration: ""
@@ -3256,10 +3322,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:52:45.378303Z","id":"c9e09286-7234-4cee-b778-8c329b183bb3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:57:58.562202Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -3268,7 +3334,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:34 GMT
+ - Fri, 08 Dec 2023 16:06:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3278,7 +3344,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e841c79d-670e-4881-81f3-8d5e04083ecd
+ - 8fab918a-8420-40b2-b857-42fb370a24f9
status: 200 OK
code: 200
duration: ""
@@ -3289,19 +3355,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c9e09286-7234-4cee-b778-8c329b183bb3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"c9e09286-7234-4cee-b778-8c329b183bb3","type":"not_found"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "125"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:39 GMT
+ - Fri, 08 Dec 2023 16:06:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3311,32 +3377,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c10f099-0cf2-4393-9e72-fabb7b406e27
- status: 404 Not Found
- code: 404
+ - ee269aa0-0918-436f-81f9-4109c1cad04b
+ status: 200 OK
+ code: 200
duration: ""
- request:
- body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.0.0/22","push_default_route":true}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
+ method: GET
response:
- body: '{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "586"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:39 GMT
+ - Fri, 08 Dec 2023 16:06:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3346,7 +3410,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 40171d41-42ef-4c86-900f-bd1328fb4d4c
+ - 847b9a87-60c5-47e2-9c3c-9b4e3eb1c350
status: 200 OK
code: 200
duration: ""
@@ -3357,19 +3421,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/d5a14f97-3df0-40ed-8173-f6138ded8f52
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "586"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:39 GMT
+ - Fri, 08 Dec 2023 16:06:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3379,32 +3443,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 60469fe2-c600-459b-85ef-1000a10f7fe1
+ - 14ab9dec-b258-4b12-8d37-75966446361e
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"test-k8s-public-ip","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"enable_smtp":false,"enable_bastion":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
+ method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:40.056542Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "979"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:40 GMT
+ - Fri, 08 Dec 2023 16:06:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3414,7 +3476,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9cb63b41-ce87-4fa1-9b08-1ab38da62632
+ - e81c3958-95f7-4e2c-a1ee-0dae6f0f69d8
status: 200 OK
code: 200
duration: ""
@@ -3425,19 +3487,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:40.108038Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "982"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:40 GMT
+ - Fri, 08 Dec 2023 16:06:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3447,7 +3509,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 63332ee2-728b-43c3-821b-e4eacb5e1c59
+ - f39fe21f-81c2-46d7-a893-10e131333597
status: 200 OK
code: 200
duration: ""
@@ -3458,19 +3520,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:40.749102Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "979"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:07:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3480,7 +3542,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae02bfa6-e7fc-4129-b9ce-2a10ad29d719
+ - 4606df28-3dbd-4943-8ef1-f31dda936025
status: 200 OK
code: 200
duration: ""
@@ -3491,19 +3553,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:40.749102Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "979"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:07:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3513,7 +3575,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec5826e6-0e87-419b-ba3a-031bbd135a3c
+ - a25a9dff-18af-41b3-b0f9-55eac98fe9a3
status: 200 OK
code: 200
duration: ""
@@ -3524,19 +3586,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:40.749102Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "979"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:07:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3546,32 +3608,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0836ff8a-5c6c-49b3-93ea-619dedbbc4f4
+ - 420b9b35-fd53-4fc9-b72c-3033bb2dc13b
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"d5a14f97-3df0-40ed-8173-f6138ded8f52"}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
+ method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":null,"private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"created","updated_at":"2023-11-13T13:58:46.412374Z","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "983"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:46 GMT
+ - Fri, 08 Dec 2023 16:07:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3581,7 +3641,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f0fbf48-b8f7-4e53-b57e-e650f45de5b8
+ - a8c43261-2ccb-4926-9b01-9cec59ddfaf7
status: 200 OK
code: 200
duration: ""
@@ -3592,19 +3652,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":null,"private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"created","updated_at":"2023-11-13T13:58:46.412374Z","zone":"fr-par-1"}],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:46.596118Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1965"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:46 GMT
+ - Fri, 08 Dec 2023 16:07:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3614,7 +3674,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4bd0bbf1-e278-48da-a075-de7a88ae93ee
+ - 12efffdd-d480-4638-94f2-b8d137ce1fcc
status: 200 OK
code: 200
duration: ""
@@ -3625,19 +3685,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":null,"private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"created","updated_at":"2023-11-13T13:58:46.412374Z","zone":"fr-par-1"}],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:46.596118Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1965"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:51 GMT
+ - Fri, 08 Dec 2023 16:07:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3647,7 +3707,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f680f43c-f7b1-460d-9a71-a64fef0ed5c2
+ - b6f0b09f-92aa-4501-ab8a-f71f366f4bd0
status: 200 OK
code: 200
duration: ""
@@ -3658,19 +3718,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:55.989598Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1974"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:56 GMT
+ - Fri, 08 Dec 2023 16:07:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3680,7 +3740,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d976da1-442b-4861-90e1-217eb1796276
+ - 1824d453-bb23-4a58-b006-dafa09474c60
status: 200 OK
code: 200
duration: ""
@@ -3691,19 +3751,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "996"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:56 GMT
+ - Fri, 08 Dec 2023 16:07:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3713,7 +3773,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eefbf8cf-f752-4902-b6d3-1b45420b8d59
+ - 169c1882-a582-4484-ae34-e3d4324b4859
status: 200 OK
code: 200
duration: ""
@@ -3724,19 +3784,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "996"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:56 GMT
+ - Fri, 08 Dec 2023 16:07:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3746,7 +3806,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cf92c70f-9d89-4a76-bd18-51af6cfc94f8
+ - 585e9b4d-e2a8-4522-8df6-0418cc564933
status: 200 OK
code: 200
duration: ""
@@ -3757,19 +3817,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:55.989598Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:00:34.443380Z","id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:05:57.118267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1974"
+ - "630"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:56 GMT
+ - Fri, 08 Dec 2023 16:07:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3779,7 +3839,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f33df809-5da2-4ff2-ac87-a44b1cd93b08
+ - 756dc320-0a1b-4a2d-b19f-3e2704796df3
status: 200 OK
code: 200
duration: ""
@@ -3790,19 +3850,54 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/73df29dd-4cd0-49ee-a757-5998712dcc2d
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"73df29dd-4cd0-49ee-a757-5998712dcc2d","type":"not_found"}'
headers:
Content-Length:
- - "996"
+ - "125"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:07:53 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - dba63e23-a99a-4fc5-a4b7-f87116796521
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.0.0/22","push_default_route":true}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps
+ method: POST
+ response:
+ body: '{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "586"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:56 GMT
+ - Fri, 08 Dec 2023 16:07:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3812,7 +3907,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - adb46781-4166-4117-bc3f-957489197c07
+ - fea06531-a7c6-4af5-a839-1abfb3810a38
status: 200 OK
code: 200
duration: ""
@@ -3823,19 +3918,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/c6945882-76f3-4d6c-95c6-cd87591c7a63
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T13:58:36.765767Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1508"
+ - "586"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:57 GMT
+ - Fri, 08 Dec 2023 16:07:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3845,12 +3940,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 034c8b18-dbab-4e89-9f0f-814c5209f23f
+ - 51a370c0-d70d-4d5c-8c8a-9d0d77e27262
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"name":"test-k8s-public-ip","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":true}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"test-k8s-public-ip","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"enable_smtp":false,"enable_bastion":false}'
form: {}
headers:
Content-Type:
@@ -3858,19 +3953,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/pools
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways
method: POST
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201140925Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:07:54.098087Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}'
headers:
Content-Length:
- - "631"
+ - "979"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:57 GMT
+ - Fri, 08 Dec 2023 16:07:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3880,7 +3975,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04c68730-becf-4b64-9ff2-01f7d6cec96f
+ - b4ca1fef-9c64-4424-82a0-d97ead786c63
status: 200 OK
code: 200
duration: ""
@@ -3891,19 +3986,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:07:54.146912Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "982"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:57 GMT
+ - Fri, 08 Dec 2023 16:07:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3913,7 +4008,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 54735773-7d96-4f6c-bd91-7cc9a39c85b7
+ - b0321e30-661b-4b39-a7ca-388db090396e
status: 200 OK
code: 200
duration: ""
@@ -3924,19 +4019,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:07:54.966697Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "979"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:02 GMT
+ - Fri, 08 Dec 2023 16:07:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3946,7 +4041,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56990773-cd1a-4971-a1f8-710856f3bf91
+ - 1624ec2e-5986-427e-a1a0-5a36c1b6ad4f
status: 200 OK
code: 200
duration: ""
@@ -3957,19 +4052,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:07:54.966697Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "979"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:07 GMT
+ - Fri, 08 Dec 2023 16:07:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3979,7 +4074,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f85ad74-c52b-4a78-a948-18092ea20402
+ - 0cf9e0af-4b81-45cd-b9f9-0aed28e59f25
status: 200 OK
code: 200
duration: ""
@@ -3990,19 +4085,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:07:54.966697Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "979"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:12 GMT
+ - Fri, 08 Dec 2023 16:07:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4012,30 +4107,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3240ab15-4ba8-4853-b33a-a3fb9a30e7c1
+ - 8e0bf2f4-8d47-435b-b9d1-9f3e3d5b6e03
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"c6945882-76f3-4d6c-95c6-cd87591c7a63"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
- method: GET
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks
+ method: POST
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":null,"private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"created","updated_at":"2023-12-08T16:08:00.218382Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "983"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:17 GMT
+ - Fri, 08 Dec 2023 16:08:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4045,7 +4142,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4156a323-97a7-4fac-8c3a-32ef2263d268
+ - 66e1781a-b6d6-4098-94ef-6a86fd35e736
status: 200 OK
code: 200
duration: ""
@@ -4056,19 +4153,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":null,"private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"created","updated_at":"2023-12-08T16:08:00.218382Z","zone":"fr-par-1"}],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:00.396080Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "1965"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:22 GMT
+ - Fri, 08 Dec 2023 16:08:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4078,7 +4175,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6bfe0818-d9b1-46ba-b74b-31c23df22e70
+ - 00fa46b1-d456-4809-a923-52fc1240f465
status: 200 OK
code: 200
duration: ""
@@ -4089,19 +4186,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":null,"private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"created","updated_at":"2023-12-08T16:08:00.218382Z","zone":"fr-par-1"}],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:00.396080Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "1965"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:27 GMT
+ - Fri, 08 Dec 2023 16:08:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4111,7 +4208,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 192d9c1a-71da-4a08-9d5b-724d3d314ceb
+ - 26a52bb2-2d50-4937-a142-5aea8ed0611e
status: 200 OK
code: 200
duration: ""
@@ -4122,19 +4219,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:09.301209Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "1974"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:33 GMT
+ - Fri, 08 Dec 2023 16:08:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4144,7 +4241,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a319289-7644-4cde-9b50-7dcfc9b1d322
+ - 205a8c82-9c59-415b-a96b-7ecce5f9ffee
status: 200 OK
code: 200
duration: ""
@@ -4155,19 +4252,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:38 GMT
+ - Fri, 08 Dec 2023 16:08:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4177,7 +4274,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2551fbe4-43b6-4a75-b374-18da89c08c89
+ - f391346a-c9b4-4934-9dff-1c3310c82583
status: 200 OK
code: 200
duration: ""
@@ -4188,19 +4285,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:43 GMT
+ - Fri, 08 Dec 2023 16:08:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4210,7 +4307,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1bc0524d-480d-4aaa-a753-cb7daa0972e2
+ - af2ba708-bae3-44d7-afeb-57e6bb1827f6
status: 200 OK
code: 200
duration: ""
@@ -4221,19 +4318,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:09.301209Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "1974"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:48 GMT
+ - Fri, 08 Dec 2023 16:08:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4243,7 +4340,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0178db18-bac4-4e07-baae-cb3a45a82ace
+ - 089fd962-c83b-47c6-b99c-dc8e5d449036
status: 200 OK
code: 200
duration: ""
@@ -4254,19 +4351,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:54 GMT
+ - Fri, 08 Dec 2023 16:08:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4276,7 +4373,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e8f8f71-052e-4edd-acbe-13c5976dd935
+ - 7eea391e-39c9-429c-b70c-a0eae2df5eb4
status: 200 OK
code: 200
duration: ""
@@ -4287,19 +4384,54 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:07:52.513495Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "628"
+ - "1508"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:08:11 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 46e6f3be-8fbb-4362-82f1-2bc940de0eb1
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"name":"test-k8s-public-ip","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":true}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/pools
+ method: POST
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241121Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "631"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:00 GMT
+ - Fri, 08 Dec 2023 16:08:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4309,7 +4441,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4de8b159-86f6-4feb-a9a8-8b0a8f6e9885
+ - bb5a82a5-a403-4662-9a8d-e8a3f242666b
status: 200 OK
code: 200
duration: ""
@@ -4320,10 +4452,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4332,7 +4464,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:05 GMT
+ - Fri, 08 Dec 2023 16:08:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4342,7 +4474,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74dc041b-5c3f-4f37-ad2a-f2de7fcda9dc
+ - 74983c08-ea7a-4473-bf38-d95ce92a4b60
status: 200 OK
code: 200
duration: ""
@@ -4353,10 +4485,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4365,7 +4497,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:10 GMT
+ - Fri, 08 Dec 2023 16:08:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4375,7 +4507,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a9ad9b66-45f7-4d87-976a-506173a3ccd8
+ - c5da5f3e-fbe0-4335-ac31-00dc7e707f15
status: 200 OK
code: 200
duration: ""
@@ -4386,10 +4518,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4398,7 +4530,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:15 GMT
+ - Fri, 08 Dec 2023 16:08:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4408,7 +4540,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 767cf06d-0ff2-40a2-b2ff-dec14e152b61
+ - ff0baffc-a778-41dc-99e4-0e6611da6d23
status: 200 OK
code: 200
duration: ""
@@ -4419,10 +4551,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4431,7 +4563,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:20 GMT
+ - Fri, 08 Dec 2023 16:08:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4441,7 +4573,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 08a38050-3634-483d-9ec9-0cfb108b76c6
+ - 914393b4-8eac-4b15-9550-e73693ff3f06
status: 200 OK
code: 200
duration: ""
@@ -4452,10 +4584,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4464,7 +4596,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:25 GMT
+ - Fri, 08 Dec 2023 16:08:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4474,7 +4606,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6d490a1d-4dc0-4316-a957-c8601150353c
+ - 113bd61c-27a3-4fe9-8557-fe26cbc263b9
status: 200 OK
code: 200
duration: ""
@@ -4485,10 +4617,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4497,7 +4629,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:30 GMT
+ - Fri, 08 Dec 2023 16:08:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4507,7 +4639,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9ae000b6-6b03-4329-9edf-486428fc5596
+ - 8c532aea-1317-423c-afa3-ecae46824069
status: 200 OK
code: 200
duration: ""
@@ -4518,10 +4650,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4530,7 +4662,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:08:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4540,7 +4672,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e2a0a9f-30ae-4fd5-aa32-a4a9b7d7fcda
+ - 34d94282-944c-4f3e-ac71-a7c6dbb0d596
status: 200 OK
code: 200
duration: ""
@@ -4551,10 +4683,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4563,7 +4695,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:40 GMT
+ - Fri, 08 Dec 2023 16:08:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4573,7 +4705,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 054dde42-d561-4dbd-8c4f-ac57b2aef678
+ - a640f9b5-a36b-4621-8b0e-35c8bbc6695b
status: 200 OK
code: 200
duration: ""
@@ -4584,10 +4716,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4596,7 +4728,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:45 GMT
+ - Fri, 08 Dec 2023 16:08:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4606,7 +4738,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22b3f952-67d3-45ab-bc8e-89a35cdd850e
+ - 0d25a2d9-b156-40e0-a545-18b5315edf70
status: 200 OK
code: 200
duration: ""
@@ -4617,10 +4749,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4629,7 +4761,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:50 GMT
+ - Fri, 08 Dec 2023 16:08:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4639,7 +4771,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0ad06ee-5484-499d-86e3-62b8af988317
+ - c97ce5d9-bb65-44e2-b4f3-10a0d2e05316
status: 200 OK
code: 200
duration: ""
@@ -4650,10 +4782,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4662,7 +4794,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:55 GMT
+ - Fri, 08 Dec 2023 16:09:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4672,7 +4804,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f9c2d22-bb3e-439d-af43-894cb89de653
+ - bece09b0-4ebd-4bac-b73b-f8c85664a50b
status: 200 OK
code: 200
duration: ""
@@ -4683,10 +4815,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4695,7 +4827,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:09:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4705,7 +4837,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 124bb3e9-9ecf-4155-8dd4-9cae03eb3740
+ - 33c26dee-7e1b-40dc-bf0d-f1b822791bb2
status: 200 OK
code: 200
duration: ""
@@ -4716,10 +4848,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4728,7 +4860,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:05 GMT
+ - Fri, 08 Dec 2023 16:09:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4738,7 +4870,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92caabba-f004-4337-94a1-2e74fc5441b3
+ - 2c40b50a-f4c0-4b07-8476-594740ff7f6f
status: 200 OK
code: 200
duration: ""
@@ -4749,10 +4881,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4761,7 +4893,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:11 GMT
+ - Fri, 08 Dec 2023 16:09:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4771,7 +4903,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e5bc30a0-271d-42c4-839d-01419640f414
+ - 478483ae-57b6-4053-9ec7-893c023986c3
status: 200 OK
code: 200
duration: ""
@@ -4782,10 +4914,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4794,7 +4926,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:16 GMT
+ - Fri, 08 Dec 2023 16:09:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4804,7 +4936,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d90ad0ab-b481-4162-8cd4-782a8141286e
+ - 6e55db0b-d0d9-4f1b-8e45-3249df6dd344
status: 200 OK
code: 200
duration: ""
@@ -4815,10 +4947,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4827,7 +4959,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:21 GMT
+ - Fri, 08 Dec 2023 16:09:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4837,7 +4969,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 345edfa4-5b64-4cd9-9fcf-c36f1d49c996
+ - 82c9f792-df7c-4db5-9a69-31a034d1d404
status: 200 OK
code: 200
duration: ""
@@ -4848,10 +4980,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4860,7 +4992,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:26 GMT
+ - Fri, 08 Dec 2023 16:09:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4870,7 +5002,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea0c89bb-dfcb-4281-81b6-132489c496a5
+ - 46c1c3b2-0e5a-48e4-8d30-172aa6c1eee9
status: 200 OK
code: 200
duration: ""
@@ -4881,10 +5013,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4893,7 +5025,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:31 GMT
+ - Fri, 08 Dec 2023 16:09:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4903,7 +5035,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7483dea0-aad5-4250-a355-072fb9a43031
+ - 71a48925-5fd1-4442-8a6e-14736fa05599
status: 200 OK
code: 200
duration: ""
@@ -4914,10 +5046,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4926,7 +5058,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:36 GMT
+ - Fri, 08 Dec 2023 16:09:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4936,7 +5068,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fea1b5bc-c5e9-433b-8559-ac2234918dbd
+ - b3c40d61-45fe-43a1-8b0c-4e4f9c74ab54
status: 200 OK
code: 200
duration: ""
@@ -4947,10 +5079,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4959,7 +5091,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:41 GMT
+ - Fri, 08 Dec 2023 16:09:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4969,7 +5101,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 91886404-a86c-4458-ac39-9afe46390fba
+ - 1c1158a8-6f43-497a-8aba-eabefcd4d8f7
status: 200 OK
code: 200
duration: ""
@@ -4980,10 +5112,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4992,7 +5124,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:46 GMT
+ - Fri, 08 Dec 2023 16:09:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5002,7 +5134,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b6fab31b-6493-461e-84a8-7a19d686a6e3
+ - 2997637c-d86f-4bfa-89ac-924f9e0175f1
status: 200 OK
code: 200
duration: ""
@@ -5013,10 +5145,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5025,7 +5157,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:51 GMT
+ - Fri, 08 Dec 2023 16:09:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5035,7 +5167,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b9f8f89-0475-4ed7-bdd2-9d7367b38fdd
+ - f69a34bd-5288-495e-a448-067a15c1576b
status: 200 OK
code: 200
duration: ""
@@ -5046,10 +5178,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5058,7 +5190,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:56 GMT
+ - Fri, 08 Dec 2023 16:10:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5068,7 +5200,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0b8f03d6-bfca-45d6-9004-415edb1abd6d
+ - 366e23dc-7b8f-4273-aa50-d63c38634dff
status: 200 OK
code: 200
duration: ""
@@ -5079,10 +5211,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5091,7 +5223,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:01 GMT
+ - Fri, 08 Dec 2023 16:10:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5101,7 +5233,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fabff5f4-f5c5-42ce-973a-c403bc7f88fc
+ - 7c0d1472-630d-48bd-967b-f961d1278176
status: 200 OK
code: 200
duration: ""
@@ -5112,10 +5244,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5124,7 +5256,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:06 GMT
+ - Fri, 08 Dec 2023 16:10:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5134,7 +5266,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86fed211-d1c3-4c67-9d52-c22b9774b332
+ - c0491d17-545f-460b-b809-be7316ca8523
status: 200 OK
code: 200
duration: ""
@@ -5145,10 +5277,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5157,7 +5289,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:12 GMT
+ - Fri, 08 Dec 2023 16:10:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5167,7 +5299,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 71d97e3c-65ee-48f9-a432-1a030df34af2
+ - 6326395d-81ad-488b-af88-582a3ef5f9b7
status: 200 OK
code: 200
duration: ""
@@ -5178,10 +5310,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5190,7 +5322,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:17 GMT
+ - Fri, 08 Dec 2023 16:10:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5200,7 +5332,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b60ef5fa-b32c-4012-8ad1-165c6a666520
+ - 4a65c171-6b0a-49f5-ae78-7e24314076ef
status: 200 OK
code: 200
duration: ""
@@ -5211,10 +5343,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5223,7 +5355,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:22 GMT
+ - Fri, 08 Dec 2023 16:10:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5233,7 +5365,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e8f029b3-caeb-4065-888a-70cec8213b5e
+ - 9dc52827-4df3-4e25-b065-31cdc3213875
status: 200 OK
code: 200
duration: ""
@@ -5244,10 +5376,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5256,7 +5388,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:27 GMT
+ - Fri, 08 Dec 2023 16:10:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5266,7 +5398,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a85e91f8-063a-45ee-99c9-6cd99adb162e
+ - bd3d6acd-1da3-4947-a1ee-45049b79172f
status: 200 OK
code: 200
duration: ""
@@ -5277,10 +5409,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5289,7 +5421,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:32 GMT
+ - Fri, 08 Dec 2023 16:10:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5299,7 +5431,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a7d00e64-e38b-4273-8ec1-d5c941dbbf8a
+ - e97c6a5c-2acd-45c8-ac88-d9ca1d9a553d
status: 200 OK
code: 200
duration: ""
@@ -5310,10 +5442,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5322,7 +5454,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:37 GMT
+ - Fri, 08 Dec 2023 16:10:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5332,7 +5464,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 275dd0c8-14bb-4e23-a550-42931ea0cc36
+ - a862e89e-2f88-4ab0-8600-b6aa5f8c262c
status: 200 OK
code: 200
duration: ""
@@ -5343,10 +5475,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5355,7 +5487,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:42 GMT
+ - Fri, 08 Dec 2023 16:10:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5365,7 +5497,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 70b9ac28-0a9f-49f8-bd27-95d4d8adaf96
+ - e725548f-57e5-48a6-82e6-6db85097710a
status: 200 OK
code: 200
duration: ""
@@ -5376,10 +5508,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5388,7 +5520,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:47 GMT
+ - Fri, 08 Dec 2023 16:10:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5398,7 +5530,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f4649c5-4e45-4886-baf3-43a19ed511be
+ - ea2747cb-6a49-414c-b63f-f93cc6d279ff
status: 200 OK
code: 200
duration: ""
@@ -5409,10 +5541,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5421,7 +5553,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:52 GMT
+ - Fri, 08 Dec 2023 16:10:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5431,7 +5563,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 64a4f2a0-e61b-4cee-bf13-0a54bcccbecf
+ - b3163769-1c0e-4e1c-83f0-e00d35c85aa6
status: 200 OK
code: 200
duration: ""
@@ -5442,10 +5574,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5454,7 +5586,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:57 GMT
+ - Fri, 08 Dec 2023 16:11:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5464,7 +5596,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e41552db-a8ce-42f3-a882-b62fe5a4dc67
+ - 8ab401f9-447c-44b5-8997-abd9675cad49
status: 200 OK
code: 200
duration: ""
@@ -5475,10 +5607,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5487,7 +5619,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:02 GMT
+ - Fri, 08 Dec 2023 16:11:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5497,7 +5629,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d70927eb-03bc-4f07-8567-36a667c6f2e0
+ - 3dd74165-9ce4-4a3f-a747-c4acca064daf
status: 200 OK
code: 200
duration: ""
@@ -5508,10 +5640,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5520,7 +5652,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:07 GMT
+ - Fri, 08 Dec 2023 16:11:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5530,7 +5662,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 73eaf2d8-c3c1-4630-a00e-c1d88b21a75f
+ - 3de232bb-5b13-4642-910d-6ccfc306b600
status: 200 OK
code: 200
duration: ""
@@ -5541,10 +5673,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5553,7 +5685,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:12 GMT
+ - Fri, 08 Dec 2023 16:11:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5563,7 +5695,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a9513d1-a7cc-46fb-b372-da5636fa7f59
+ - 4f57abc2-1add-4f7e-a5f1-6313964225a8
status: 200 OK
code: 200
duration: ""
@@ -5574,10 +5706,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5586,7 +5718,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:17 GMT
+ - Fri, 08 Dec 2023 16:11:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5596,7 +5728,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 09e04bb6-cf36-4034-ae6b-855842bd6223
+ - 5c5f4109-51c8-45b7-87e5-0baf67e7f9e9
status: 200 OK
code: 200
duration: ""
@@ -5607,10 +5739,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5619,7 +5751,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:22 GMT
+ - Fri, 08 Dec 2023 16:11:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5629,7 +5761,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c0a0d27d-edee-4ecc-b19f-4aec0d84c680
+ - af52916e-1576-471a-bd27-b4dfb4d7482f
status: 200 OK
code: 200
duration: ""
@@ -5640,10 +5772,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5652,7 +5784,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:27 GMT
+ - Fri, 08 Dec 2023 16:11:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5662,7 +5794,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 320c1988-aa57-4cf5-bd61-44294f63de92
+ - 8d83d231-0ac2-4f63-8856-47cdf76a76b1
status: 200 OK
code: 200
duration: ""
@@ -5673,10 +5805,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5685,7 +5817,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:33 GMT
+ - Fri, 08 Dec 2023 16:11:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5695,7 +5827,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a2dc57f-d4e2-4d17-95dc-df080fb8586f
+ - e8866dee-f704-424c-8596-a2b692fe441a
status: 200 OK
code: 200
duration: ""
@@ -5706,10 +5838,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:57.201141Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5718,7 +5850,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:38 GMT
+ - Fri, 08 Dec 2023 16:11:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5728,7 +5860,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2a3da320-aaeb-445e-a4eb-aaaf89554b04
+ - f8e6d9f1-9463-4854-b4d6-2072f5baf4d8
status: 200 OK
code: 200
duration: ""
@@ -5739,19 +5871,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:38.431597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:11:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5761,7 +5893,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 530fcb8f-166b-4e54-9100-46ada7b812cd
+ - 86486ed2-45e3-4f21-8d1d-f40b243f920d
status: 200 OK
code: 200
duration: ""
@@ -5772,19 +5904,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T14:00:41.393676Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1500"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:11:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5794,7 +5926,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cba01ed8-5c48-4d8a-b46e-48611fc2deb7
+ - acc58274-e16b-473e-beab-185dd2715a5b
status: 200 OK
code: 200
duration: ""
@@ -5805,19 +5937,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:38.431597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:11:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5827,7 +5959,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 867f8842-fe27-4a62-8fc8-50b02874431f
+ - 4e7e7125-4de3-4a40-a7ee-2d543245862e
status: 200 OK
code: 200
duration: ""
@@ -5838,19 +5970,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&page=1&pool_id=a69311ee-4867-49c5-85da-c4633fb8693d&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:00:46.803987Z","error_message":null,"id":"4e07bd6c-a990-4eab-a29f-b84960556314","name":"scw-test-k8s-public-i-test-k8s-public-i-4e07bd","pool_id":"a69311ee-4867-49c5-85da-c4633fb8693d","provider_id":"scaleway://instance/fr-par-1/5b3876b7-4310-49af-b057-c8ea39b95e82","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:03:38.415246Z"}],"total_count":1}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:08:11.657241Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "645"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:12:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5860,7 +5992,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07eaad42-20b0-4749-8aa3-134061463c3b
+ - 952eb686-7a3d-4de8-afb1-94600694047b
status: 200 OK
code: 200
duration: ""
@@ -5871,19 +6003,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T14:00:41.393676Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:07.736063Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1500"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5893,7 +6025,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3e8de5c2-d8ac-4201-b81a-38be8ca64fed
+ - ac6cb966-362b-4b60-899b-9ba7ec1d315b
status: 200 OK
code: 200
duration: ""
@@ -5904,19 +6036,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:45.832050Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:58:45.841502Z"}],"tags":[],"updated_at":"2023-11-13T13:58:53.093194Z","vpc_id":"6b685238-8de3-48e6-8724-6eacc489ca0c"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:09:48.004824Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "719"
+ - "1500"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5926,7 +6058,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29b24be0-3587-4797-8f00-ecc5a1a68b8e
+ - bf12c8db-e10b-4b85-8809-a9f1ce7d3a29
status: 200 OK
code: 200
duration: ""
@@ -5937,10 +6069,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:38.431597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:07.736063Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5949,7 +6081,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5959,7 +6091,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c4b0eb9-199c-43f9-a79f-f27a431f10ea
+ - b857770b-a768-4539-aab6-ee99997f2ad2
status: 200 OK
code: 200
duration: ""
@@ -5970,10 +6102,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&pool_id=a69311ee-4867-49c5-85da-c4633fb8693d&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&page=1&pool_id=a054df29-078f-4632-8288-65709a008b44&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:00:46.803987Z","error_message":null,"id":"4e07bd6c-a990-4eab-a29f-b84960556314","name":"scw-test-k8s-public-i-test-k8s-public-i-4e07bd","pool_id":"a69311ee-4867-49c5-85da-c4633fb8693d","provider_id":"scaleway://instance/fr-par-1/5b3876b7-4310-49af-b057-c8ea39b95e82","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:03:38.415246Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:09:51.031865Z","error_message":null,"id":"c6c1586a-0594-4073-b4d1-b86604da3cd5","name":"scw-test-k8s-public-i-test-k8s-public-i-c6c158","pool_id":"a054df29-078f-4632-8288-65709a008b44","provider_id":"scaleway://instance/fr-par-1/ff78658c-3956-436b-94da-22b7560bd9f1","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:07.717829Z"}],"total_count":1}'
headers:
Content-Length:
- "645"
@@ -5982,7 +6114,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5992,7 +6124,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ed70b861-035d-4fa1-ae4b-c0bb93141ad2
+ - 6fbe93ea-e1f0-4ae7-9926-7eecd5ea3680
status: 200 OK
code: 200
duration: ""
@@ -6003,23 +6135,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b3876b7-4310-49af-b057-c8ea39b95e82
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
- scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
- mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-11-13T14:00:47.668695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-4e07bd","id":"5b3876b7-4310-49af-b057-c8ea39b95e82","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"55","hypervisor_id":"102","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2d:51:07","maintenances":[],"modification_date":"2023-11-13T14:01:05.582505+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-4e07bd","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.194.98.67","private_nics":[{"creation_date":"2023-11-13T14:00:48.269032+00:00","id":"b9eec8d3-5859-4c5c-aecc-c9c10a896437","mac_address":"02:00:00:14:bd:a3","modification_date":"2023-11-13T14:00:49.063476+00:00","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","server_id":"5b3876b7-4310-49af-b057-c8ea39b95e82","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"cbc09d40-13ee-4639-88d8-041bbc840a9d","name":"kubernetes
- a253704d-993c-4193-8022-07a711f0f014"},"state":"running","state_detail":"booting
- kernel","tags":["kapsule=a253704d-993c-4193-8022-07a711f0f014","pool=a69311ee-4867-49c5-85da-c4633fb8693d","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=4e07bd6c-a990-4eab-a29f-b84960556314"],"volumes":{"0":{"boot":false,"creation_date":"2023-11-13T14:00:47.668695+00:00","export_uri":null,"id":"c9d00e7c-a2a0-4228-8ba1-b78e4cf33875","modification_date":"2023-11-13T14:00:47.668695+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"5b3876b7-4310-49af-b057-c8ea39b95e82","name":"scw-test-k8s-public-i-test-k8s-public-i-4e07bd"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:09:48.004824Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "3480"
+ - "1500"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:43 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6029,7 +6157,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33ce18a5-5eff-4786-a29f-65e4ea0f101e
+ - c8a9a67d-7fa7-4a02-929b-23a42631f31d
status: 200 OK
code: 200
duration: ""
@@ -6040,19 +6168,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/d5a14f97-3df0-40ed-8173-f6138ded8f52
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:59.813231Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T16:07:59.817478Z"}],"tags":[],"updated_at":"2023-12-08T16:08:06.796160Z","vpc_id":"3e98ac99-ce53-4b60-8c8d-8bfdf916f609"}'
headers:
Content-Length:
- - "586"
+ - "719"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6062,7 +6190,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b526b34c-897d-430b-a1a4-4daabd875f30
+ - 81bdb6ca-5691-4deb-a077-c216e6525fa1
status: 200 OK
code: 200
duration: ""
@@ -6073,19 +6201,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:29.268912Z","dhcp_enabled":true,"id":"201d62ac-4232-462f-b8a8-e5767d25d71e","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:29.268912Z","id":"3c4b55f2-5c0a-4da2-834a-cbd20cdb7556","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:45.832050Z"},{"created_at":"2023-11-13T13:52:29.268912Z","id":"d1260a3d-1dff-478b-8f0b-c4be2e6dc3ec","subnet":"fd63:256c:45f7:dedd::/64","updated_at":"2023-11-13T13:58:45.841502Z"}],"tags":[],"updated_at":"2023-11-13T13:58:53.093194Z","vpc_id":"6b685238-8de3-48e6-8724-6eacc489ca0c"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:07.736063Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "719"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6095,7 +6223,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5905f98-3969-4771-be4b-79637c21432d
+ - 6e779530-b7c8-4c78-917d-5e0a9b9fb3c4
status: 200 OK
code: 200
duration: ""
@@ -6106,19 +6234,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&pool_id=a054df29-078f-4632-8288-65709a008b44&status=unknown
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:55.989598Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:09:51.031865Z","error_message":null,"id":"c6c1586a-0594-4073-b4d1-b86604da3cd5","name":"scw-test-k8s-public-i-test-k8s-public-i-c6c158","pool_id":"a054df29-078f-4632-8288-65709a008b44","provider_id":"scaleway://instance/fr-par-1/ff78658c-3956-436b-94da-22b7560bd9f1","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:07.717829Z"}],"total_count":1}'
headers:
Content-Length:
- - "1974"
+ - "645"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6128,7 +6256,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b938048d-2f5f-4927-a08e-ea9e3fd19c78
+ - 7d391bb3-d8f7-4010-88af-b1d994f20731
status: 200 OK
code: 200
duration: ""
@@ -6139,19 +6267,23 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ff78658c-3956-436b-94da-22b7560bd9f1
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON
+ scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64
+ mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-12-08T16:09:51.472939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-c6c158","id":"ff78658c-3956-436b-94da-22b7560bd9f1","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"55","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:31:85:25","maintenances":[],"modification_date":"2023-12-08T16:10:06.835068+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-c6c158","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.194.97.143","private_nics":[{"creation_date":"2023-12-08T16:09:52.447277+00:00","id":"f8fa8cb7-6768-404d-abee-a3bf829178ed","mac_address":"02:00:00:15:4e:cb","modification_date":"2023-12-08T16:09:53.588557+00:00","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","server_id":"ff78658c-3956-436b-94da-22b7560bd9f1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"a73c40a7-cfcf-4ba3-be85-d41c2de1ae92","name":"kubernetes
+ ed2745e1-bc0a-4bac-83d6-e83218ccaeb1"},"state":"running","state_detail":"booting
+ kernel","tags":["kapsule=ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","pool=a054df29-078f-4632-8288-65709a008b44","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=c6c1586a-0594-4073-b4d1-b86604da3cd5"],"volumes":{"0":{"boot":false,"creation_date":"2023-12-08T16:09:51.472939+00:00","export_uri":null,"id":"b25e63e8-db3c-4f59-9d81-c0d48007a061","modification_date":"2023-12-08T16:09:51.472939+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"ff78658c-3956-436b-94da-22b7560bd9f1","name":"scw-test-k8s-public-i-test-k8s-public-i-c6c158"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "996"
+ - "3481"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6161,7 +6293,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 145c2221-a66c-4e4f-b881-e85550596413
+ - 02a163b6-6a8b-410f-aa75-3fd0bb438b18
status: 200 OK
code: 200
duration: ""
@@ -6172,19 +6304,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/c6945882-76f3-4d6c-95c6-cd87591c7a63
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:55.989598Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1974"
+ - "586"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6194,7 +6326,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 625d28fb-29c6-4b11-a7fd-75d5f0f8be1c
+ - bfac6144-6b00-43b6-92ba-9ed58e5c73ec
status: 200 OK
code: 200
duration: ""
@@ -6205,19 +6337,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2023-12-08T15:59:58.899481Z","dhcp_enabled":true,"id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:59:58.899481Z","id":"27075350-76f3-4a2d-82ed-c719e3569a86","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:59.813231Z"},{"created_at":"2023-12-08T15:59:58.899481Z","id":"99ae9a74-b9b6-40cb-b791-7913cc68aaec","subnet":"fd63:256c:45f7:bd0f::/64","updated_at":"2023-12-08T16:07:59.817478Z"}],"tags":[],"updated_at":"2023-12-08T16:08:06.796160Z","vpc_id":"3e98ac99-ce53-4b60-8c8d-8bfdf916f609"}'
headers:
Content-Length:
- - "996"
+ - "719"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6227,7 +6359,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aa75d3eb-71d0-438f-b45f-b33e31a6c7ce
+ - 4b827e4a-ff87-4f48-96df-60e8f4010720
status: 200 OK
code: 200
duration: ""
@@ -6238,19 +6370,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T14:00:41.393676Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:09.301209Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1500"
+ - "1974"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6260,7 +6392,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aca1eb43-2075-4a35-bf01-ab635975d158
+ - eddeb0f8-4746-4ca6-b625-86b00487fc81
status: 200 OK
code: 200
duration: ""
@@ -6271,19 +6403,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/kubeconfig
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkpNRTFXYjFoRVZFMTZUVlJGZUUxcVJYcE9WRWt3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE5QQ214VWF6WllNMVZNU0daVmEzUmplWFJCYlM5SmJIQnBSMGRRYjI5b1lsUlhjekptY3pBeWMxaHVWRTUzTWtGWFVXSktRbWR3VGtGcVYyaGtXVkZvU1djS1FUVk5OV3AzVDFabU5rZFZWVFo0YTBoVFozRkxaVEZRV0hSc1NYVkhUekF2YlhGaFJWUk9RMFpoV0dKV2RsRkxSa0p3U1U1dVJ6VjZUbkJsYm1VeU9BbzVUR1pCV0dGYVYwdHpiVE5PY0VKTUwxcHJhRkpITW5OSk1YQnlVVmxSVFcwMldVbHFSRVZ2U1U1S2VtTTFjamxWVEdGSWVqbFJRbk0wTTFobVdFVnNDamxTS3pabFZWVnpTa0YyWkUxTVQyVTJlamd4TVRVdmFrWTFiMFY1ZWtNMVkwOXNSR2RKUjJNMGJraGpSVUl6WkVsa04waGpWbFJDUjNOTlRETlpXVTRLYVdjeVFrWnFjRFp4VnpONVlsbDJSV3hHYWpWeGQyVXhUVXN4WW1KR056YzBVekJRVWtsWk1HMTVaM0JWVWpOeFdYUkxiRUpXU2tKRk1qQXpVRTlUYWdwdk9FRnBkWFpaVlhVdmEzUXpaekZyT0hkalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1ZFNVhjMDA0TXpKNmRGQXlMMWhYVjJKdWEzbE1WRzFHYmk5TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRE1TdFlURkI0YVROR1FrZEZhWGhCVkdJNVVreEVNRU54TUZSdkt6ZFhVRlpoUkdKQ05reHVSblpFZFhSck1rNUxPUXB2UWs4MVlVUkhjbEZZVDNCSU0wUnBSbU5LY0hGaUt6Sm1WbmRTVlRod2MwRnhlakJUWlVvMVUyTXlXVWczUW5OMlNqWlBaQ3RMV0ZSaFdFb3ZaRWQzQ2xsSlZqRkhUV0kzTW0xRVRubGxhWEJaUkhFMmJuWTJkVE5LTUhkNGRXWXlUSEZPZWxWMVVUVjFOazVwYUZGbGIwazRiMkozUVdwTFVYSnRjelV4ZEVZS2MwZ3lNVzVZS3psYVEybExXQ3RZWjJ4WE0zTkRja3BrT1RsdlpGWkVhelZIVGpnclozSnVha3hSYlZkc2NISTFhbGxYU1d4c1dDOWFTekJSYjNWb0x3cFFOMDEyU1U1WU1YTkhLekZCTVhsM2MzaHZZa1JNV2taNFJ6aHdiSEZ4VTBGb1Jsa3pVMWRpTmxKUFFXTk5XVUpWVGtJeU5XRnhabFpvT0VaVEswbEZDa1EwWm10dlNIVnRhQzlUUTFBNU1qZGhiSGhwWlRORU4yVjNkMmxWUkRCU1RpdFJZd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTI1MzcwNGQtOTkzYy00MTkzLTgwMjItMDdhNzExZjBmMDE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBFNG9CRVI4Z1dSOUtaNjFmdWRrYXRadzV1bTVsOFRBTlRTU29ibk03SFFpMnlGYWN1VVZuSHNjNA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2638"
+ - "996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:44 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6293,7 +6425,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 62f95fee-6775-49d5-868b-4d870541edc4
+ - 9a3ec181-c175-460f-8f6e-9c98d6c21b63
status: 200 OK
code: 200
duration: ""
@@ -6304,19 +6436,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:03:38.431597Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:09.301209Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "1974"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:45 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6326,7 +6458,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 02e64006-8f16-4e1f-b46d-7d3331ef4e3a
+ - 4d4e7368-4a4a-4a8b-9c00-6c1915f9c800
status: 200 OK
code: 200
duration: ""
@@ -6337,19 +6469,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014/nodes?order_by=created_at_asc&page=1&pool_id=a69311ee-4867-49c5-85da-c4633fb8693d&status=unknown
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"nodes":[{"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:00:46.803987Z","error_message":null,"id":"4e07bd6c-a990-4eab-a29f-b84960556314","name":"scw-test-k8s-public-i-test-k8s-public-i-4e07bd","pool_id":"a69311ee-4867-49c5-85da-c4633fb8693d","provider_id":"scaleway://instance/fr-par-1/5b3876b7-4310-49af-b057-c8ea39b95e82","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:03:38.415246Z"}],"total_count":1}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "645"
+ - "996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:45 GMT
+ - Fri, 08 Dec 2023 16:12:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6359,7 +6491,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 13087f89-46a4-45cc-9d66-d2479b1f186d
+ - 070a96fe-5321-47b7-9624-b10533dd6c2f
status: 200 OK
code: 200
duration: ""
@@ -6370,19 +6502,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
+ method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261061640Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:09:48.004824Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "632"
+ - "1500"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:46 GMT
+ - Fri, 08 Dec 2023 16:12:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6392,7 +6524,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9706de74-bd32-43e0-b55e-6e6b02c39bf3
+ - ea85c676-aa49-4e68-926c-36e310abed63
status: 200 OK
code: 200
duration: ""
@@ -6403,19 +6535,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/kubeconfig
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUkJkMDFXYjFoRVZFMTZUVlJKZDA1NlJUSk5SRUYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFl3Q2psMVN6SkdlRzVLV0Zwd01EbFZkR0o0Y1N0cVNtRjVPRFJKYVVKMWRVVmpSMHB5VmpGdlkyRmxWRXczUlZORlFtWmlOakJCUzJGVWRtdEVUVU5RYzBvS1JVNVhlakZpVVhkWGNrRTFkV3RoVVdOMGRsSlpOak5rV0Rkb1RsZGhRbXBWZEZOSmVWVlNUV0o1ZUhGRVMwMXJZbFl3YVZSaWJqaHFVRk5UTUZjeWJncHZPRVV2VlRrd1ZVRTViRWh0Y0ZSbE5WVmlSMHRqZGtwR2NuWkVkVGxtVW1sMFpHYzFWR1JUZW1sTGNWTXlWMGsxTmt4R1ZtSTFMekZSTldWdGFsbEZDa0l5VVdWVU0xRnZXRVJYVTNOb016QjZjRmxPYW5WbVIzQXdjMlZaVmxFeU9VdG9UekF2VjI1dFpFZDZUbGhIVGxOR1JGUjRXVGRZZDFoemRHNXlha01LY1hBclQyUTFXV0ZDV1ZWb2RWQXlRMUp5UmxaU09FaERhek5EY21NNEwwVkhTbkkzUzNaTFlra3hkM2R2ZW5KQlltMW5NRWxTWlZSNWVGQk5aVUZSYlFwWlVtc3pPRlZQZFROQ1RWaG1URGROZEdnd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5WVjBSaXRHUkhkVEswOUNMeXRsV0VSblJDOTJNVTh5YkZWTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1pYTm1ObUZWVW1GNVRHODROR3BPZUVwcU0yMXBaWEpqZDFWUU1XTjVjV2x6VG1sdFVFOXJMeTk2Y2l0aldXTXpjUW9yYjNCeloyZzRiMHRLWkc5SmNXdzRabkJMVWxOMlJqQm5iM2hqTmxCdE1XMVhSWEUxYkVFNWRqZG1jRmd5YUVSVFJtMVpRM1ZqVDJ4aVQwRmhhVFpZQ21kNmVFTklSRmhwVlc1NGFHMWhZVlZIVG01S2JFTXdkakJVVW5oWFNuRjRTRlV5VFVVNE4wNVdaVE41VEc1bk4xWXZMMmxLUm1oelVGaHlWbFZRU2xvS1EwZGFjM2xaTW5weVZXOHhjMlZLYTIxbk0zRk1aWFpYZEV3eGNqWlpheTlxZVZSRU1HbFJXR2xGVFVReWNEWm5MekZDZUhaWmVUbEpkSFJMUlhSWWRncFBVWFZqUmt4eGVDODRRV3hsV2pCM09UTTRjelZ0ZHpSS1VXTjBibXc0TTJsWFFUSnhha1pOYURVclZITllkbXRFZUhWNGRIQTJUWE4xYTBaTlVWUkRDbTEzVkZGWGJuRlROekl6TDBOS09FNHdUak5XZGpscVJDOVRhRTlCYzNSMmVVRkVVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWQyNzQ1ZTEtYmMwYS00YmFjLTgzZDYtZTgzMjE4Y2NhZWIxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGT1lDRzZ2dXk2ak91TzhUMk5YRkxYYVNlMWtwQWNyQ0g5TExJT25RVjBpaEpienZoeW1mQTVncQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "629"
+ - "2638"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:46 GMT
+ - Fri, 08 Dec 2023 16:12:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6425,7 +6557,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c191a54-edf5-449b-9077-71416461cc6b
+ - ae0c6811-e0a5-4b68-afa3-e3716fa364a9
status: 200 OK
code: 200
duration: ""
@@ -6436,19 +6568,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:07.736063Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "629"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:51 GMT
+ - Fri, 08 Dec 2023 16:12:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6458,7 +6590,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c9296ae-b955-423d-999b-549ff9bb014e
+ - 8eb0bab0-f0b6-4d5e-b9f5-54a20b952e1e
status: 200 OK
code: 200
duration: ""
@@ -6469,19 +6601,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1/nodes?order_by=created_at_asc&page=1&pool_id=a054df29-078f-4632-8288-65709a008b44&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:09:51.031865Z","error_message":null,"id":"c6c1586a-0594-4073-b4d1-b86604da3cd5","name":"scw-test-k8s-public-i-test-k8s-public-i-c6c158","pool_id":"a054df29-078f-4632-8288-65709a008b44","provider_id":"scaleway://instance/fr-par-1/ff78658c-3956-436b-94da-22b7560bd9f1","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:07.717829Z"}],"total_count":1}'
headers:
Content-Length:
- - "629"
+ - "645"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:56 GMT
+ - Fri, 08 Dec 2023 16:12:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6491,7 +6623,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fadf6d93-60a0-4d47-9f80-503b37f51f5b
+ - b5850d1b-41ea-41c5-8480-f13f489ea92a
status: 200 OK
code: 200
duration: ""
@@ -6502,19 +6634,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
+ method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:12:12.585688553Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "629"
+ - "632"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:01 GMT
+ - Fri, 08 Dec 2023 16:12:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6524,7 +6656,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f94d276-f16f-4388-9fa0-1d9b178d31b9
+ - e0f8afd3-62bd-4485-b423-22ed19026470
status: 200 OK
code: 200
duration: ""
@@ -6535,10 +6667,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:12:12.585689Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -6547,7 +6679,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:06 GMT
+ - Fri, 08 Dec 2023 16:12:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6557,7 +6689,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5f3c6a9d-7a65-467e-8bd5-3a4d05a99fc6
+ - ff9a06a9-7ab5-447a-8ba8-e264353ece79
status: 200 OK
code: 200
duration: ""
@@ -6568,10 +6700,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:12:12.585689Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -6580,7 +6712,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:11 GMT
+ - Fri, 08 Dec 2023 16:12:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6590,7 +6722,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ef33d42c-bb75-4646-98c6-c712b52fa211
+ - 53683c85-2f7e-4d9f-9bc2-b478965162e6
status: 200 OK
code: 200
duration: ""
@@ -6601,10 +6733,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"a253704d-993c-4193-8022-07a711f0f014","container_runtime":"containerd","created_at":"2023-11-13T13:58:57.189804Z","id":"a69311ee-4867-49c5-85da-c4633fb8693d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:03:46.261062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","container_runtime":"containerd","created_at":"2023-12-08T16:08:11.650207Z","id":"a054df29-078f-4632-8288-65709a008b44","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:12:12.585689Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -6613,7 +6745,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:16 GMT
+ - Fri, 08 Dec 2023 16:12:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6623,7 +6755,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9f09f885-fba9-4507-9bc1-559071d55a40
+ - 9695e3bb-9b87-4e0a-ac88-e3057083bb5d
status: 200 OK
code: 200
duration: ""
@@ -6634,10 +6766,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"a69311ee-4867-49c5-85da-c4633fb8693d","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"a054df29-078f-4632-8288-65709a008b44","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -6646,7 +6778,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:21 GMT
+ - Fri, 08 Dec 2023 16:12:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6656,7 +6788,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 10638a73-bbac-438c-bac7-bf4801a0210f
+ - 56673c14-1d81-4ec7-8d2e-49c029c774a6
status: 404 Not Found
code: 404
duration: ""
@@ -6667,10 +6799,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T14:04:21.817896051Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:12:27.842498281Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1506"
@@ -6679,7 +6811,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:21 GMT
+ - Fri, 08 Dec 2023 16:12:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6689,7 +6821,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f73230b3-4d2b-4414-ad6a-40a5d03cd37b
+ - ff2bf5a2-f61c-463b-9e37-fea950e209e4
status: 200 OK
code: 200
duration: ""
@@ -6700,10 +6832,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T14:04:21.817896Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:12:27.842498Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1503"
@@ -6712,7 +6844,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:22 GMT
+ - Fri, 08 Dec 2023 16:12:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6722,7 +6854,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 80c62d46-ef68-4f56-96fd-585de84ffdee
+ - 28827587-76c6-4c13-b76b-5826d339a318
status: 200 OK
code: 200
duration: ""
@@ -6733,10 +6865,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a253704d-993c-4193-8022-07a711f0f014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:34.691066Z","created_at":"2023-11-13T13:52:34.691066Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a253704d-993c-4193-8022-07a711f0f014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a253704d-993c-4193-8022-07a711f0f014","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-11-13T14:04:21.817896Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:59:59.842396Z","created_at":"2023-12-08T15:59:59.842396Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ed2745e1-bc0a-4bac-83d6-e83218ccaeb1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-12-08T16:12:27.842498Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1503"
@@ -6745,7 +6877,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:27 GMT
+ - Fri, 08 Dec 2023 16:12:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6755,7 +6887,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d8821702-8920-4493-a4a0-aefb2765440f
+ - 337d8d42-50e3-4cd6-9fce-29cb554b89e4
status: 200 OK
code: 200
duration: ""
@@ -6766,10 +6898,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"a253704d-993c-4193-8022-07a711f0f014","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -6778,7 +6910,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:32 GMT
+ - Fri, 08 Dec 2023 16:12:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6788,7 +6920,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 332fd746-60bf-4cb1-8830-338cf6cd8a44
+ - 8d180419-c96b-432b-8b4d-d433fa1225d8
status: 404 Not Found
code: 404
duration: ""
@@ -6799,10 +6931,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"ready","updated_at":"2023-11-13T13:58:55.867833Z","zone":"fr-par-1"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"ready","updated_at":"2023-12-08T16:08:09.210550Z","zone":"fr-par-1"}'
headers:
Content-Length:
- "996"
@@ -6811,7 +6943,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:32 GMT
+ - Fri, 08 Dec 2023 16:12:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6821,7 +6953,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e9b9529-a174-4141-a3dd-4693b12674f8
+ - 523b463e-7ab4-4d4a-ac6d-e62dc1a907f9
status: 200 OK
code: 200
duration: ""
@@ -6832,7 +6964,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2?cleanup_dhcp=false
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe?cleanup_dhcp=false
method: DELETE
response:
body: ""
@@ -6842,7 +6974,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:32 GMT
+ - Fri, 08 Dec 2023 16:12:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6852,7 +6984,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a68d68ac-8408-4ea4-897c-f4ff7e53bc41
+ - 31176acd-1467-40cd-90c0-87f86d280f39
status: 204 No Content
code: 204
duration: ""
@@ -6863,10 +6995,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"address":null,"created_at":"2023-11-13T13:58:46.412374Z","dhcp":{"address":"192.168.0.1","created_at":"2023-11-13T13:58:39.400750Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-11-13T13:58:39.400750Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","ipam_config":null,"mac_address":"02:00:00:14:BD:9C","private_network_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","status":"detaching","updated_at":"2023-11-13T14:04:32.361010Z","zone":"fr-par-1"}'
+ body: '{"address":null,"created_at":"2023-12-08T16:08:00.218382Z","dhcp":{"address":"192.168.0.1","created_at":"2023-12-08T16:07:53.419634Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-12-08T16:07:53.419634Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","ipam_config":null,"mac_address":"02:00:00:15:4E:CA","private_network_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","status":"detaching","updated_at":"2023-12-08T16:12:38.161679Z","zone":"fr-par-1"}'
headers:
Content-Length:
- "1000"
@@ -6875,7 +7007,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:32 GMT
+ - Fri, 08 Dec 2023 16:12:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6885,7 +7017,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 116b0534-d383-4ff2-b48b-7467a722251f
+ - 9af0eedb-bd7f-4e07-8c73-01653e1982d8
status: 200 OK
code: 200
duration: ""
@@ -6896,10 +7028,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -6908,7 +7040,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6918,7 +7050,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b7865ec9-4a1b-48dc-9867-663b8210b89e
+ - 6da8a467-1896-4f0d-9808-fc6a51d11979
status: 404 Not Found
code: 404
duration: ""
@@ -6929,10 +7061,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:55.989598Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:09.301209Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- "978"
@@ -6941,7 +7073,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6951,7 +7083,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0729c1e0-e8a4-466c-a243-eee6e45fad6d
+ - 6156c43c-4404-48b5-b8d8-ad8f07724478
status: 200 OK
code: 200
duration: ""
@@ -6962,10 +7094,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T13:58:55.989598Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:08:09.301209Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- "978"
@@ -6974,7 +7106,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6984,7 +7116,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 99d6a3f0-1107-429a-9a49-49f1bc4d7175
+ - 4b15f858-84d4-487d-8215-6500c2c29f76
status: 200 OK
code: 200
duration: ""
@@ -6995,7 +7127,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/d5a14f97-3df0-40ed-8173-f6138ded8f52
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/c6945882-76f3-4d6c-95c6-cd87591c7a63
method: DELETE
response:
body: ""
@@ -7005,7 +7137,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7015,7 +7147,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22037cae-d899-4e5d-9d9d-8750a69178e1
+ - 041d24ba-9c3f-4066-8e0f-3f3282586a92
status: 204 No Content
code: 204
duration: ""
@@ -7026,7 +7158,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459?cleanup_dhcp=false
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6?cleanup_dhcp=false
method: DELETE
response:
body: ""
@@ -7036,7 +7168,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7046,7 +7178,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 284bb7c3-e169-4296-a05c-da547fd272d0
+ - acf68758-7a1a-4be6-bbc5-2714bd9b38fc
status: 204 No Content
code: 204
duration: ""
@@ -7057,10 +7189,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-11-13T13:58:40.056542Z","gateway_networks":[],"id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","ip":{"address":"51.15.214.66","created_at":"2023-11-13T13:58:40.018551Z","gateway_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","id":"9d0f7d75-592b-4f39-93c8-4847bde4ddee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"66-214-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-11-13T13:58:40.018551Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-11-13T14:04:37.592514Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
+ body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-12-08T16:07:54.098087Z","gateway_networks":[],"id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","ip":{"address":"51.15.192.19","created_at":"2023-12-08T16:07:54.069687Z","gateway_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","id":"7a3300cd-b6ea-4951-8bce-e0b47ff3c763","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"19-192-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-12-08T16:07:54.069687Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-12-08T16:12:43.446881Z","upstream_dns_servers":[],"version":"0.6.1","zone":"fr-par-1"}'
headers:
Content-Length:
- "979"
@@ -7069,7 +7201,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7079,7 +7211,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66e6be7f-8194-40ee-b892-a2862f9ea1f7
+ - be3cf54a-d6e2-4ccc-b56a-0f209f6d7923
status: 200 OK
code: 200
duration: ""
@@ -7090,7 +7222,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: DELETE
response:
body: ""
@@ -7100,7 +7232,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:38 GMT
+ - Fri, 08 Dec 2023 16:12:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7110,7 +7242,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e956cb1-d9f9-4bf8-ad57-6a9aca0e100d
+ - b7dc47e3-0d21-4855-aa0d-c422f458e364
status: 204 No Content
code: 204
duration: ""
@@ -7121,10 +7253,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"message":"resource is not found","resource":"gateway","resource_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"gateway","resource_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7133,7 +7265,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7143,7 +7275,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3412d3bc-9ba5-42f3-a6d6-b999e57883e2
+ - 628f2a95-ccd6-42fd-9159-5d1eeb36798a
status: 404 Not Found
code: 404
duration: ""
@@ -7154,10 +7286,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a69311ee-4867-49c5-85da-c4633fb8693d
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a054df29-078f-4632-8288-65709a008b44
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"a69311ee-4867-49c5-85da-c4633fb8693d","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"a054df29-078f-4632-8288-65709a008b44","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -7166,7 +7298,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7176,7 +7308,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 049b7998-59de-4978-923b-5b913fab8008
+ - 4f41841b-72e1-49c4-877e-df9fb350c977
status: 404 Not Found
code: 404
duration: ""
@@ -7187,10 +7319,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a253704d-993c-4193-8022-07a711f0f014
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ed2745e1-bc0a-4bac-83d6-e83218ccaeb1
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"a253704d-993c-4193-8022-07a711f0f014","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"ed2745e1-bc0a-4bac-83d6-e83218ccaeb1","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7199,7 +7331,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7209,7 +7341,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 05d855d4-e99a-4331-8256-7a0b7381bfe6
+ - 95ecdcf4-b378-4c4e-a3a1-c99f6806c878
status: 404 Not Found
code: 404
duration: ""
@@ -7220,10 +7352,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b6bc61b5-446f-48ed-b273-d6aa67dd43e2
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/09ecaaa5-e71b-4f7b-b030-d72608774dfe
method: GET
response:
- body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b6bc61b5-446f-48ed-b273-d6aa67dd43e2","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"09ecaaa5-e71b-4f7b-b030-d72608774dfe","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -7232,7 +7364,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7242,7 +7374,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae69d269-bc0b-4312-9f91-1fd220deacf1
+ - d673d637-3f05-4594-a613-66c4834ce9cd
status: 404 Not Found
code: 404
duration: ""
@@ -7253,10 +7385,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/d5a14f97-3df0-40ed-8173-f6138ded8f52
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/c6945882-76f3-4d6c-95c6-cd87591c7a63
method: GET
response:
- body: '{"message":"resource is not found","resource":"dhcp","resource_id":"d5a14f97-3df0-40ed-8173-f6138ded8f52","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"dhcp","resource_id":"c6945882-76f3-4d6c-95c6-cd87591c7a63","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -7265,7 +7397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7275,7 +7407,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c328c9e6-d7eb-4b3f-83f5-ec9033c240f3
+ - 52a9f86d-fc18-497f-a9d3-38907602e841
status: 404 Not Found
code: 404
duration: ""
@@ -7286,10 +7418,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4eae3d30-edfe-40b3-b67e-50b9760f2459
+ url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6
method: GET
response:
- body: '{"message":"resource is not found","resource":"gateway","resource_id":"4eae3d30-edfe-40b3-b67e-50b9760f2459","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"gateway","resource_id":"8c4f9dfb-970a-4810-bb88-ec2afd4a6ef6","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7298,7 +7430,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7308,7 +7440,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 08ca247d-a310-4d78-8cd1-10f99dca9200
+ - 7a8575bf-d4ad-44b8-8161-952b573c1c52
status: 404 Not Found
code: 404
duration: ""
@@ -7319,10 +7451,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/201d62ac-4232-462f-b8a8-e5767d25d71e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6cf0d5d-0053-4b19-9698-02db2e43c296
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"201d62ac-4232-462f-b8a8-e5767d25d71e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"d6cf0d5d-0053-4b19-9698-02db2e43c296","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -7331,7 +7463,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:42 GMT
+ - Fri, 08 Dec 2023 16:12:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7341,7 +7473,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a547d7f2-fa6a-4163-a318-b4828d941d66
+ - 5fd5ab07-8e14-4a45-be8d-fbb629295ada
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml
index c0ebbfa7cd..2cf0481371 100644
--- a/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df20cb54-4d52-4127-b419-7016fb5e09fe
+ - 1c7d833f-9558-4e5c-ae70-e88799e03c52
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:52:12.541187Z","dhcp_enabled":true,"id":"b0f61662-2be0-45f7-9348-462f77e21e73","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:12.541187Z","id":"dd4a2384-4ff8-4592-8b5c-6af909f6f789","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:52:12.541187Z"},{"created_at":"2023-11-13T13:52:12.541187Z","id":"b9483813-0f12-4103-a33a-d9b47b2ebe46","subnet":"fd63:256c:45f7:f41d::/64","updated_at":"2023-11-13T13:52:12.541187Z"}],"tags":[],"updated_at":"2023-11-13T13:52:12.541187Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.160064Z","dhcp_enabled":true,"id":"d935b68d-a669-42f6-a76c-753f89085dcc","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.160064Z","id":"d3c74f48-9dc9-4104-a150-3e5720376862","subnet":"172.16.20.0/22","updated_at":"2023-12-08T15:58:32.160064Z"},{"created_at":"2023-12-08T15:58:32.160064Z","id":"72a1d05c-21ac-4366-b14b-d0c1f3df700b","subnet":"fd63:256c:45f7:162d::/64","updated_at":"2023-12-08T15:58:32.160064Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.160064Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b37394d-f818-423f-909f-bc49b4ce20cf
+ - dd0a869e-c10a-4a33-9a41-673dfd3fdd9b
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b0f61662-2be0-45f7-9348-462f77e21e73
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d935b68d-a669-42f6-a76c-753f89085dcc
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:12.541187Z","dhcp_enabled":true,"id":"b0f61662-2be0-45f7-9348-462f77e21e73","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:12.541187Z","id":"dd4a2384-4ff8-4592-8b5c-6af909f6f789","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:52:12.541187Z"},{"created_at":"2023-11-13T13:52:12.541187Z","id":"b9483813-0f12-4103-a33a-d9b47b2ebe46","subnet":"fd63:256c:45f7:f41d::/64","updated_at":"2023-11-13T13:52:12.541187Z"}],"tags":[],"updated_at":"2023-11-13T13:52:12.541187Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.160064Z","dhcp_enabled":true,"id":"d935b68d-a669-42f6-a76c-753f89085dcc","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.160064Z","id":"d3c74f48-9dc9-4104-a150-3e5720376862","subnet":"172.16.20.0/22","updated_at":"2023-12-08T15:58:32.160064Z"},{"created_at":"2023-12-08T15:58:32.160064Z","id":"72a1d05c-21ac-4366-b14b-d0c1f3df700b","subnet":"fd63:256c:45f7:162d::/64","updated_at":"2023-12-08T15:58:32.160064Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.160064Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,7 +102,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 73ba9142-8ccb-426a-bf71-9962f9abd1e7
+ - 25007f7f-8afc-4d7d-9f29-d02fd6b7e121
status: 200 OK
code: 200
duration: ""
@@ -129,7 +129,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -139,12 +139,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 334bbf2a-ea59-4e04-b01e-5be16cd0650c
+ - b795d93b-d4cf-4e6e-8c3a-a79d2d02ea49
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-size","description":"","tags":null,"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":true,"maintenance_window":{"start_hour":12,"day":"monday"}},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-size","description":"","tags":null,"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":true,"maintenance_window":{"start_hour":12,"day":"monday"}},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc"}'
form: {}
headers:
Content-Type:
@@ -155,7 +155,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442239780Z","created_at":"2023-11-13T13:52:13.442239780Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:52:13.452796501Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639123807Z","created_at":"2023-12-08T15:58:33.639123807Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-12-08T15:58:33.651127096Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1458"
@@ -164,7 +164,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -174,7 +174,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 36a617c9-d441-43fd-9a64-277812b1f8ab
+ - 8aefec1b-aeff-4d0c-8821-1da45741b59a
status: 200 OK
code: 200
duration: ""
@@ -185,10 +185,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:52:13.452797Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-12-08T15:58:33.651127Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1449"
@@ -197,7 +197,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -207,7 +207,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8692275f-3e21-44d2-aaac-c05a23090656
+ - 3e17d75e-2db3-4d9e-80e4-ac264ee09613
status: 200 OK
code: 200
duration: ""
@@ -218,10 +218,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:52:17.982853Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-12-08T15:58:35.301677Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1454"
@@ -230,7 +230,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -240,7 +240,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 130c98ce-60c6-4c17-ad15-75552dd29ba3
+ - 4bab5d65-a4ac-4ac1-9fad-4e9b64c36471
status: 200 OK
code: 200
duration: ""
@@ -251,10 +251,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:52:17.982853Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-12-08T15:58:35.301677Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1454"
@@ -263,7 +263,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -273,7 +273,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 45841bb3-65a7-480b-9ba9-e51566e1e502
+ - 13ba93b7-d8ac-4672-8df4-033e5569cd9e
status: 200 OK
code: 200
duration: ""
@@ -284,10 +284,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSSmVFNUdiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFbDRUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVdExDbFpRVUVNeWNrZHlhbEpWTDNVeWMzQTRPRWsxTW5sWUwyVXphazlxUzFNclkzSm5MM1ZRTm1WamVFd3pLMmxXYXpGblFXTnFURmxVVFVaaFpsUjNRbG9LVGpSb1FXZFRVRTVqT0U5T05VYzNaUzlQT1hSVVVXNXBNRTlCZDBGT2J6UjRUM1ZHY0hKR1VrNVBUWHBXZUdOSlMxQlRNV1Z6VFUwMWEyOURaMGdyVEFwd2VESkxTM1EyUkRSMGFuZzNhSE56WWpGUU4wTm9hWGh5WTBaTVNtRmlkR2RIV1N0RldqUjViMk5oZEVGNGF6WjFORzlvTUZwc04wbHdUVmR1Y3poNUNsbERTVU5SZFc5bFpETnZlall4WXpWaFR6UnRXa3BYVjI1Qk9VTktOMlZZVUZCdEwwNXdRbWQ2WTNjeU1tUXdVVlY0YlZkTFJtdEpRbVp0U1V0S2RGVUtZaXN6VVU5dlp6VlVVbVJJY21SVmJHeDZOMGRKUlRkdE1qQmpkbWRhU2xkdGNGRjNZVGhUTmtGQ01XdGhLMVZSVDBWc01XMHJhMk5YZDFKVFEzTXdiQXBtTmxOMVRIUmFhMnhCYTFwUGMzQTFOMXBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpPUlU1V1J5ODJkRzFsY1ZnM1pHeG1XV1pWTVZsRFRYbzRjV2ROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYUM5MVNGSnVlbUp4VERSNVFVRm1SMGxqYzI1UEwwUXhXalpGYW1Fd2RYbDRLMFUxY0VORFZrTkNZV2hNYXpaWE5RbzNVVTQxV0dwSWFua3lNREprV0haS1pVVkVPVmRYTVU1RGQyOXdVV0Z3UTI4eFpEbEpZMmR0UzI5clZtRlFWVzgxWjJjNWN5dHFRaXRFYlRFMlREQlVDa3RCTWxweFdFRklWMDFSTW1NNWRXUXlUSGc0U1RWT1IyWktVRW93VlV0U1NrbHRPRkJpWlhOcmVVUjZXRWxMUTFkNlQxazRZVXB3YkdzNGFHZzNSbE1LYlRCbk9GY3lUa0ZHV1VSTmIwaHRjMFJSZG10RkszRnZjU3N6ZFdGR1JUSTBRelJNV0RKMVZFMXJTWEpHSzFVd0syNU9SMlJuTkdoVWJXYzRlSFpKYndwaVlXOHlWSGx3SzNsd04xQlFNbTR2TkVGa1RXRkNjbEJvVnpCU1l6TmhUVzlSYjFScVRsaFRXVWxvVDFoMVFUSkVUbVJHZDNCWVNsVmFWRmxrTURkcUNubzBaWE5EU1RGR1FsRkRVWE5wTUdaRVRtNXhPRUpYTld3eVpFZHJiemxMVTAxR1V3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9lY2QwZDI3OC05NWQwLTQ1ZGMtOGY2Yi03MmJkYjcyODQ1YzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYRGg0RGl4SkxpRUxJMmhsUEpSMjM1VHY2eVlBODZZQjdVTlF0WTN3OVR5dmM2NjlyWHoyeGRmSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlREQnBDbFV2TDNONGVHbG1OR293WVdSRFJqUkRWRGxvYVZoNU1GcE1iRUppVm01RFJEa3lkalp2WmtabVpUZHVNVkpPYjFaM2FUbGliQzlYV2pjdlRTdFpVRzBLTTJoMk4zSmthbFJQZVZoSk5WSmxZWHB5YjJ4RFUzaHJlWEZRT0U5U2JGbzJVbGR2V0dOVmNrdGtjMWRqTkV0a1dHUkVRWGhQTlRkM1FYTldSamd4TkFwVGJqQnZSVmw2UVZVelpUSnFRWFJvU0hWTGNIcGhNRkkzSzA5TlpXeElaRTg1YURCT1UwMXNRME41VkZkNlIxRnlkRTlUYW1WNGFGSnViamhDT1hFMENua3Zja00xTmxFeVVIZGlWRkJpVkROeFdUSjRVbmR4YTBGc1N6UlNiVXN2YVZKTWN6bHhhM1p3VnpGVWVsQkRTMmw2VlRVclZtUXpZWGhMWVV4RmFtMEtVRkkwWlZCc05saFFSMUl5VkdOamREQnRZbUYxZVdwcVRGUkpORUo1YmxwR1ZXZGFWbEpCWXpsbFRrdG1RVm94WmtOQlRHaDNRMmt5WjJKMFRYcHpUQW92YUZSRGJWZExXVk5rUmk5NlEzZHVjVGRGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVEdWNFJGRnNSeXRUVG05U2RFNW1SVTVIV1dOSFlqTnBZa2xOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTJsdFIxVmxSVzlLUm10aWVIbEtiMnhIZWt0U1RVaFhSRXBWV1RVMGFFZFNibGw1UjJWT1MzaHJRMlJJYTA5amJncGphbFpYWVZReWFYaFVUalk0ZFRkYWMzVXJaa3BCTTBKMmNVcHhVamhsTTNReU4wNWtORFpzVkN0aFUwd3JibEJ5ZUU0M0x6STFUMDFKUldSRVExazNDamh3VmxaemIwUlVjMDVFWWpRMk5TdGpZWE5yZEROV1V6ZGxTMmwzWlROQk5YQXhTMjl4ZWxoU09XWkJhV0pqZW5GSkwyY3pVREpoVkRsWE5WRXJURkVLZUZaTU0yeHdRbE5uWlhsdFprYzNURWhOUVhONFpUWXlXR0Y1TjJKSVJHVmxWQ3QzTUU1MFdpOHZORVl2ZVZGcVZITTJXV1pPWVc5SWJGWTRiV2xLYmdwVFFYUnpha0pWWkZodFRtMXNlbU5XWW5sYU5rMVVNbXRVUnl0UFJqQldORlJrYjFGVlpuTlVOR1ZYYmtGeU1rOUllSEZ1TTNwSmFIVm5Uak5pZEUxMkNscDFSbnBrWjFsNVFucHdUVUpCWVZSUlFUWk1hekF4ZFc1SE5FOUNVSGhHT0dRemVBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xMGJiYjdlOC1lNWY1LTQwM2YtYjdiOC0zN2JmNDdmNTJhZjQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjNUxqVm5Tb3VlN0NrZVBGRkNnV0RxaDBSZFNtaVZZaW1FdFpXUUVYajdHUURiNDFBVWMyYlpadA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -296,7 +296,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -306,7 +306,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 354777f0-1140-4a13-ba82-c3b4c5da1e49
+ - 5ba2edb0-6f28-419c-9902-a4ae3460ff64
status: 200 OK
code: 200
duration: ""
@@ -317,10 +317,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:52:17.982853Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-12-08T15:58:35.301677Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1454"
@@ -329,7 +329,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -339,7 +339,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df4df9c0-dea7-4482-9b1a-fa5622175b1b
+ - 0829daba-cb24-48ba-b7a9-b20f01e91449
status: 200 OK
code: 200
duration: ""
@@ -352,10 +352,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/pools
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/pools
method: POST
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919840937Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076258887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "618"
@@ -364,7 +364,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:19 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -374,7 +374,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c4d032f9-dd7f-4893-8d91-48c1c467ee16
+ - 79c979ca-33c0-4149-93f8-f9e7772939bc
status: 200 OK
code: 200
duration: ""
@@ -385,10 +385,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:19 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -407,7 +407,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7a839eec-ae0e-419d-82f8-042d901900b5
+ - ab87e08f-cfef-4305-9d3f-b2cd1a087d8e
status: 200 OK
code: 200
duration: ""
@@ -418,10 +418,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -430,7 +430,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:24 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -440,7 +440,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 89c8286c-b011-42be-96db-5d00cca7d7ee
+ - 2f97f650-1db5-4172-8f2b-6c933ef4200f
status: 200 OK
code: 200
duration: ""
@@ -451,10 +451,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -463,7 +463,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:29 GMT
+ - Fri, 08 Dec 2023 15:58:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -473,7 +473,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e44348b-a15f-4cfc-8b96-f231455299b4
+ - e71e762e-2791-490a-9d42-85e01a191ac8
status: 200 OK
code: 200
duration: ""
@@ -484,10 +484,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -496,7 +496,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:34 GMT
+ - Fri, 08 Dec 2023 15:58:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -506,7 +506,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 77df1a4d-7976-47f7-9f63-a1e6150bf027
+ - c1efd3df-1c48-4939-8d79-58be58cc4383
status: 200 OK
code: 200
duration: ""
@@ -517,10 +517,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -529,7 +529,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:39 GMT
+ - Fri, 08 Dec 2023 15:59:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -539,7 +539,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 62b03e06-f7c3-4c34-aadd-348554e61202
+ - 520ee49b-9531-47a9-9d3c-fc20cb1a2f36
status: 200 OK
code: 200
duration: ""
@@ -550,10 +550,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -562,7 +562,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:44 GMT
+ - Fri, 08 Dec 2023 15:59:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -572,7 +572,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0b5d1f59-856d-4ca1-9138-a3597ee245ad
+ - 68430ecf-578d-4c77-8d4e-e75a953b2013
status: 200 OK
code: 200
duration: ""
@@ -583,10 +583,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -595,7 +595,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:49 GMT
+ - Fri, 08 Dec 2023 15:59:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -605,7 +605,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c6198b31-a750-4181-8434-ded8dfce95c9
+ - 7552e039-2c2a-48b3-a9d6-edb6434b7ac8
status: 200 OK
code: 200
duration: ""
@@ -616,10 +616,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -628,7 +628,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:54 GMT
+ - Fri, 08 Dec 2023 15:59:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -638,7 +638,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0ec45380-c81f-4b96-bb8b-25b208c919e0
+ - a35e9464-45a7-4af8-8eea-027b22b799b8
status: 200 OK
code: 200
duration: ""
@@ -649,10 +649,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -661,7 +661,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:59 GMT
+ - Fri, 08 Dec 2023 15:59:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -671,7 +671,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4652e3ce-1ac4-49e0-b576-9593e08b2261
+ - 00429a8d-74b0-4e95-9e42-3a6abf6f3885
status: 200 OK
code: 200
duration: ""
@@ -682,10 +682,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -694,7 +694,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:04 GMT
+ - Fri, 08 Dec 2023 15:59:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -704,7 +704,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 31719f53-f553-470f-9a2a-1797a9a6afd2
+ - f03ee3f8-c1eb-4be9-b3b3-d9d5f3e659dd
status: 200 OK
code: 200
duration: ""
@@ -715,10 +715,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -727,7 +727,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:09 GMT
+ - Fri, 08 Dec 2023 15:59:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -737,7 +737,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fd4d50c8-2840-41c9-9fbb-07834b3e9772
+ - c68aa85c-8440-4b0a-8eb8-8d4aed3237fb
status: 200 OK
code: 200
duration: ""
@@ -748,10 +748,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -760,7 +760,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:14 GMT
+ - Fri, 08 Dec 2023 15:59:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -770,7 +770,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c874ee3-9cfb-47bd-bd9f-42c96ec6e044
+ - 39552dab-9dcb-4b3a-a1be-f4ee4993bb42
status: 200 OK
code: 200
duration: ""
@@ -781,10 +781,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -793,7 +793,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:20 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -803,7 +803,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6b064900-8194-4239-9cb0-fc46e3fceecb
+ - 2a7ccccb-0e77-42a8-87c6-1122603a5be6
status: 200 OK
code: 200
duration: ""
@@ -814,10 +814,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -826,7 +826,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:25 GMT
+ - Fri, 08 Dec 2023 15:59:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -836,7 +836,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 002878a9-c5f3-4715-9312-877764a5d5c5
+ - 74c6a54f-63e0-48f2-af0b-8e0e1f8810e1
status: 200 OK
code: 200
duration: ""
@@ -847,10 +847,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -859,7 +859,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:30 GMT
+ - Fri, 08 Dec 2023 15:59:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -869,7 +869,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 91dd0417-30d5-4a6b-8953-0b0e583909e6
+ - e6dc631f-365a-4b96-a3ed-d6015f8fc6de
status: 200 OK
code: 200
duration: ""
@@ -880,10 +880,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -892,7 +892,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:35 GMT
+ - Fri, 08 Dec 2023 15:59:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -902,7 +902,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3be27d80-82ed-459d-bd8a-155cd71e8381
+ - 35a57761-cfe6-4386-b60c-fc0ad56c99f2
status: 200 OK
code: 200
duration: ""
@@ -913,10 +913,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -925,7 +925,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:40 GMT
+ - Fri, 08 Dec 2023 16:00:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -935,7 +935,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 31d46308-98bf-4bd0-a390-abf376baa8a9
+ - 1af0bdb7-190a-4ee4-88c1-7320ef3ba5e3
status: 200 OK
code: 200
duration: ""
@@ -946,10 +946,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -958,7 +958,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:45 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -968,7 +968,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0227bc5-e762-40fb-a00d-09113c4046b1
+ - 282f0a3e-b483-463f-873b-a4ca6e385451
status: 200 OK
code: 200
duration: ""
@@ -979,10 +979,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -991,7 +991,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:50 GMT
+ - Fri, 08 Dec 2023 16:00:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1001,7 +1001,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 594b02c5-45ae-47fb-8fe6-b80d6c39195b
+ - 2a11a1a9-42c0-4cee-8dfb-e3de6971be87
status: 200 OK
code: 200
duration: ""
@@ -1012,10 +1012,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1024,7 +1024,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:56 GMT
+ - Fri, 08 Dec 2023 16:00:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1034,7 +1034,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4511c97f-0a4f-478e-a7fb-25f670b836d4
+ - d1247bf8-e113-4310-9047-af0fa74311b4
status: 200 OK
code: 200
duration: ""
@@ -1045,10 +1045,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1057,7 +1057,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:01 GMT
+ - Fri, 08 Dec 2023 16:00:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1067,7 +1067,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e915e32-7588-4c3d-9a16-4b2ffef46aca
+ - 88dd17fd-5bf9-4ac5-b5c8-0dc7b767377d
status: 200 OK
code: 200
duration: ""
@@ -1078,10 +1078,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1090,7 +1090,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:06 GMT
+ - Fri, 08 Dec 2023 16:00:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1100,7 +1100,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f589d04-6e26-453b-981b-e62a187e093e
+ - 0485e589-36d8-48fe-825c-6e59e3ca3d4d
status: 200 OK
code: 200
duration: ""
@@ -1111,10 +1111,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1123,7 +1123,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:11 GMT
+ - Fri, 08 Dec 2023 16:00:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1133,7 +1133,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f9fa9a1c-3755-4d36-80ca-45f9805e91d0
+ - 270a8736-b189-4261-8dd5-0489d42bac00
status: 200 OK
code: 200
duration: ""
@@ -1144,10 +1144,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1156,7 +1156,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:16 GMT
+ - Fri, 08 Dec 2023 16:01:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1166,7 +1166,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e860db72-8ebd-4597-b4a2-9cdfdbeea0e5
+ - 9be88f11-a846-4087-9826-0cb63120836a
status: 200 OK
code: 200
duration: ""
@@ -1177,10 +1177,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1189,7 +1189,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:21 GMT
+ - Fri, 08 Dec 2023 16:01:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1199,7 +1199,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b31991ce-80c3-4f3f-a602-d411ab296eb2
+ - 74c62a65-efc8-4635-b60f-2eaa18176f87
status: 200 OK
code: 200
duration: ""
@@ -1210,10 +1210,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1222,7 +1222,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:26 GMT
+ - Fri, 08 Dec 2023 16:01:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1232,7 +1232,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee3fd982-4f60-4e6b-93d7-c5f3550ac141
+ - 0a1aa059-2de3-4d59-8ec7-738f68f63c14
status: 200 OK
code: 200
duration: ""
@@ -1243,10 +1243,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1255,7 +1255,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:32 GMT
+ - Fri, 08 Dec 2023 16:01:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1265,7 +1265,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7eee9aad-86b9-41c4-8da1-abc22d5ac03d
+ - 25c1741b-aba2-41fa-96de-cdd7f585fff6
status: 200 OK
code: 200
duration: ""
@@ -1276,10 +1276,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1288,7 +1288,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:37 GMT
+ - Fri, 08 Dec 2023 16:01:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1298,7 +1298,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 95f72d7c-f034-4a31-a11f-1b87ed58676a
+ - d7ad4e4e-b177-4bcc-af74-f978eeaa3953
status: 200 OK
code: 200
duration: ""
@@ -1309,10 +1309,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1321,7 +1321,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:42 GMT
+ - Fri, 08 Dec 2023 16:01:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1331,7 +1331,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee60a32b-9081-4d69-8c09-48ad601f66d1
+ - ebc4def1-e292-49b8-bf86-a38f5a39da88
status: 200 OK
code: 200
duration: ""
@@ -1342,10 +1342,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1354,7 +1354,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:47 GMT
+ - Fri, 08 Dec 2023 16:01:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1364,7 +1364,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ebee93d8-7827-4a60-8dea-1c54738e1dc1
+ - 748675a2-8a0c-408d-93a2-9cc04ee3f9d7
status: 200 OK
code: 200
duration: ""
@@ -1375,10 +1375,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1387,7 +1387,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:52 GMT
+ - Fri, 08 Dec 2023 16:01:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1397,7 +1397,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f283c695-3f59-4986-a8eb-892bb5707868
+ - 87e93083-6762-4c05-bcd7-cfdd6fc5bd0c
status: 200 OK
code: 200
duration: ""
@@ -1408,10 +1408,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1420,7 +1420,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:57 GMT
+ - Fri, 08 Dec 2023 16:01:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1430,7 +1430,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76f5efb6-409d-4922-808a-d24a7895579a
+ - c58bc4ae-c712-4cb7-b880-565e5557f678
status: 200 OK
code: 200
duration: ""
@@ -1441,10 +1441,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1453,7 +1453,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:02 GMT
+ - Fri, 08 Dec 2023 16:01:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1463,7 +1463,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a929b5e5-c42b-4d62-a54e-b20665b5214a
+ - 2cf2077e-8cd6-4fc1-b66b-edb702ef4c46
status: 200 OK
code: 200
duration: ""
@@ -1474,10 +1474,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1486,7 +1486,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:07 GMT
+ - Fri, 08 Dec 2023 16:01:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1496,7 +1496,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 129795ac-3a1c-4093-b684-527fbc5e4594
+ - 18a35d7d-8d0b-455b-8af5-7cd58da03f94
status: 200 OK
code: 200
duration: ""
@@ -1507,10 +1507,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1519,7 +1519,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:12 GMT
+ - Fri, 08 Dec 2023 16:02:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1529,7 +1529,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c51ac6cf-a54e-45b2-929e-8976cd7c21e8
+ - 0a5575f9-28d3-44c9-9d0b-bb2dc1db7ffd
status: 200 OK
code: 200
duration: ""
@@ -1540,10 +1540,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1552,7 +1552,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:17 GMT
+ - Fri, 08 Dec 2023 16:02:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1562,7 +1562,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f9988428-f326-4d7d-81fb-220b1ebd3ad1
+ - 8270e2d6-4f6f-46f7-b41d-08d1ad55efa7
status: 200 OK
code: 200
duration: ""
@@ -1573,10 +1573,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1585,7 +1585,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:22 GMT
+ - Fri, 08 Dec 2023 16:02:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1595,7 +1595,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f079124-28c1-498f-95a0-91b5157b9668
+ - 0f71a8ea-d625-4fcf-a317-78940993408d
status: 200 OK
code: 200
duration: ""
@@ -1606,10 +1606,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1618,7 +1618,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:27 GMT
+ - Fri, 08 Dec 2023 16:02:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1628,7 +1628,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3327b8e0-a510-453a-bb59-4c3c0a12aa92
+ - 28d34827-837f-4d90-914e-8e4ee45e4215
status: 200 OK
code: 200
duration: ""
@@ -1639,10 +1639,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1651,7 +1651,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:32 GMT
+ - Fri, 08 Dec 2023 16:02:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1661,7 +1661,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c56be0d-42d1-4394-a82e-702b35f33ce3
+ - 753012aa-b35e-4b68-ad51-20036f991920
status: 200 OK
code: 200
duration: ""
@@ -1672,10 +1672,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1684,7 +1684,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:38 GMT
+ - Fri, 08 Dec 2023 16:02:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1694,7 +1694,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 907c91c7-7b0b-4a76-ad4c-503d8e4b8cb6
+ - dc566d02-77d6-4cdd-8970-bda1f197c84a
status: 200 OK
code: 200
duration: ""
@@ -1705,10 +1705,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1717,7 +1717,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:43 GMT
+ - Fri, 08 Dec 2023 16:02:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1727,7 +1727,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 31bdeea9-a517-4f55-82e4-a4fb9f48ffa3
+ - 1c24f6c6-bc88-4af3-bbba-77b9c9ceb3ae
status: 200 OK
code: 200
duration: ""
@@ -1738,10 +1738,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1750,7 +1750,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:49 GMT
+ - Fri, 08 Dec 2023 16:02:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1760,7 +1760,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 903afb5a-737a-4109-9d75-5476a923c865
+ - c4403c65-10aa-466b-9a98-bc3e22086bef
status: 200 OK
code: 200
duration: ""
@@ -1771,10 +1771,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1783,7 +1783,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:54 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1793,7 +1793,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e11131d6-0c21-4659-9f64-daba78da361d
+ - 7b08009e-3a51-4452-8600-308105baa56b
status: 200 OK
code: 200
duration: ""
@@ -1804,10 +1804,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1816,7 +1816,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:59 GMT
+ - Fri, 08 Dec 2023 16:02:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1826,7 +1826,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1cb34b42-549a-4932-9580-aab50787de39
+ - 4ceece75-8b13-48ab-9c89-24356f99470e
status: 200 OK
code: 200
duration: ""
@@ -1837,10 +1837,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T15:58:39.076259Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "615"
@@ -1849,7 +1849,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:04 GMT
+ - Fri, 08 Dec 2023 16:02:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1859,7 +1859,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2756a42-368f-4b6f-8d9f-402fdcc12171
+ - 64830a41-833f-4e38-86c1-50d7a8246179
status: 200 OK
code: 200
duration: ""
@@ -1870,19 +1870,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:55.102982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "615"
+ - "613"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:09 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1892,7 +1892,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ff44d7d-fe1c-47d3-baca-91b24c965ed5
+ - 09d9bca9-356e-40f0-bd4c-70f2e1e6835f
status: 200 OK
code: 200
duration: ""
@@ -1903,19 +1903,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:00:17.654018Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "615"
+ - "1446"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:14 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1925,7 +1925,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4041ea7d-9a28-4f45-b761-b6886bb8e50b
+ - 553bdbc1-67ae-4aa6-aed9-e59d78ba4c10
status: 200 OK
code: 200
duration: ""
@@ -1936,19 +1936,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:52:18.919841Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:55.102982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "615"
+ - "613"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1958,7 +1958,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8b832263-2850-42a9-9620-dd97ebf36fab
+ - babe901e-3624-4f4d-a9ad-534032e9bb89
status: 200 OK
code: 200
duration: ""
@@ -1969,19 +1969,52 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/nodes?order_by=created_at_asc&page=1&pool_id=99a44571-d04f-4039-8279-a6767dbec598&status=unknown
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:23.938752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:29.580871Z","error_message":null,"id":"926fb505-0ae1-4f7b-a78c-9da6f3dadf95","name":"scw-test-pool-size-pool-926fb5050ae14f7ba78c9d","pool_id":"99a44571-d04f-4039-8279-a6767dbec598","provider_id":"scaleway://instance/fr-par-1/f87af6f8-b4b8-4807-8793-dd7ac5d4a36e","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:02:55.091021Z"}],"total_count":1}'
headers:
Content-Length:
- - "613"
+ - "659"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:02:55 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 96b80976-2a7b-405c-bb08-b2a5c6ce1435
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d935b68d-a669-42f6-a76c-753f89085dcc
+ method: GET
+ response:
+ body: '{"created_at":"2023-12-08T15:58:32.160064Z","dhcp_enabled":true,"id":"d935b68d-a669-42f6-a76c-753f89085dcc","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.160064Z","id":"d3c74f48-9dc9-4104-a150-3e5720376862","subnet":"172.16.20.0/22","updated_at":"2023-12-08T15:58:32.160064Z"},{"created_at":"2023-12-08T15:58:32.160064Z","id":"72a1d05c-21ac-4366-b14b-d0c1f3df700b","subnet":"fd63:256c:45f7:162d::/64","updated_at":"2023-12-08T15:58:32.160064Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.160064Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ headers:
+ Content-Length:
+ - "715"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:02:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1991,7 +2024,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8841fd71-f983-4bf6-8b52-01733f2172be
+ - 9e516c98-a5c8-4288-92d6-acf7cfcdab0f
status: 200 OK
code: 200
duration: ""
@@ -2002,10 +2035,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:54:13.346740Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:00:17.654018Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1446"
@@ -2014,7 +2047,40 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:02:56 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5a35ab0f-ec38-4eac-8dbb-97ec6eedc2d2
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/kubeconfig
+ method: GET
+ response:
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlREQnBDbFV2TDNONGVHbG1OR293WVdSRFJqUkRWRGxvYVZoNU1GcE1iRUppVm01RFJEa3lkalp2WmtabVpUZHVNVkpPYjFaM2FUbGliQzlYV2pjdlRTdFpVRzBLTTJoMk4zSmthbFJQZVZoSk5WSmxZWHB5YjJ4RFUzaHJlWEZRT0U5U2JGbzJVbGR2V0dOVmNrdGtjMWRqTkV0a1dHUkVRWGhQTlRkM1FYTldSamd4TkFwVGJqQnZSVmw2UVZVelpUSnFRWFJvU0hWTGNIcGhNRkkzSzA5TlpXeElaRTg1YURCT1UwMXNRME41VkZkNlIxRnlkRTlUYW1WNGFGSnViamhDT1hFMENua3Zja00xTmxFeVVIZGlWRkJpVkROeFdUSjRVbmR4YTBGc1N6UlNiVXN2YVZKTWN6bHhhM1p3VnpGVWVsQkRTMmw2VlRVclZtUXpZWGhMWVV4RmFtMEtVRkkwWlZCc05saFFSMUl5VkdOamREQnRZbUYxZVdwcVRGUkpORUo1YmxwR1ZXZGFWbEpCWXpsbFRrdG1RVm94WmtOQlRHaDNRMmt5WjJKMFRYcHpUQW92YUZSRGJWZExXVk5rUmk5NlEzZHVjVGRGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVEdWNFJGRnNSeXRUVG05U2RFNW1SVTVIV1dOSFlqTnBZa2xOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTJsdFIxVmxSVzlLUm10aWVIbEtiMnhIZWt0U1RVaFhSRXBWV1RVMGFFZFNibGw1UjJWT1MzaHJRMlJJYTA5amJncGphbFpYWVZReWFYaFVUalk0ZFRkYWMzVXJaa3BCTTBKMmNVcHhVamhsTTNReU4wNWtORFpzVkN0aFUwd3JibEJ5ZUU0M0x6STFUMDFKUldSRVExazNDamh3VmxaemIwUlVjMDVFWWpRMk5TdGpZWE5yZEROV1V6ZGxTMmwzWlROQk5YQXhTMjl4ZWxoU09XWkJhV0pqZW5GSkwyY3pVREpoVkRsWE5WRXJURkVLZUZaTU0yeHdRbE5uWlhsdFprYzNURWhOUVhONFpUWXlXR0Y1TjJKSVJHVmxWQ3QzTUU1MFdpOHZORVl2ZVZGcVZITTJXV1pPWVc5SWJGWTRiV2xLYmdwVFFYUnpha0pWWkZodFRtMXNlbU5XWW5sYU5rMVVNbXRVUnl0UFJqQldORlJrYjFGVlpuTlVOR1ZYYmtGeU1rOUllSEZ1TTNwSmFIVm5Uak5pZEUxMkNscDFSbnBrWjFsNVFucHdUVUpCWVZSUlFUWk1hekF4ZFc1SE5FOUNVSGhHT0dRemVBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xMGJiYjdlOC1lNWY1LTQwM2YtYjdiOC0zN2JmNDdmNTJhZjQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjNUxqVm5Tb3VlN0NrZVBGRkNnV0RxaDBSZFNtaVZZaW1FdFpXUUVYajdHUURiNDFBVWMyYlpadA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ headers:
+ Content-Length:
+ - "2606"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:02:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2024,7 +2090,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 814e0b8a-307b-4256-8265-82f1312e359c
+ - fd688bb4-e1d1-47fa-8d69-c1f2f7aadcaa
status: 200 OK
code: 200
duration: ""
@@ -2035,10 +2101,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:23.938752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:55.102982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "613"
@@ -2047,7 +2113,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:02:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2057,7 +2123,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c2cc981-2c65-4b5d-b44d-578c38bd0f3f
+ - 2a2e81fe-25dd-48c8-8b4b-4d3f5688488c
status: 200 OK
code: 200
duration: ""
@@ -2068,19 +2134,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/nodes?order_by=created_at_asc&page=1&pool_id=d62babd0-e846-403f-8db6-2d0b8337aba1&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/nodes?order_by=created_at_asc&page=1&pool_id=99a44571-d04f-4039-8279-a6767dbec598&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:29.924465Z","error_message":null,"id":"003b12c7-ec07-4494-9bd7-3321fae087ad","name":"scw-test-pool-size-pool-003b12c7ec0744949bd733","pool_id":"d62babd0-e846-403f-8db6-2d0b8337aba1","provider_id":"scaleway://instance/fr-par-1/70ea6cea-258f-4050-bb83-0853c72a6bb1","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:23.924018Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:29.580871Z","error_message":null,"id":"926fb505-0ae1-4f7b-a78c-9da6f3dadf95","name":"scw-test-pool-size-pool-926fb5050ae14f7ba78c9d","pool_id":"99a44571-d04f-4039-8279-a6767dbec598","provider_id":"scaleway://instance/fr-par-1/f87af6f8-b4b8-4807-8793-dd7ac5d4a36e","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:02:55.091021Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:02:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2090,7 +2156,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fe0f2035-e38a-46a6-9a32-6e855c11c255
+ - e2568575-f217-4659-a0fa-cd35fd9eef14
status: 200 OK
code: 200
duration: ""
@@ -2101,10 +2167,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b0f61662-2be0-45f7-9348-462f77e21e73
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d935b68d-a669-42f6-a76c-753f89085dcc
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:12.541187Z","dhcp_enabled":true,"id":"b0f61662-2be0-45f7-9348-462f77e21e73","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:12.541187Z","id":"dd4a2384-4ff8-4592-8b5c-6af909f6f789","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:52:12.541187Z"},{"created_at":"2023-11-13T13:52:12.541187Z","id":"b9483813-0f12-4103-a33a-d9b47b2ebe46","subnet":"fd63:256c:45f7:f41d::/64","updated_at":"2023-11-13T13:52:12.541187Z"}],"tags":[],"updated_at":"2023-11-13T13:52:12.541187Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.160064Z","dhcp_enabled":true,"id":"d935b68d-a669-42f6-a76c-753f89085dcc","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.160064Z","id":"d3c74f48-9dc9-4104-a150-3e5720376862","subnet":"172.16.20.0/22","updated_at":"2023-12-08T15:58:32.160064Z"},{"created_at":"2023-12-08T15:58:32.160064Z","id":"72a1d05c-21ac-4366-b14b-d0c1f3df700b","subnet":"fd63:256c:45f7:162d::/64","updated_at":"2023-12-08T15:58:32.160064Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.160064Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -2113,7 +2179,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:25 GMT
+ - Fri, 08 Dec 2023 16:02:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2123,7 +2189,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eba9369b-8a68-4a82-82a3-421f3608b772
+ - c4ed829e-4f24-4a02-be54-071cd93861ef
status: 200 OK
code: 200
duration: ""
@@ -2134,10 +2200,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:54:13.346740Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:00:17.654018Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1446"
@@ -2146,7 +2212,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:25 GMT
+ - Fri, 08 Dec 2023 16:02:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2156,7 +2222,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8c4bda67-bff0-486f-9014-841677064bb9
+ - 9b672f0f-4052-4a9e-99f6-c15e002c8c3d
status: 200 OK
code: 200
duration: ""
@@ -2167,10 +2233,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSSmVFNUdiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFbDRUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVdExDbFpRVUVNeWNrZHlhbEpWTDNVeWMzQTRPRWsxTW5sWUwyVXphazlxUzFNclkzSm5MM1ZRTm1WamVFd3pLMmxXYXpGblFXTnFURmxVVFVaaFpsUjNRbG9LVGpSb1FXZFRVRTVqT0U5T05VYzNaUzlQT1hSVVVXNXBNRTlCZDBGT2J6UjRUM1ZHY0hKR1VrNVBUWHBXZUdOSlMxQlRNV1Z6VFUwMWEyOURaMGdyVEFwd2VESkxTM1EyUkRSMGFuZzNhSE56WWpGUU4wTm9hWGh5WTBaTVNtRmlkR2RIV1N0RldqUjViMk5oZEVGNGF6WjFORzlvTUZwc04wbHdUVmR1Y3poNUNsbERTVU5SZFc5bFpETnZlall4WXpWaFR6UnRXa3BYVjI1Qk9VTktOMlZZVUZCdEwwNXdRbWQ2WTNjeU1tUXdVVlY0YlZkTFJtdEpRbVp0U1V0S2RGVUtZaXN6VVU5dlp6VlVVbVJJY21SVmJHeDZOMGRKUlRkdE1qQmpkbWRhU2xkdGNGRjNZVGhUTmtGQ01XdGhLMVZSVDBWc01XMHJhMk5YZDFKVFEzTXdiQXBtTmxOMVRIUmFhMnhCYTFwUGMzQTFOMXBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpPUlU1V1J5ODJkRzFsY1ZnM1pHeG1XV1pWTVZsRFRYbzRjV2ROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYUM5MVNGSnVlbUp4VERSNVFVRm1SMGxqYzI1UEwwUXhXalpGYW1Fd2RYbDRLMFUxY0VORFZrTkNZV2hNYXpaWE5RbzNVVTQxV0dwSWFua3lNREprV0haS1pVVkVPVmRYTVU1RGQyOXdVV0Z3UTI4eFpEbEpZMmR0UzI5clZtRlFWVzgxWjJjNWN5dHFRaXRFYlRFMlREQlVDa3RCTWxweFdFRklWMDFSTW1NNWRXUXlUSGc0U1RWT1IyWktVRW93VlV0U1NrbHRPRkJpWlhOcmVVUjZXRWxMUTFkNlQxazRZVXB3YkdzNGFHZzNSbE1LYlRCbk9GY3lUa0ZHV1VSTmIwaHRjMFJSZG10RkszRnZjU3N6ZFdGR1JUSTBRelJNV0RKMVZFMXJTWEpHSzFVd0syNU9SMlJuTkdoVWJXYzRlSFpKYndwaVlXOHlWSGx3SzNsd04xQlFNbTR2TkVGa1RXRkNjbEJvVnpCU1l6TmhUVzlSYjFScVRsaFRXVWxvVDFoMVFUSkVUbVJHZDNCWVNsVmFWRmxrTURkcUNubzBaWE5EU1RGR1FsRkRVWE5wTUdaRVRtNXhPRUpYTld3eVpFZHJiemxMVTAxR1V3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9lY2QwZDI3OC05NWQwLTQ1ZGMtOGY2Yi03MmJkYjcyODQ1YzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYRGg0RGl4SkxpRUxJMmhsUEpSMjM1VHY2eVlBODZZQjdVTlF0WTN3OVR5dmM2NjlyWHoyeGRmSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlREQnBDbFV2TDNONGVHbG1OR293WVdSRFJqUkRWRGxvYVZoNU1GcE1iRUppVm01RFJEa3lkalp2WmtabVpUZHVNVkpPYjFaM2FUbGliQzlYV2pjdlRTdFpVRzBLTTJoMk4zSmthbFJQZVZoSk5WSmxZWHB5YjJ4RFUzaHJlWEZRT0U5U2JGbzJVbGR2V0dOVmNrdGtjMWRqTkV0a1dHUkVRWGhQTlRkM1FYTldSamd4TkFwVGJqQnZSVmw2UVZVelpUSnFRWFJvU0hWTGNIcGhNRkkzSzA5TlpXeElaRTg1YURCT1UwMXNRME41VkZkNlIxRnlkRTlUYW1WNGFGSnViamhDT1hFMENua3Zja00xTmxFeVVIZGlWRkJpVkROeFdUSjRVbmR4YTBGc1N6UlNiVXN2YVZKTWN6bHhhM1p3VnpGVWVsQkRTMmw2VlRVclZtUXpZWGhMWVV4RmFtMEtVRkkwWlZCc05saFFSMUl5VkdOamREQnRZbUYxZVdwcVRGUkpORUo1YmxwR1ZXZGFWbEpCWXpsbFRrdG1RVm94WmtOQlRHaDNRMmt5WjJKMFRYcHpUQW92YUZSRGJWZExXVk5rUmk5NlEzZHVjVGRGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVEdWNFJGRnNSeXRUVG05U2RFNW1SVTVIV1dOSFlqTnBZa2xOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTJsdFIxVmxSVzlLUm10aWVIbEtiMnhIZWt0U1RVaFhSRXBWV1RVMGFFZFNibGw1UjJWT1MzaHJRMlJJYTA5amJncGphbFpYWVZReWFYaFVUalk0ZFRkYWMzVXJaa3BCTTBKMmNVcHhVamhsTTNReU4wNWtORFpzVkN0aFUwd3JibEJ5ZUU0M0x6STFUMDFKUldSRVExazNDamh3VmxaemIwUlVjMDVFWWpRMk5TdGpZWE5yZEROV1V6ZGxTMmwzWlROQk5YQXhTMjl4ZWxoU09XWkJhV0pqZW5GSkwyY3pVREpoVkRsWE5WRXJURkVLZUZaTU0yeHdRbE5uWlhsdFprYzNURWhOUVhONFpUWXlXR0Y1TjJKSVJHVmxWQ3QzTUU1MFdpOHZORVl2ZVZGcVZITTJXV1pPWVc5SWJGWTRiV2xLYmdwVFFYUnpha0pWWkZodFRtMXNlbU5XWW5sYU5rMVVNbXRVUnl0UFJqQldORlJrYjFGVlpuTlVOR1ZYYmtGeU1rOUllSEZ1TTNwSmFIVm5Uak5pZEUxMkNscDFSbnBrWjFsNVFucHdUVUpCWVZSUlFUWk1hekF4ZFc1SE5FOUNVSGhHT0dRemVBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xMGJiYjdlOC1lNWY1LTQwM2YtYjdiOC0zN2JmNDdmNTJhZjQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjNUxqVm5Tb3VlN0NrZVBGRkNnV0RxaDBSZFNtaVZZaW1FdFpXUUVYajdHUURiNDFBVWMyYlpadA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -2179,7 +2245,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:25 GMT
+ - Fri, 08 Dec 2023 16:02:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2189,7 +2255,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3cee82f9-460c-402e-a10c-e0298a257277
+ - 5315623b-111e-4a7b-a87f-fa77a892c9a2
status: 200 OK
code: 200
duration: ""
@@ -2200,10 +2266,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:23.938752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:55.102982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "613"
@@ -2212,7 +2278,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:25 GMT
+ - Fri, 08 Dec 2023 16:02:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2222,7 +2288,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d1e61b64-7242-48e2-82fd-eaef349579ce
+ - d4312a91-a478-47ac-947d-f25576c283cc
status: 200 OK
code: 200
duration: ""
@@ -2233,19 +2299,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/nodes?order_by=created_at_asc&page=1&pool_id=d62babd0-e846-403f-8db6-2d0b8337aba1&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/nodes?order_by=created_at_asc&page=1&pool_id=99a44571-d04f-4039-8279-a6767dbec598&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:29.924465Z","error_message":null,"id":"003b12c7-ec07-4494-9bd7-3321fae087ad","name":"scw-test-pool-size-pool-003b12c7ec0744949bd733","pool_id":"d62babd0-e846-403f-8db6-2d0b8337aba1","provider_id":"scaleway://instance/fr-par-1/70ea6cea-258f-4050-bb83-0853c72a6bb1","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:23.924018Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:29.580871Z","error_message":null,"id":"926fb505-0ae1-4f7b-a78c-9da6f3dadf95","name":"scw-test-pool-size-pool-926fb5050ae14f7ba78c9d","pool_id":"99a44571-d04f-4039-8279-a6767dbec598","provider_id":"scaleway://instance/fr-par-1/f87af6f8-b4b8-4807-8793-dd7ac5d4a36e","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:02:55.091021Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:25 GMT
+ - Fri, 08 Dec 2023 16:02:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2255,7 +2321,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 677a8a65-29ef-412f-8a41-4d15e3ff5215
+ - 400ff409-8c88-47f9-94ab-e0827c638fad
status: 200 OK
code: 200
duration: ""
@@ -2266,10 +2332,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b0f61662-2be0-45f7-9348-462f77e21e73
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d935b68d-a669-42f6-a76c-753f89085dcc
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:12.541187Z","dhcp_enabled":true,"id":"b0f61662-2be0-45f7-9348-462f77e21e73","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:12.541187Z","id":"dd4a2384-4ff8-4592-8b5c-6af909f6f789","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:52:12.541187Z"},{"created_at":"2023-11-13T13:52:12.541187Z","id":"b9483813-0f12-4103-a33a-d9b47b2ebe46","subnet":"fd63:256c:45f7:f41d::/64","updated_at":"2023-11-13T13:52:12.541187Z"}],"tags":[],"updated_at":"2023-11-13T13:52:12.541187Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.160064Z","dhcp_enabled":true,"id":"d935b68d-a669-42f6-a76c-753f89085dcc","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.160064Z","id":"d3c74f48-9dc9-4104-a150-3e5720376862","subnet":"172.16.20.0/22","updated_at":"2023-12-08T15:58:32.160064Z"},{"created_at":"2023-12-08T15:58:32.160064Z","id":"72a1d05c-21ac-4366-b14b-d0c1f3df700b","subnet":"fd63:256c:45f7:162d::/64","updated_at":"2023-12-08T15:58:32.160064Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.160064Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -2278,7 +2344,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
+ - Fri, 08 Dec 2023 16:02:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2288,7 +2354,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e7b979d6-817f-4cc5-b4f6-d8765065a014
+ - 1eb9eb4f-829e-4abe-9025-e5e6bd0d4dbc
status: 200 OK
code: 200
duration: ""
@@ -2299,10 +2365,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:54:13.346740Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:00:17.654018Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1446"
@@ -2311,7 +2377,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
+ - Fri, 08 Dec 2023 16:02:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2321,7 +2387,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bf74af08-7d9c-4d6b-b6fb-1925fae7d780
+ - 047e06ab-5708-4f06-b893-8c935176d558
status: 200 OK
code: 200
duration: ""
@@ -2332,10 +2398,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSSmVFNUdiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFbDRUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVdExDbFpRVUVNeWNrZHlhbEpWTDNVeWMzQTRPRWsxTW5sWUwyVXphazlxUzFNclkzSm5MM1ZRTm1WamVFd3pLMmxXYXpGblFXTnFURmxVVFVaaFpsUjNRbG9LVGpSb1FXZFRVRTVqT0U5T05VYzNaUzlQT1hSVVVXNXBNRTlCZDBGT2J6UjRUM1ZHY0hKR1VrNVBUWHBXZUdOSlMxQlRNV1Z6VFUwMWEyOURaMGdyVEFwd2VESkxTM1EyUkRSMGFuZzNhSE56WWpGUU4wTm9hWGh5WTBaTVNtRmlkR2RIV1N0RldqUjViMk5oZEVGNGF6WjFORzlvTUZwc04wbHdUVmR1Y3poNUNsbERTVU5SZFc5bFpETnZlall4WXpWaFR6UnRXa3BYVjI1Qk9VTktOMlZZVUZCdEwwNXdRbWQ2WTNjeU1tUXdVVlY0YlZkTFJtdEpRbVp0U1V0S2RGVUtZaXN6VVU5dlp6VlVVbVJJY21SVmJHeDZOMGRKUlRkdE1qQmpkbWRhU2xkdGNGRjNZVGhUTmtGQ01XdGhLMVZSVDBWc01XMHJhMk5YZDFKVFEzTXdiQXBtTmxOMVRIUmFhMnhCYTFwUGMzQTFOMXBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpPUlU1V1J5ODJkRzFsY1ZnM1pHeG1XV1pWTVZsRFRYbzRjV2ROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYUM5MVNGSnVlbUp4VERSNVFVRm1SMGxqYzI1UEwwUXhXalpGYW1Fd2RYbDRLMFUxY0VORFZrTkNZV2hNYXpaWE5RbzNVVTQxV0dwSWFua3lNREprV0haS1pVVkVPVmRYTVU1RGQyOXdVV0Z3UTI4eFpEbEpZMmR0UzI5clZtRlFWVzgxWjJjNWN5dHFRaXRFYlRFMlREQlVDa3RCTWxweFdFRklWMDFSTW1NNWRXUXlUSGc0U1RWT1IyWktVRW93VlV0U1NrbHRPRkJpWlhOcmVVUjZXRWxMUTFkNlQxazRZVXB3YkdzNGFHZzNSbE1LYlRCbk9GY3lUa0ZHV1VSTmIwaHRjMFJSZG10RkszRnZjU3N6ZFdGR1JUSTBRelJNV0RKMVZFMXJTWEpHSzFVd0syNU9SMlJuTkdoVWJXYzRlSFpKYndwaVlXOHlWSGx3SzNsd04xQlFNbTR2TkVGa1RXRkNjbEJvVnpCU1l6TmhUVzlSYjFScVRsaFRXVWxvVDFoMVFUSkVUbVJHZDNCWVNsVmFWRmxrTURkcUNubzBaWE5EU1RGR1FsRkRVWE5wTUdaRVRtNXhPRUpYTld3eVpFZHJiemxMVTAxR1V3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9lY2QwZDI3OC05NWQwLTQ1ZGMtOGY2Yi03MmJkYjcyODQ1YzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYRGg0RGl4SkxpRUxJMmhsUEpSMjM1VHY2eVlBODZZQjdVTlF0WTN3OVR5dmM2NjlyWHoyeGRmSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V4VGxSbmVrNUdiMWhFVkUxNlRWUkpkMDU2UlRGT1ZHZDZUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlREQnBDbFV2TDNONGVHbG1OR293WVdSRFJqUkRWRGxvYVZoNU1GcE1iRUppVm01RFJEa3lkalp2WmtabVpUZHVNVkpPYjFaM2FUbGliQzlYV2pjdlRTdFpVRzBLTTJoMk4zSmthbFJQZVZoSk5WSmxZWHB5YjJ4RFUzaHJlWEZRT0U5U2JGbzJVbGR2V0dOVmNrdGtjMWRqTkV0a1dHUkVRWGhQTlRkM1FYTldSamd4TkFwVGJqQnZSVmw2UVZVelpUSnFRWFJvU0hWTGNIcGhNRkkzSzA5TlpXeElaRTg1YURCT1UwMXNRME41VkZkNlIxRnlkRTlUYW1WNGFGSnViamhDT1hFMENua3Zja00xTmxFeVVIZGlWRkJpVkROeFdUSjRVbmR4YTBGc1N6UlNiVXN2YVZKTWN6bHhhM1p3VnpGVWVsQkRTMmw2VlRVclZtUXpZWGhMWVV4RmFtMEtVRkkwWlZCc05saFFSMUl5VkdOamREQnRZbUYxZVdwcVRGUkpORUo1YmxwR1ZXZGFWbEpCWXpsbFRrdG1RVm94WmtOQlRHaDNRMmt5WjJKMFRYcHpUQW92YUZSRGJWZExXVk5rUmk5NlEzZHVjVGRGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVEdWNFJGRnNSeXRUVG05U2RFNW1SVTVIV1dOSFlqTnBZa2xOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTJsdFIxVmxSVzlLUm10aWVIbEtiMnhIZWt0U1RVaFhSRXBWV1RVMGFFZFNibGw1UjJWT1MzaHJRMlJJYTA5amJncGphbFpYWVZReWFYaFVUalk0ZFRkYWMzVXJaa3BCTTBKMmNVcHhVamhsTTNReU4wNWtORFpzVkN0aFUwd3JibEJ5ZUU0M0x6STFUMDFKUldSRVExazNDamh3VmxaemIwUlVjMDVFWWpRMk5TdGpZWE5yZEROV1V6ZGxTMmwzWlROQk5YQXhTMjl4ZWxoU09XWkJhV0pqZW5GSkwyY3pVREpoVkRsWE5WRXJURkVLZUZaTU0yeHdRbE5uWlhsdFprYzNURWhOUVhONFpUWXlXR0Y1TjJKSVJHVmxWQ3QzTUU1MFdpOHZORVl2ZVZGcVZITTJXV1pPWVc5SWJGWTRiV2xLYmdwVFFYUnpha0pWWkZodFRtMXNlbU5XWW5sYU5rMVVNbXRVUnl0UFJqQldORlJrYjFGVlpuTlVOR1ZYYmtGeU1rOUllSEZ1TTNwSmFIVm5Uak5pZEUxMkNscDFSbnBrWjFsNVFucHdUVUpCWVZSUlFUWk1hekF4ZFc1SE5FOUNVSGhHT0dRemVBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xMGJiYjdlOC1lNWY1LTQwM2YtYjdiOC0zN2JmNDdmNTJhZjQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjNUxqVm5Tb3VlN0NrZVBGRkNnV0RxaDBSZFNtaVZZaW1FdFpXUUVYajdHUURiNDFBVWMyYlpadA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -2344,7 +2410,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
+ - Fri, 08 Dec 2023 16:02:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2354,7 +2420,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56294421-a02e-40c2-b92b-3108e51ad6bb
+ - fc265c60-3023-4054-b976-1ecf72e7b5be
status: 200 OK
code: 200
duration: ""
@@ -2365,10 +2431,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:23.938752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:02:55.102982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "613"
@@ -2377,7 +2443,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
+ - Fri, 08 Dec 2023 16:02:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2387,7 +2453,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4fbf8c08-4011-4af9-a1be-be28c80e249e
+ - 4e42861c-faa6-4682-b364-db93d7561958
status: 200 OK
code: 200
duration: ""
@@ -2398,19 +2464,52 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/nodes?order_by=created_at_asc&page=1&pool_id=d62babd0-e846-403f-8db6-2d0b8337aba1&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4/nodes?order_by=created_at_asc&page=1&pool_id=99a44571-d04f-4039-8279-a6767dbec598&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:29.924465Z","error_message":null,"id":"003b12c7-ec07-4494-9bd7-3321fae087ad","name":"scw-test-pool-size-pool-003b12c7ec0744949bd733","pool_id":"d62babd0-e846-403f-8db6-2d0b8337aba1","provider_id":"scaleway://instance/fr-par-1/70ea6cea-258f-4050-bb83-0853c72a6bb1","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:23.924018Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:29.580871Z","error_message":null,"id":"926fb505-0ae1-4f7b-a78c-9da6f3dadf95","name":"scw-test-pool-size-pool-926fb5050ae14f7ba78c9d","pool_id":"99a44571-d04f-4039-8279-a6767dbec598","provider_id":"scaleway://instance/fr-par-1/f87af6f8-b4b8-4807-8793-dd7ac5d4a36e","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:02:55.091021Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "659"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:02:59 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 6ebe6d5a-1946-4021-93fc-6adddf74d150
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
+ method: DELETE
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225452666Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "658"
+ - "619"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2420,7 +2519,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b44a621-64da-4616-8bd5-cc7fa48e810c
+ - 40294bda-4dc4-4e8f-b184-478755a2cf4b
status: 200 OK
code: 200
duration: ""
@@ -2431,19 +2530,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b0f61662-2be0-45f7-9348-462f77e21e73
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"created_at":"2023-11-13T13:52:12.541187Z","dhcp_enabled":true,"id":"b0f61662-2be0-45f7-9348-462f77e21e73","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:52:12.541187Z","id":"dd4a2384-4ff8-4592-8b5c-6af909f6f789","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:52:12.541187Z"},{"created_at":"2023-11-13T13:52:12.541187Z","id":"b9483813-0f12-4103-a33a-d9b47b2ebe46","subnet":"fd63:256c:45f7:f41d::/64","updated_at":"2023-11-13T13:52:12.541187Z"}],"tags":[],"updated_at":"2023-11-13T13:52:12.541187Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "715"
+ - "616"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:27 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2453,7 +2552,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 44192498-543c-4bfe-8fbe-b1d55afdfd90
+ - 636ac2ac-79ca-4014-95be-3a3aa891995c
status: 200 OK
code: 200
duration: ""
@@ -2464,19 +2563,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:54:13.346740Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1446"
+ - "616"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:27 GMT
+ - Fri, 08 Dec 2023 16:03:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2486,7 +2585,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a9fe4e0c-11d3-462f-9690-4ddd5798b916
+ - c6a52ac0-30f5-45fc-af1e-df67dd0faf09
status: 200 OK
code: 200
duration: ""
@@ -2497,19 +2596,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSSmVFNUdiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFbDRUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVdExDbFpRVUVNeWNrZHlhbEpWTDNVeWMzQTRPRWsxTW5sWUwyVXphazlxUzFNclkzSm5MM1ZRTm1WamVFd3pLMmxXYXpGblFXTnFURmxVVFVaaFpsUjNRbG9LVGpSb1FXZFRVRTVqT0U5T05VYzNaUzlQT1hSVVVXNXBNRTlCZDBGT2J6UjRUM1ZHY0hKR1VrNVBUWHBXZUdOSlMxQlRNV1Z6VFUwMWEyOURaMGdyVEFwd2VESkxTM1EyUkRSMGFuZzNhSE56WWpGUU4wTm9hWGh5WTBaTVNtRmlkR2RIV1N0RldqUjViMk5oZEVGNGF6WjFORzlvTUZwc04wbHdUVmR1Y3poNUNsbERTVU5SZFc5bFpETnZlall4WXpWaFR6UnRXa3BYVjI1Qk9VTktOMlZZVUZCdEwwNXdRbWQ2WTNjeU1tUXdVVlY0YlZkTFJtdEpRbVp0U1V0S2RGVUtZaXN6VVU5dlp6VlVVbVJJY21SVmJHeDZOMGRKUlRkdE1qQmpkbWRhU2xkdGNGRjNZVGhUTmtGQ01XdGhLMVZSVDBWc01XMHJhMk5YZDFKVFEzTXdiQXBtTmxOMVRIUmFhMnhCYTFwUGMzQTFOMXBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpPUlU1V1J5ODJkRzFsY1ZnM1pHeG1XV1pWTVZsRFRYbzRjV2ROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDYUM5MVNGSnVlbUp4VERSNVFVRm1SMGxqYzI1UEwwUXhXalpGYW1Fd2RYbDRLMFUxY0VORFZrTkNZV2hNYXpaWE5RbzNVVTQxV0dwSWFua3lNREprV0haS1pVVkVPVmRYTVU1RGQyOXdVV0Z3UTI4eFpEbEpZMmR0UzI5clZtRlFWVzgxWjJjNWN5dHFRaXRFYlRFMlREQlVDa3RCTWxweFdFRklWMDFSTW1NNWRXUXlUSGc0U1RWT1IyWktVRW93VlV0U1NrbHRPRkJpWlhOcmVVUjZXRWxMUTFkNlQxazRZVXB3YkdzNGFHZzNSbE1LYlRCbk9GY3lUa0ZHV1VSTmIwaHRjMFJSZG10RkszRnZjU3N6ZFdGR1JUSTBRelJNV0RKMVZFMXJTWEpHSzFVd0syNU9SMlJuTkdoVWJXYzRlSFpKYndwaVlXOHlWSGx3SzNsd04xQlFNbTR2TkVGa1RXRkNjbEJvVnpCU1l6TmhUVzlSYjFScVRsaFRXVWxvVDFoMVFUSkVUbVJHZDNCWVNsVmFWRmxrTURkcUNubzBaWE5EU1RGR1FsRkRVWE5wTUdaRVRtNXhPRUpYTld3eVpFZHJiemxMVTAxR1V3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9lY2QwZDI3OC05NWQwLTQ1ZGMtOGY2Yi03MmJkYjcyODQ1YzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYRGg0RGl4SkxpRUxJMmhsUEpSMjM1VHY2eVlBODZZQjdVTlF0WTN3OVR5dmM2NjlyWHoyeGRmSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2606"
+ - "616"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:27 GMT
+ - Fri, 08 Dec 2023 16:03:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2519,7 +2618,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9e1754d6-0fee-4a0c-8312-3f3be1fa5cad
+ - beb32fa1-526e-4656-90f6-c4080a86bb96
status: 200 OK
code: 200
duration: ""
@@ -2530,19 +2629,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:56:23.938752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "613"
+ - "616"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:27 GMT
+ - Fri, 08 Dec 2023 16:03:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2552,7 +2651,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a8e45a6-4210-46b9-9375-699fe68ceadb
+ - a320e7a1-ae64-41e5-a084-9c0cb09590aa
status: 200 OK
code: 200
duration: ""
@@ -2563,19 +2662,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8/nodes?order_by=created_at_asc&page=1&pool_id=d62babd0-e846-403f-8db6-2d0b8337aba1&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"nodes":[{"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:29.924465Z","error_message":null,"id":"003b12c7-ec07-4494-9bd7-3321fae087ad","name":"scw-test-pool-size-pool-003b12c7ec0744949bd733","pool_id":"d62babd0-e846-403f-8db6-2d0b8337aba1","provider_id":"scaleway://instance/fr-par-1/70ea6cea-258f-4050-bb83-0853c72a6bb1","public_ip_v4":"51.158.79.120","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:23.924018Z"}],"total_count":1}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "658"
+ - "616"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:27 GMT
+ - Fri, 08 Dec 2023 16:03:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2585,7 +2684,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0d85847-4d41-479d-97d9-0935dbc52a8c
+ - dbab32b8-1862-412f-ae13-a8db2e2fd25b
status: 200 OK
code: 200
duration: ""
@@ -2596,19 +2695,151 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
+ method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:28.370790104Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "619"
+ - "616"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:03:26 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - d83196df-6de8-417c-9432-4da77e027249
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
+ method: GET
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "616"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:03:31 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - a3fc99d4-58b5-41dd-b827-eb4e3193bb5b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
+ method: GET
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "616"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:03:36 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 177f5bd4-88c3-45fc-b39e-16dee8327ddc
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
+ method: GET
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "616"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:03:41 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - fa0770b7-2658-4d48-a6f2-2124cb892483
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
+ method: GET
+ response:
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "616"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:28 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2618,7 +2849,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a94cbf31-4deb-40c6-978b-f175d04b5a80
+ - 3317eb7c-e548-4833-91ac-92d48c3924b5
status: 200 OK
code: 200
duration: ""
@@ -2629,10 +2860,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:28.370790Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "616"
@@ -2641,7 +2872,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:28 GMT
+ - Fri, 08 Dec 2023 16:03:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2651,7 +2882,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4137695f-2b1e-43fd-955a-bcafd383dc50
+ - f32dbfba-cdbe-43be-acf8-940e47320959
status: 200 OK
code: 200
duration: ""
@@ -2662,10 +2893,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:28.370790Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "616"
@@ -2674,7 +2905,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:33 GMT
+ - Fri, 08 Dec 2023 16:03:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2684,7 +2915,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e7428e2-3732-4d38-ab5c-b5b2fc7f5f29
+ - f6325bf8-ba46-49e4-97e6-642a921f0e69
status: 200 OK
code: 200
duration: ""
@@ -2695,10 +2926,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:28.370790Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "616"
@@ -2707,7 +2938,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:38 GMT
+ - Fri, 08 Dec 2023 16:04:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2717,7 +2948,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 967f0ddc-96c2-4aba-a61f-80e6463f9d96
+ - 77d24053-b8a0-43c8-bf27-b54e5ec40e1b
status: 200 OK
code: 200
duration: ""
@@ -2728,10 +2959,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"autohealing":true,"autoscaling":false,"cluster_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","container_runtime":"containerd","created_at":"2023-11-13T13:52:18.910144Z","id":"d62babd0-e846-403f-8db6-2d0b8337aba1","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T13:56:28.370790Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":false,"cluster_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.066775Z","id":"99a44571-d04f-4039-8279-a6767dbec598","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:03:00.225453Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "616"
@@ -2740,7 +2971,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:43 GMT
+ - Fri, 08 Dec 2023 16:04:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2750,7 +2981,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 000b275f-62d8-4305-b005-7f63ca77d250
+ - d4dda525-04d5-452f-ab4c-e415c6e531a9
status: 200 OK
code: 200
duration: ""
@@ -2761,10 +2992,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"d62babd0-e846-403f-8db6-2d0b8337aba1","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"99a44571-d04f-4039-8279-a6767dbec598","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -2773,7 +3004,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:48 GMT
+ - Fri, 08 Dec 2023 16:04:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2783,7 +3014,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a040b08-67cf-41d6-9244-d67199091691
+ - 2e302877-622f-458a-9d1e-594ba30a5581
status: 404 Not Found
code: 404
duration: ""
@@ -2794,10 +3025,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:56:48.666189856Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:04:12.012970031Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1452"
@@ -2806,7 +3037,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:48 GMT
+ - Fri, 08 Dec 2023 16:04:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2816,7 +3047,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 651bd400-c5d0-45ed-aba4-7ea8026de6e5
+ - 41101097-1dd8-458c-84f6-58e3eaa9137a
status: 200 OK
code: 200
duration: ""
@@ -2827,10 +3058,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:56:48.666190Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:04:12.012970Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1449"
@@ -2839,7 +3070,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:48 GMT
+ - Fri, 08 Dec 2023 16:04:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2849,7 +3080,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 17833ac0-3a1d-4442-bd49-72aa0b184a4e
+ - 882c4a8e-8161-4411-9e18-6f8ffadbc29a
status: 200 OK
code: 200
duration: ""
@@ -2860,10 +3091,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ecd0d278-95d0-45dc-8f6b-72bdb72845c8.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:52:13.442240Z","created_at":"2023-11-13T13:52:13.442240Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ecd0d278-95d0-45dc-8f6b-72bdb72845c8.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b0f61662-2be0-45f7-9348-462f77e21e73","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-11-13T13:56:48.666190Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.639124Z","created_at":"2023-12-08T15:58:33.639124Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.10bbb7e8-e5f5-403f-b7b8-37bf47f52af4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d935b68d-a669-42f6-a76c-753f89085dcc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-12-08T16:04:12.012970Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1449"
@@ -2872,7 +3103,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:53 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2882,7 +3113,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 85cdde1e-1387-42ac-9b8d-772a4761f641
+ - 837d7a62-8710-4bce-b3da-861ed8421d6e
status: 200 OK
code: 200
duration: ""
@@ -2893,10 +3124,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -2905,7 +3136,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:58 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2915,7 +3146,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b51d7b08-fc16-4599-aed8-ea3f4ad29138
+ - 63869df4-f932-45e7-ba82-0b72f6022c62
status: 404 Not Found
code: 404
duration: ""
@@ -2926,10 +3157,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b0f61662-2be0-45f7-9348-462f77e21e73
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d935b68d-a669-42f6-a76c-753f89085dcc
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"b0f61662-2be0-45f7-9348-462f77e21e73","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"d935b68d-a669-42f6-a76c-753f89085dcc","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -2938,7 +3169,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:58 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2948,7 +3179,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 78dbbbb2-36de-4e2e-846a-baf8c65c59e9
+ - 1ef3a957-05fc-4ebd-88a4-bc5331ff01be
status: 404 Not Found
code: 404
duration: ""
@@ -2959,10 +3190,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d62babd0-e846-403f-8db6-2d0b8337aba1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/99a44571-d04f-4039-8279-a6767dbec598
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"d62babd0-e846-403f-8db6-2d0b8337aba1","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"99a44571-d04f-4039-8279-a6767dbec598","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -2971,7 +3202,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:58 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2981,7 +3212,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfa8debb-66c6-450c-a8b8-e00bc171d467
+ - 1dfff048-fb81-4761-9365-0b4bb1d56f29
status: 404 Not Found
code: 404
duration: ""
@@ -2992,10 +3223,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ecd0d278-95d0-45dc-8f6b-72bdb72845c8
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/10bbb7e8-e5f5-403f-b7b8-37bf47f52af4
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"ecd0d278-95d0-45dc-8f6b-72bdb72845c8","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"10bbb7e8-e5f5-403f-b7b8-37bf47f52af4","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3004,7 +3235,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:58 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3014,7 +3245,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1396d21d-066c-4482-94f4-c40bf69fd4e9
+ - 87e40049-eca8-4acd-b737-071f3c5b9d59
status: 404 Not Found
code: 404
duration: ""
@@ -3025,10 +3256,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b0f61662-2be0-45f7-9348-462f77e21e73
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d935b68d-a669-42f6-a76c-753f89085dcc
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"b0f61662-2be0-45f7-9348-462f77e21e73","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"d935b68d-a669-42f6-a76c-753f89085dcc","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3037,7 +3268,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:58 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3047,7 +3278,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 227fe239-7a5c-4965-bc35-f1eb542afb8a
+ - d95c3026-5a48-49a2-8cd6-24e1a5b2d5b2
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml
index 816e2062fb..58c6cc0a3c 100644
--- a/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a39816a-1d85-4606-a81d-039f82ef60f1
+ - 01bf823f-6ed4-415d-9bd3-9f9fffcff43c
status: 200 OK
code: 200
duration: ""
@@ -50,16 +50,16 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:13.822758Z","dhcp_enabled":true,"id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.822758Z","id":"fc9c7227-841e-4c91-8ca6-b767e00b16eb","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:51:13.822758Z"},{"created_at":"2023-11-13T13:51:13.822758Z","id":"4c0505d2-09bc-44d3-8f24-6606c2d86d60","subnet":"fd63:256c:45f7:7b5c::/64","updated_at":"2023-11-13T13:51:13.822758Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.822758Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.231418Z","dhcp_enabled":true,"id":"c451e814-527e-4d28-9eed-4e61a0b87115","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.231418Z","id":"5523db83-5143-4a5b-8866-758b8b095b1d","subnet":"172.16.0.0/22","updated_at":"2023-12-08T15:58:32.231418Z"},{"created_at":"2023-12-08T15:58:32.231418Z","id":"37aabd75-2d26-43ff-8ddd-096b16f4a04f","subnet":"fd63:256c:45f7:95ed::/64","updated_at":"2023-12-08T15:58:32.231418Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.231418Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "725"
+ - "724"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0822dcaa-bd78-483b-8249-f525a74f9d34
+ - 254a3cf0-5b21-4d26-bd85-c106d697e9d4
status: 200 OK
code: 200
duration: ""
@@ -80,19 +80,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dbed4a58-32da-4870-8376-0629a3a5f6b7
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c451e814-527e-4d28-9eed-4e61a0b87115
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.822758Z","dhcp_enabled":true,"id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.822758Z","id":"fc9c7227-841e-4c91-8ca6-b767e00b16eb","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:51:13.822758Z"},{"created_at":"2023-11-13T13:51:13.822758Z","id":"4c0505d2-09bc-44d3-8f24-6606c2d86d60","subnet":"fd63:256c:45f7:7b5c::/64","updated_at":"2023-11-13T13:51:13.822758Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.822758Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.231418Z","dhcp_enabled":true,"id":"c451e814-527e-4d28-9eed-4e61a0b87115","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.231418Z","id":"5523db83-5143-4a5b-8866-758b8b095b1d","subnet":"172.16.0.0/22","updated_at":"2023-12-08T15:58:32.231418Z"},{"created_at":"2023-12-08T15:58:32.231418Z","id":"37aabd75-2d26-43ff-8ddd-096b16f4a04f","subnet":"fd63:256c:45f7:95ed::/64","updated_at":"2023-12-08T15:58:32.231418Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.231418Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "725"
+ - "724"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fd56a0c3-4cae-4eec-9d0e-ce70f1749073
+ - 6394587a-92a3-45f2-bbdd-da0c3dadf0c6
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-upgrade-policy","description":"","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-upgrade-policy","description":"","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684205Z","created_at":"2023-11-13T13:51:18.577684205Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.589193730Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989207Z","created_at":"2023-12-08T15:58:33.638989207Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.651252670Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7a73b249-cca3-4cd2-91c9-20351f25ac01
+ - b8668139-e3f7-4c3b-b52f-4890d8d48ebf
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.589194Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T15:58:33.651253Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1514"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 15:58:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0369ec54-bff0-426c-a4f4-625c0359a527
+ - 9909cdce-6c85-4584-8be9-eaf2462159ce
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.440779Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T15:58:37.159565Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1519"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e8cb8b6-8299-4f9d-97c0-25526b97269d
+ - d5e07406-d33b-4325-bb01-13650d68fc80
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.440779Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T15:58:37.159565Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1519"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9a3bdc94-8bc5-46bb-8793-e03c89dae57c
+ - 782f5107-c241-4074-bc74-103afb19f0b8
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlVTFHYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY1VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1p3Q2tSaldUUTRLMWRHYzNabFpYWlhXbWMwVFZvelNFdzNTRVZVYmk5RFIzTmpSbWh0UkdGNWNYRk5VbmhaZUdaVFJYbDJPWGw2V21KME1rZEdkMUpGTTJ3S1NHdFdNSEZYTm0wNVdFTkVibXRqU0ZaRGVWUXJlVXBvYkhCNmFUVktMMlZtVEhOQlkxVlljbEZ6UkdSMGNGQlVUWEZKYjNrcllqZzNaVkZqVkVWcU53cFFRazB6UjFWRVdGbEdNbVZwYmxkVWNUWllRbnAzWkZCYWNGUlZVV0Z1UTI0eVUyNHpOM1ZoZVdsSk0wZDZZakV4V1U0elpXWkRhelJhZFdWc1RqbHJDazFNYTBSelEwTTBOSFZMVGxKaVNVb3lUSEJRVDJ4MlFXRkJabEV6Y0dkbmIxTlhaSEZVUVRVMFpsaHdSREZhUjNjMFZGQlVOMXBDY1RCT2RTdHNkMWtLVTFKaFYybGFNRVpzYUhkdU9HaENUaXMzWnpSUlVXMUJXSFZRV0RJeVZHeHZNR0Z0VTJaUlFqbFRUVVZUVEdwMmJURnhPV05FY1djd1NrdE5NMVl4Y3dvclMzazBabFpuZUdzek5WUm9TMk41YlZSalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTmNXOWFWa29yY0VwT1V6TnZNRFZGVmpSalVXaDJkVVJ3UkVwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmIyRTVVVTUzY1ZoaFZsZFRSbk52V1hwSVRsUXJlbmsyY1RRNWNWQkllRXBHUTBJMWR6UnJWVTQxUkhScVdVMVVVd3BCTTBnNGNVd3hjR2QwZDA0NFdtTnNhMGQ0ZWpneWF6ZFhhamRTZUZSdU1VTjRWR3hXVmswNVFuUmFaMlo0VEdGd1pscFNWblpWWmpnM2RtMVVPQ3RXQ210SlRUbHJPSGRoYURkeVIyRjBTbWhTSzJwSU1ISldPRmxoT0U5aFVtMVFaVUk0UjNwWFpGbFFhalpRUWk5allXSm1WMFphTm1kUlpFbEZWRVUxVW5vS00wNTZZMDQ0WnpSM1UzSjVaMnhsU25nNGRFRjFNM2xUVDJRM2J5dGxielZWVm5KTGVsWlhSV2c1Y0ZWTFZGbFBNR3RVUW5sbVdERndhbVpFTUZGQkt3b3dheTlSY0VWUlNGRlZPSGd4VUU5NVNHcDFiMmhzZEhsT1VqbEljRXhIVVhOb1YyVkhWMDAyU21RNFptVkVaeTlLYUhCUlNtb3hhRll4Y0dwVk5FOHdDalJEYnpOT1NHNHhjbU5YYVVGNWNuaHBNMkpxYzFjeU1YVlVaVmhoUzBaaVltbHhTQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzdkNTc5YTctYWQxOC00YjBmLTg5ZGQtNmI3ZDM4MjhmNjllLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbzlCUWJjM3BVYkN0MkpubHgxakU1aDBBTkxEQ0h1MTZnbXVsTm4wNFJmek9QVDZDMVhpS0dDdQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeFRsUm5lazVzYjFoRVZFMTZUVlJKZDA1NlJURk9WR2Q2VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVSGxUQ25Oek5sRnNOVTUyTUdGNWRVaGplVk52S3psc1FsVkdiRFZDWWtKVFVWSlJkR1JKU25ZNU9FeEdPVXhIY1hKb1VYRTVRMFJEVHpWNGNYSldRa3hEUm00S1kzWktiWE5qU2xWVVZITklUVUpuWjNaWmJWaElaMjg1UjFrNVVIaFZlSGszZUZwRVduRlFWM2NyVDBrcloxSm5PVUZoVW0xeFlXTlJXa1JIYUZGTlVncDRkMjh3TUdkVmVuWTNiVGcwVW1kb1puSm1hMEp0VFVod1JqVktRMkpUSzFCRU5HZE1jbVo1SzAxUmNtNVNZVmwwVlhWTlMxVklSbmcwTkdrM2FHVXJDbFJHZFZweVdWWXJRbFEzVDFkVE1teGFVVUowTkhZM2FVaGlWRGR5THk5b1NrUXZRM2RuVDNsSGVtaGpTemcwVWtOVE5sUmhPWEE1TUZkRGRXMVdkVFFLVFhweWRYZFpXRFJsWlhKclpETjRlbE0wY2l0U1dGRXdSMGRzU25KdVIxSjJOV05CT1VKNGNTOXlPVTF3Y1hOVk5VbE1TVkYyVW5SNmJHaE5Ta3htU3dwd2FGQkxhbEJ4VFc1NlVXazJkbFk1SzBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSFkwSjNlbTEwUzAxUVYyZENORGxoVGt4TkszUTRORnBEVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGFFZzVTV1JqYW1WWk5tNVVWa0pqWlRacFVtRXJjak5DZFVaRmFFNWhLMHBNY0haWFduZEZia0ZSYVVOcFozZEhUQXBUUm1aME9VVnNjelJ4UkdsemJYTlFaVXBIVERKWVRUUkNURE55WVZGUVRXdHhiM2RQZG1kcWFXcENSbGg2UjFGNWJXZDVhMkpqUVRkVFZXeG9WMXBSQ2xwUFJtaHNiV2RyUkV4WFpWZzBNRGw2ZEROamEwcFhhbGxSWTFWWU1HRk1aakV4TTAxMFNYbzFaREE0UkRGQ1JqQkRWa1pQWlRKdFlrbERZVzE0UzNNS1ZucERVMFIyYWtwSFNEQnRlbXQ0ZUVsWGIyODBSbE5MWjBKamFHbDZaRlppZFZCcWIxWm9WVVpxWjJJM1dtaGtSVU5NT1ZoSlVsWmFlamMwYVhWVFVBb3hXSEkxTTJkdFEyazROMU5yYlVkelVURkJWbUpZWkdWbFJqUlhOV04zZURKTFRFVjRRbmRFSzBGMloxZEViemxaUVU5SlRHRjROa3RIWVd0TGJTOVNDa0ZOU25ZelJWTkdTV2t4ZGsxaFdHWlVNbEZtWWxwWWEyWlFialZLY25sNU1rdEZiQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDY1NDdjNGEtMzg5MS00MmY2LTk5MTktZjY3ZDc3NTY4ODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJVlc3dDNnM3Z3MERWcFVFRlRieURNSlRJcTF6eTFzdnZRTEl2bU5GaGYxc0FxQ3hpUGJXWGIwSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2686"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cff27d01-7e49-4a36-8ab5-5022e79ba1f6
+ - 773a5526-ab46-4287-8b2d-28b0db98124c
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:51:20.440779Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T15:58:37.159565Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1519"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f7726587-34e7-43de-90ab-ab832d946504
+ - 891f200e-0d1c-443b-9074-564362a05828
status: 200 OK
code: 200
duration: ""
@@ -315,10 +315,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/pools
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/pools
method: POST
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009387913Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188361Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "695"
@@ -327,7 +327,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -337,7 +337,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c21745f3-a2eb-4da4-bfb4-2372cd95ef14
+ - c1ffa95b-1143-41cd-9892-3a98f985d32e
status: 200 OK
code: 200
duration: ""
@@ -348,10 +348,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -360,7 +360,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:24 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -370,7 +370,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 705491a1-be62-48c2-957f-dd56c66b5f63
+ - d28e8e85-d7de-48f6-8cd7-2e3a94512c34
status: 200 OK
code: 200
duration: ""
@@ -381,10 +381,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -393,7 +393,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:29 GMT
+ - Fri, 08 Dec 2023 15:58:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -403,7 +403,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3fac154c-2c90-4e1c-b50a-60b32f3c1610
+ - 38cdfb66-840e-402b-a256-f5e7b17b3ce2
status: 200 OK
code: 200
duration: ""
@@ -414,10 +414,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -426,7 +426,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:34 GMT
+ - Fri, 08 Dec 2023 15:58:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -436,7 +436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8693c4b7-0a0e-43a4-88b5-d2488841e1ef
+ - 64accce4-fefa-483c-a4e4-d3ff07e40bd0
status: 200 OK
code: 200
duration: ""
@@ -447,10 +447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -459,7 +459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:40 GMT
+ - Fri, 08 Dec 2023 15:58:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -469,7 +469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 333e021d-9f97-4562-93c9-b4701bb08232
+ - 62a42715-4ff4-4d96-b4a8-80958bf18e58
status: 200 OK
code: 200
duration: ""
@@ -480,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -492,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:45 GMT
+ - Fri, 08 Dec 2023 15:59:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8b87237-a47d-48d1-b276-092f94f92a23
+ - bd7afb1a-f388-4e5a-882d-c1b37121064b
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:50 GMT
+ - Fri, 08 Dec 2023 15:59:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5416e1a5-49b5-45e2-bf3f-6ae16e06abc6
+ - d427327b-7a1f-4488-807b-1eac7b2c14ae
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:55 GMT
+ - Fri, 08 Dec 2023 15:59:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 62183256-d090-4669-bfbb-adc15ab2a956
+ - 2a86fe50-f004-40e2-98bf-1a145c2ce79d
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:00 GMT
+ - Fri, 08 Dec 2023 15:59:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e3782909-81d5-4a93-b796-500e0ef0f87e
+ - 2f60868d-dec7-42a5-8a75-9a5b9b259a41
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:05 GMT
+ - Fri, 08 Dec 2023 15:59:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f509e0c-4554-4b6c-905b-c27dd43788a4
+ - f63b842a-2a1f-4ca0-9645-93a98b5c7cc4
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:10 GMT
+ - Fri, 08 Dec 2023 15:59:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b190aa5-6d95-47b7-b101-7c947a98d4f8
+ - 21f26d79-60ac-40a2-b094-e6316ab969d5
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:15 GMT
+ - Fri, 08 Dec 2023 15:59:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 343bdd9f-ba3c-4bea-a6c5-22920df6c9c4
+ - 518b0ec4-e2db-48f1-a83c-16b63b84a23d
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:20 GMT
+ - Fri, 08 Dec 2023 15:59:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 60b03ed1-84bb-4277-99d0-3a5d2b2a4189
+ - b95fcf4a-5129-459e-a282-e722b6d021d4
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:25 GMT
+ - Fri, 08 Dec 2023 15:59:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ff51157-62ce-4d1b-bccf-1c25c9688b33
+ - 293cec4c-7162-47dc-b28b-9721bc59a390
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:31 GMT
+ - Fri, 08 Dec 2023 15:59:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3038be13-0da1-485f-9c86-62ff873e36fb
+ - 61974476-2444-4b0f-b757-2f18bf62a255
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:36 GMT
+ - Fri, 08 Dec 2023 15:59:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4186389e-f48d-430b-a225-31daf15c2e67
+ - eaedbbbe-a6b1-4666-9b2a-c3c522bf6ad2
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:41 GMT
+ - Fri, 08 Dec 2023 15:59:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e46346d-d727-4634-84f8-1a5b939ba7eb
+ - 363619c7-23bf-4c33-a607-1e3052839367
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:46 GMT
+ - Fri, 08 Dec 2023 16:00:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 34b76928-f589-460a-a938-d0405796cc18
+ - 11ba15c9-f4ab-47b0-9a7b-36b0c4b855fb
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:51 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a17a7bf4-9a00-4fb3-8ca4-b381e637f4c7
+ - edd2d4a4-5b84-43d1-99f5-17ab05fe100e
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:57 GMT
+ - Fri, 08 Dec 2023 16:00:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cebcb35b-e7b0-4261-b871-95b2e06864db
+ - df988df7-5ee5-4dc5-83a7-f09acf8267f5
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:02 GMT
+ - Fri, 08 Dec 2023 16:00:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 824fcc00-6af9-4b1d-8acd-2a464ae8a4b2
+ - 2b23b90e-4c71-4199-abce-ff081c849b29
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:07 GMT
+ - Fri, 08 Dec 2023 16:00:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7bed3524-a64d-47ca-bce7-0395d4298930
+ - bdf8474a-065d-48d5-b0ba-4cbac1018413
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1053,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:12 GMT
+ - Fri, 08 Dec 2023 16:00:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b9c5b3f5-761c-409f-9beb-c258e5c1c89c
+ - f82b5c3a-1636-4e5b-a3d5-dc03993e3af1
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1086,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:17 GMT
+ - Fri, 08 Dec 2023 16:00:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6cc3d82d-f9de-4b85-9123-befa0560f382
+ - 66bf0136-5579-4f8d-9ae5-fb5e8e3ed0a2
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1119,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:22 GMT
+ - Fri, 08 Dec 2023 16:01:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0fbc6b5f-c8ae-4af1-a6ce-ad693b925122
+ - bd0e614b-383c-4541-bc79-02e11993f9d4
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1152,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:27 GMT
+ - Fri, 08 Dec 2023 16:01:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 093c6691-4174-4605-8765-628661e06555
+ - a420955e-77c6-497c-be39-f98c19368498
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1185,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:32 GMT
+ - Fri, 08 Dec 2023 16:01:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 96c5c2ec-c1fc-4ed6-8451-6296b201595e
+ - 33d82651-4331-4503-a382-0db8c33616bd
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1218,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:37 GMT
+ - Fri, 08 Dec 2023 16:01:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f403f521-6d0a-4d48-8a4f-efbdcd5be6ba
+ - e12ef358-4d03-40f7-8ddf-85ff7a443add
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:42 GMT
+ - Fri, 08 Dec 2023 16:01:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f70c224-f3ba-4d74-bf19-23ed732242e6
+ - 89f12051-bca2-4312-8c43-bddef959f525
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1284,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:47 GMT
+ - Fri, 08 Dec 2023 16:01:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 264e2ca9-f1a9-4b64-a670-be31acad9fab
+ - ed4d8c67-5659-40cd-913f-932dd42213a9
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1317,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:52 GMT
+ - Fri, 08 Dec 2023 16:01:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 846888d3-4073-45e1-b758-5d8bb922b093
+ - 26c0f3fb-3e79-4e40-94d6-ef07c31f601e
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1350,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:57 GMT
+ - Fri, 08 Dec 2023 16:01:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fcbdb7cd-2c9c-4c66-9e1f-3da38e69a429
+ - 4ac3aed2-c882-4d5d-9aab-924885d6ecf3
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1383,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:02 GMT
+ - Fri, 08 Dec 2023 16:01:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3b130e69-4115-4cac-ba42-0dc594147775
+ - 0022c962-1702-49ef-8ac4-74bf5a768383
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1416,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:07 GMT
+ - Fri, 08 Dec 2023 16:01:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9cd9b064-2ccd-4fcc-8686-99917c9ee818
+ - ddfab6ba-bff5-400f-b254-3a182f0819c2
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1449,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:12 GMT
+ - Fri, 08 Dec 2023 16:01:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1fda0fae-0d9b-430c-b42b-ded982888705
+ - ab7d8ff8-6424-4d82-88ce-1a536a009148
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1482,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:17 GMT
+ - Fri, 08 Dec 2023 16:02:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2581df13-2fa7-4941-a081-d49aadd597d8
+ - 9aa517c0-03de-4faf-b20b-a2b688284a63
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:22 GMT
+ - Fri, 08 Dec 2023 16:02:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eb0536c0-24fd-4595-bc79-fd5dffad97d9
+ - 052bc743-0dfd-4ed4-9796-37d032f8a52c
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1548,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:29 GMT
+ - Fri, 08 Dec 2023 16:02:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29d2efba-ea26-4968-b27e-50bb8ac21d87
+ - c160f5b6-364b-4046-aa4a-142580a7df96
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1581,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:34 GMT
+ - Fri, 08 Dec 2023 16:02:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2eff5eac-89ef-4052-95a7-b374f3506b10
+ - 0fc2cb22-2349-42a7-bd2e-0dbdba853a37
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1614,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:39 GMT
+ - Fri, 08 Dec 2023 16:02:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 17c01e5f-f066-41e1-994a-dd410b4eeb74
+ - 45ad009a-a07c-4c2f-9c1b-422806890e20
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1647,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:44 GMT
+ - Fri, 08 Dec 2023 16:02:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dda21418-1021-4962-ac54-35bcd5d852bb
+ - cc120790-073c-4b58-9ef1-b48a41f0b077
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1680,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:49 GMT
+ - Fri, 08 Dec 2023 16:02:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3784b3a1-96de-4355-88cc-e67c5546d62f
+ - 1430e9ce-78af-4133-bcbd-372de53fabfe
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1713,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:54 GMT
+ - Fri, 08 Dec 2023 16:02:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 065278f9-d98b-49e0-b63b-77a8c5c4b42a
+ - 93cb1cd2-e21c-4f50-b4dd-64e350b670d3
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1746,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:59 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 75e3df51-3b19-49e4-b537-e25f92c3af1f
+ - 0962c3fa-1934-4839-b8f7-62530040273b
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1779,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:04 GMT
+ - Fri, 08 Dec 2023 16:02:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4934a9c3-2546-4be6-8158-6c9aa9f6fd05
+ - 3c834081-84a8-487f-afe1-c70b9f3bcefc
status: 200 OK
code: 200
duration: ""
@@ -1800,10 +1800,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1812,7 +1812,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:09 GMT
+ - Fri, 08 Dec 2023 16:02:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c5a90da7-e7a4-4b76-a2ad-5f8dfdc001eb
+ - 9b7cdfa4-5970-4fb6-a530-9bbe52bf7d3f
status: 200 OK
code: 200
duration: ""
@@ -1833,10 +1833,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1845,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:14 GMT
+ - Fri, 08 Dec 2023 16:02:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b960d348-9b26-4310-8c16-f0d40bc99e7b
+ - 476f8a95-62a0-4e43-ba7c-2f4d589b5e04
status: 200 OK
code: 200
duration: ""
@@ -1866,10 +1866,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1878,7 +1878,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:20 GMT
+ - Fri, 08 Dec 2023 16:03:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 49e28cff-5d64-4a9f-bca4-a9b77c458afa
+ - 6c2cd678-84ff-4ad8-9306-0b5d4aa677a6
status: 200 OK
code: 200
duration: ""
@@ -1899,10 +1899,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1911,7 +1911,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:25 GMT
+ - Fri, 08 Dec 2023 16:03:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 766eb983-0aea-4c3d-bc90-51a4fda7bfd9
+ - bb482c25-cde0-4870-bcc4-63b049b224be
status: 200 OK
code: 200
duration: ""
@@ -1932,10 +1932,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1944,7 +1944,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:30 GMT
+ - Fri, 08 Dec 2023 16:03:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1954,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a2eb68ae-3fe9-4d66-8d8f-cc78a6fe37d3
+ - baf1766f-9469-40fc-8887-30a06519b73e
status: 200 OK
code: 200
duration: ""
@@ -1965,10 +1965,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -1977,7 +1977,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:35 GMT
+ - Fri, 08 Dec 2023 16:03:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1987,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 89fc6013-3bcf-4296-ad41-a0fad773ac88
+ - 33f74cce-c53b-4286-9a33-e6d7c4e459c7
status: 200 OK
code: 200
duration: ""
@@ -1998,10 +1998,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T15:58:39.049188Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "692"
@@ -2010,7 +2010,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:40 GMT
+ - Fri, 08 Dec 2023 16:03:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2020,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dfbdbe7e-d380-4176-8021-5f44a7095796
+ - 5712b229-e30d-4309-b44e-662bf5277ff6
status: 200 OK
code: 200
duration: ""
@@ -2031,208 +2031,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "692"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:46 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - edfabbed-a24f-4f0e-9ffa-555c6f3bac1b
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "692"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:51 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1631eab9-f800-43a5-92eb-c976b4462a32
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "692"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - edad1a47-75c7-4150-a068-ba7d2b95dd19
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "692"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:01 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c9cf041c-00c4-406e-839a-d2e72841676c
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "692"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:06 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d8457be8-bb05-42b7-ab60-3c4cd792d5c1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:51:24.009388Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "692"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:11 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - edd3718f-246a-4601-9d7c-eb726ce66102
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:12.606551Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:24.827157Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2241,7 +2043,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2251,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6476f22a-d954-48a2-8569-ac842833f65e
+ - 14553748-4faf-4b22-8e6c-a64547df327f
status: 200 OK
code: 200
duration: ""
@@ -2262,10 +2064,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.705058Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:00:04.272777Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -2274,7 +2076,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2284,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 18c1b38d-4580-42e4-b0a5-f759768cd4b6
+ - 529173a0-e750-426f-ba94-56af3b1c602a
status: 200 OK
code: 200
duration: ""
@@ -2295,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:12.606551Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:24.827157Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2307,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2317,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8a9c9269-15d4-4c34-a84c-1fc77aa7dc11
+ - 2a9a158b-b54e-4a38-89f0-74724e95147d
status: 200 OK
code: 200
duration: ""
@@ -2328,19 +2130,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/nodes?order_by=created_at_asc&page=1&pool_id=7af078ed-83f7-45f2-bd37-f098116c5775&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/nodes?order_by=created_at_asc&page=1&pool_id=cd667153-c714-4856-9cb0-38c2d955fdcf&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:10.581390Z","error_message":null,"id":"ec5df55c-b0c2-421c-9e24-79d167e9978d","name":"scw-test-pool-upgrade-test-pool-upgrade-ec5df5","pool_id":"7af078ed-83f7-45f2-bd37-f098116c5775","provider_id":"scaleway://instance/fr-par-1/110c3a12-14ef-47f6-850b-31eca03d54df","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:12.589619Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:31.155295Z","error_message":null,"id":"eff162db-e89c-4c6a-9f71-f24a82bda368","name":"scw-test-pool-upgrade-test-pool-upgrade-eff162","pool_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","provider_id":"scaleway://instance/fr-par-1/b48d7f57-9e81-4104-ba20-7f1d056cbabe","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:24.812224Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:16 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2350,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e3b40f58-bb76-4822-9829-b6ad226e0362
+ - b6fff98f-537f-4c81-abcb-66cb1a1b1970
status: 200 OK
code: 200
duration: ""
@@ -2361,10 +2163,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.705058Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:00:04.272777Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -2373,7 +2175,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2383,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec5bdee2-6943-4b93-9d81-878b041140d7
+ - a52f42f4-9413-4856-a610-07d3df551f5c
status: 200 OK
code: 200
duration: ""
@@ -2394,10 +2196,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:12.606551Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:24.827157Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2406,7 +2208,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2416,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9843b034-ae3b-4034-8872-843a69dc5994
+ - 27a28f22-f34f-4b8b-addc-0748e10d3801
status: 200 OK
code: 200
duration: ""
@@ -2427,19 +2229,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dbed4a58-32da-4870-8376-0629a3a5f6b7
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c451e814-527e-4d28-9eed-4e61a0b87115
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.822758Z","dhcp_enabled":true,"id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.822758Z","id":"fc9c7227-841e-4c91-8ca6-b767e00b16eb","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:51:13.822758Z"},{"created_at":"2023-11-13T13:51:13.822758Z","id":"4c0505d2-09bc-44d3-8f24-6606c2d86d60","subnet":"fd63:256c:45f7:7b5c::/64","updated_at":"2023-11-13T13:51:13.822758Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.822758Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.231418Z","dhcp_enabled":true,"id":"c451e814-527e-4d28-9eed-4e61a0b87115","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.231418Z","id":"5523db83-5143-4a5b-8866-758b8b095b1d","subnet":"172.16.0.0/22","updated_at":"2023-12-08T15:58:32.231418Z"},{"created_at":"2023-12-08T15:58:32.231418Z","id":"37aabd75-2d26-43ff-8ddd-096b16f4a04f","subnet":"fd63:256c:45f7:95ed::/64","updated_at":"2023-12-08T15:58:32.231418Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.231418Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "725"
+ - "724"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2449,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d35b4396-0d80-4c6a-b323-88185d3f9577
+ - 26b95927-dc4b-423f-9e33-dee81bb505d8
status: 200 OK
code: 200
duration: ""
@@ -2460,10 +2262,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.705058Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:00:04.272777Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -2472,7 +2274,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2482,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c139bc8-7b4c-47d8-9166-0e2af80dd714
+ - 5643b477-4c09-4400-bd8f-59ee843c965d
status: 200 OK
code: 200
duration: ""
@@ -2493,10 +2295,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlVTFHYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY1VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1p3Q2tSaldUUTRLMWRHYzNabFpYWlhXbWMwVFZvelNFdzNTRVZVYmk5RFIzTmpSbWh0UkdGNWNYRk5VbmhaZUdaVFJYbDJPWGw2V21KME1rZEdkMUpGTTJ3S1NHdFdNSEZYTm0wNVdFTkVibXRqU0ZaRGVWUXJlVXBvYkhCNmFUVktMMlZtVEhOQlkxVlljbEZ6UkdSMGNGQlVUWEZKYjNrcllqZzNaVkZqVkVWcU53cFFRazB6UjFWRVdGbEdNbVZwYmxkVWNUWllRbnAzWkZCYWNGUlZVV0Z1UTI0eVUyNHpOM1ZoZVdsSk0wZDZZakV4V1U0elpXWkRhelJhZFdWc1RqbHJDazFNYTBSelEwTTBOSFZMVGxKaVNVb3lUSEJRVDJ4MlFXRkJabEV6Y0dkbmIxTlhaSEZVUVRVMFpsaHdSREZhUjNjMFZGQlVOMXBDY1RCT2RTdHNkMWtLVTFKaFYybGFNRVpzYUhkdU9HaENUaXMzWnpSUlVXMUJXSFZRV0RJeVZHeHZNR0Z0VTJaUlFqbFRUVVZUVEdwMmJURnhPV05FY1djd1NrdE5NMVl4Y3dvclMzazBabFpuZUdzek5WUm9TMk41YlZSalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTmNXOWFWa29yY0VwT1V6TnZNRFZGVmpSalVXaDJkVVJ3UkVwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmIyRTVVVTUzY1ZoaFZsZFRSbk52V1hwSVRsUXJlbmsyY1RRNWNWQkllRXBHUTBJMWR6UnJWVTQxUkhScVdVMVVVd3BCTTBnNGNVd3hjR2QwZDA0NFdtTnNhMGQ0ZWpneWF6ZFhhamRTZUZSdU1VTjRWR3hXVmswNVFuUmFaMlo0VEdGd1pscFNWblpWWmpnM2RtMVVPQ3RXQ210SlRUbHJPSGRoYURkeVIyRjBTbWhTSzJwSU1ISldPRmxoT0U5aFVtMVFaVUk0UjNwWFpGbFFhalpRUWk5allXSm1WMFphTm1kUlpFbEZWRVUxVW5vS00wNTZZMDQ0WnpSM1UzSjVaMnhsU25nNGRFRjFNM2xUVDJRM2J5dGxielZWVm5KTGVsWlhSV2c1Y0ZWTFZGbFBNR3RVUW5sbVdERndhbVpFTUZGQkt3b3dheTlSY0VWUlNGRlZPSGd4VUU5NVNHcDFiMmhzZEhsT1VqbEljRXhIVVhOb1YyVkhWMDAyU21RNFptVkVaeTlLYUhCUlNtb3hhRll4Y0dwVk5FOHdDalJEYnpOT1NHNHhjbU5YYVVGNWNuaHBNMkpxYzFjeU1YVlVaVmhoUzBaaVltbHhTQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzdkNTc5YTctYWQxOC00YjBmLTg5ZGQtNmI3ZDM4MjhmNjllLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbzlCUWJjM3BVYkN0MkpubHgxakU1aDBBTkxEQ0h1MTZnbXVsTm4wNFJmek9QVDZDMVhpS0dDdQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeFRsUm5lazVzYjFoRVZFMTZUVlJKZDA1NlJURk9WR2Q2VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVSGxUQ25Oek5sRnNOVTUyTUdGNWRVaGplVk52S3psc1FsVkdiRFZDWWtKVFVWSlJkR1JKU25ZNU9FeEdPVXhIY1hKb1VYRTVRMFJEVHpWNGNYSldRa3hEUm00S1kzWktiWE5qU2xWVVZITklUVUpuWjNaWmJWaElaMjg1UjFrNVVIaFZlSGszZUZwRVduRlFWM2NyVDBrcloxSm5PVUZoVW0xeFlXTlJXa1JIYUZGTlVncDRkMjh3TUdkVmVuWTNiVGcwVW1kb1puSm1hMEp0VFVod1JqVktRMkpUSzFCRU5HZE1jbVo1SzAxUmNtNVNZVmwwVlhWTlMxVklSbmcwTkdrM2FHVXJDbFJHZFZweVdWWXJRbFEzVDFkVE1teGFVVUowTkhZM2FVaGlWRGR5THk5b1NrUXZRM2RuVDNsSGVtaGpTemcwVWtOVE5sUmhPWEE1TUZkRGRXMVdkVFFLVFhweWRYZFpXRFJsWlhKclpETjRlbE0wY2l0U1dGRXdSMGRzU25KdVIxSjJOV05CT1VKNGNTOXlPVTF3Y1hOVk5VbE1TVkYyVW5SNmJHaE5Ta3htU3dwd2FGQkxhbEJ4VFc1NlVXazJkbFk1SzBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSFkwSjNlbTEwUzAxUVYyZENORGxoVGt4TkszUTRORnBEVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGFFZzVTV1JqYW1WWk5tNVVWa0pqWlRacFVtRXJjak5DZFVaRmFFNWhLMHBNY0haWFduZEZia0ZSYVVOcFozZEhUQXBUUm1aME9VVnNjelJ4UkdsemJYTlFaVXBIVERKWVRUUkNURE55WVZGUVRXdHhiM2RQZG1kcWFXcENSbGg2UjFGNWJXZDVhMkpqUVRkVFZXeG9WMXBSQ2xwUFJtaHNiV2RyUkV4WFpWZzBNRGw2ZEROamEwcFhhbGxSWTFWWU1HRk1aakV4TTAxMFNYbzFaREE0UkRGQ1JqQkRWa1pQWlRKdFlrbERZVzE0UzNNS1ZucERVMFIyYWtwSFNEQnRlbXQ0ZUVsWGIyODBSbE5MWjBKamFHbDZaRlppZFZCcWIxWm9WVVpxWjJJM1dtaGtSVU5NT1ZoSlVsWmFlamMwYVhWVFVBb3hXSEkxTTJkdFEyazROMU5yYlVkelVURkJWbUpZWkdWbFJqUlhOV04zZURKTFRFVjRRbmRFSzBGMloxZEViemxaUVU5SlRHRjROa3RIWVd0TGJTOVNDa0ZOU25ZelJWTkdTV2t4ZGsxaFdHWlVNbEZtWWxwWWEyWlFialZLY25sNU1rdEZiQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDY1NDdjNGEtMzg5MS00MmY2LTk5MTktZjY3ZDc3NTY4ODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJVlc3dDNnM3Z3MERWcFVFRlRieURNSlRJcTF6eTFzdnZRTEl2bU5GaGYxc0FxQ3hpUGJXWGIwSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2686"
@@ -2505,7 +2307,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2515,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bf1ef63e-8182-46fc-b067-edff05dd87c1
+ - d545af72-cef3-48d7-a26a-7dca8189c957
status: 200 OK
code: 200
duration: ""
@@ -2526,10 +2328,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:12.606551Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:24.827157Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2538,7 +2340,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2548,7 +2350,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 63cce18c-a898-4bfb-b84f-47d3669a7e45
+ - 7ff4def9-8e6b-4aa2-ba7d-a7b7934ddb2a
status: 200 OK
code: 200
duration: ""
@@ -2559,19 +2361,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/nodes?order_by=created_at_asc&page=1&pool_id=7af078ed-83f7-45f2-bd37-f098116c5775&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/nodes?order_by=created_at_asc&page=1&pool_id=cd667153-c714-4856-9cb0-38c2d955fdcf&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:10.581390Z","error_message":null,"id":"ec5df55c-b0c2-421c-9e24-79d167e9978d","name":"scw-test-pool-upgrade-test-pool-upgrade-ec5df5","pool_id":"7af078ed-83f7-45f2-bd37-f098116c5775","provider_id":"scaleway://instance/fr-par-1/110c3a12-14ef-47f6-850b-31eca03d54df","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:12.589619Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:31.155295Z","error_message":null,"id":"eff162db-e89c-4c6a-9f71-f24a82bda368","name":"scw-test-pool-upgrade-test-pool-upgrade-eff162","pool_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","provider_id":"scaleway://instance/fr-par-1/b48d7f57-9e81-4104-ba20-7f1d056cbabe","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:24.812224Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:17 GMT
+ - Fri, 08 Dec 2023 16:03:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2581,7 +2383,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3df66439-cb39-455e-9fc8-b575ae9961eb
+ - 0e2626d2-cd1d-4d37-bdb5-43e4bcd1a939
status: 200 OK
code: 200
duration: ""
@@ -2592,19 +2394,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dbed4a58-32da-4870-8376-0629a3a5f6b7
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c451e814-527e-4d28-9eed-4e61a0b87115
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.822758Z","dhcp_enabled":true,"id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.822758Z","id":"fc9c7227-841e-4c91-8ca6-b767e00b16eb","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:51:13.822758Z"},{"created_at":"2023-11-13T13:51:13.822758Z","id":"4c0505d2-09bc-44d3-8f24-6606c2d86d60","subnet":"fd63:256c:45f7:7b5c::/64","updated_at":"2023-11-13T13:51:13.822758Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.822758Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.231418Z","dhcp_enabled":true,"id":"c451e814-527e-4d28-9eed-4e61a0b87115","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.231418Z","id":"5523db83-5143-4a5b-8866-758b8b095b1d","subnet":"172.16.0.0/22","updated_at":"2023-12-08T15:58:32.231418Z"},{"created_at":"2023-12-08T15:58:32.231418Z","id":"37aabd75-2d26-43ff-8ddd-096b16f4a04f","subnet":"fd63:256c:45f7:95ed::/64","updated_at":"2023-12-08T15:58:32.231418Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.231418Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "725"
+ - "724"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:18 GMT
+ - Fri, 08 Dec 2023 16:03:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2614,7 +2416,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 80d173fe-6f0b-4195-bee6-76e7957755e9
+ - 045e0199-e784-4fa6-b628-2463e67ef710
status: 200 OK
code: 200
duration: ""
@@ -2625,10 +2427,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.705058Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:00:04.272777Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -2637,7 +2439,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:18 GMT
+ - Fri, 08 Dec 2023 16:03:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2647,7 +2449,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - edc9c820-d0dc-41c4-86fe-b0c2e18987fd
+ - 5cede677-69df-4516-8897-c83e8f146529
status: 200 OK
code: 200
duration: ""
@@ -2658,10 +2460,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlVTFHYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY1VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1p3Q2tSaldUUTRLMWRHYzNabFpYWlhXbWMwVFZvelNFdzNTRVZVYmk5RFIzTmpSbWh0UkdGNWNYRk5VbmhaZUdaVFJYbDJPWGw2V21KME1rZEdkMUpGTTJ3S1NHdFdNSEZYTm0wNVdFTkVibXRqU0ZaRGVWUXJlVXBvYkhCNmFUVktMMlZtVEhOQlkxVlljbEZ6UkdSMGNGQlVUWEZKYjNrcllqZzNaVkZqVkVWcU53cFFRazB6UjFWRVdGbEdNbVZwYmxkVWNUWllRbnAzWkZCYWNGUlZVV0Z1UTI0eVUyNHpOM1ZoZVdsSk0wZDZZakV4V1U0elpXWkRhelJhZFdWc1RqbHJDazFNYTBSelEwTTBOSFZMVGxKaVNVb3lUSEJRVDJ4MlFXRkJabEV6Y0dkbmIxTlhaSEZVUVRVMFpsaHdSREZhUjNjMFZGQlVOMXBDY1RCT2RTdHNkMWtLVTFKaFYybGFNRVpzYUhkdU9HaENUaXMzWnpSUlVXMUJXSFZRV0RJeVZHeHZNR0Z0VTJaUlFqbFRUVVZUVEdwMmJURnhPV05FY1djd1NrdE5NMVl4Y3dvclMzazBabFpuZUdzek5WUm9TMk41YlZSalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTmNXOWFWa29yY0VwT1V6TnZNRFZGVmpSalVXaDJkVVJ3UkVwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmIyRTVVVTUzY1ZoaFZsZFRSbk52V1hwSVRsUXJlbmsyY1RRNWNWQkllRXBHUTBJMWR6UnJWVTQxUkhScVdVMVVVd3BCTTBnNGNVd3hjR2QwZDA0NFdtTnNhMGQ0ZWpneWF6ZFhhamRTZUZSdU1VTjRWR3hXVmswNVFuUmFaMlo0VEdGd1pscFNWblpWWmpnM2RtMVVPQ3RXQ210SlRUbHJPSGRoYURkeVIyRjBTbWhTSzJwSU1ISldPRmxoT0U5aFVtMVFaVUk0UjNwWFpGbFFhalpRUWk5allXSm1WMFphTm1kUlpFbEZWRVUxVW5vS00wNTZZMDQ0WnpSM1UzSjVaMnhsU25nNGRFRjFNM2xUVDJRM2J5dGxielZWVm5KTGVsWlhSV2c1Y0ZWTFZGbFBNR3RVUW5sbVdERndhbVpFTUZGQkt3b3dheTlSY0VWUlNGRlZPSGd4VUU5NVNHcDFiMmhzZEhsT1VqbEljRXhIVVhOb1YyVkhWMDAyU21RNFptVkVaeTlLYUhCUlNtb3hhRll4Y0dwVk5FOHdDalJEYnpOT1NHNHhjbU5YYVVGNWNuaHBNMkpxYzFjeU1YVlVaVmhoUzBaaVltbHhTQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzdkNTc5YTctYWQxOC00YjBmLTg5ZGQtNmI3ZDM4MjhmNjllLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbzlCUWJjM3BVYkN0MkpubHgxakU1aDBBTkxEQ0h1MTZnbXVsTm4wNFJmek9QVDZDMVhpS0dDdQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeFRsUm5lazVzYjFoRVZFMTZUVlJKZDA1NlJURk9WR2Q2VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVSGxUQ25Oek5sRnNOVTUyTUdGNWRVaGplVk52S3psc1FsVkdiRFZDWWtKVFVWSlJkR1JKU25ZNU9FeEdPVXhIY1hKb1VYRTVRMFJEVHpWNGNYSldRa3hEUm00S1kzWktiWE5qU2xWVVZITklUVUpuWjNaWmJWaElaMjg1UjFrNVVIaFZlSGszZUZwRVduRlFWM2NyVDBrcloxSm5PVUZoVW0xeFlXTlJXa1JIYUZGTlVncDRkMjh3TUdkVmVuWTNiVGcwVW1kb1puSm1hMEp0VFVod1JqVktRMkpUSzFCRU5HZE1jbVo1SzAxUmNtNVNZVmwwVlhWTlMxVklSbmcwTkdrM2FHVXJDbFJHZFZweVdWWXJRbFEzVDFkVE1teGFVVUowTkhZM2FVaGlWRGR5THk5b1NrUXZRM2RuVDNsSGVtaGpTemcwVWtOVE5sUmhPWEE1TUZkRGRXMVdkVFFLVFhweWRYZFpXRFJsWlhKclpETjRlbE0wY2l0U1dGRXdSMGRzU25KdVIxSjJOV05CT1VKNGNTOXlPVTF3Y1hOVk5VbE1TVkYyVW5SNmJHaE5Ta3htU3dwd2FGQkxhbEJ4VFc1NlVXazJkbFk1SzBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSFkwSjNlbTEwUzAxUVYyZENORGxoVGt4TkszUTRORnBEVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGFFZzVTV1JqYW1WWk5tNVVWa0pqWlRacFVtRXJjak5DZFVaRmFFNWhLMHBNY0haWFduZEZia0ZSYVVOcFozZEhUQXBUUm1aME9VVnNjelJ4UkdsemJYTlFaVXBIVERKWVRUUkNURE55WVZGUVRXdHhiM2RQZG1kcWFXcENSbGg2UjFGNWJXZDVhMkpqUVRkVFZXeG9WMXBSQ2xwUFJtaHNiV2RyUkV4WFpWZzBNRGw2ZEROamEwcFhhbGxSWTFWWU1HRk1aakV4TTAxMFNYbzFaREE0UkRGQ1JqQkRWa1pQWlRKdFlrbERZVzE0UzNNS1ZucERVMFIyYWtwSFNEQnRlbXQ0ZUVsWGIyODBSbE5MWjBKamFHbDZaRlppZFZCcWIxWm9WVVpxWjJJM1dtaGtSVU5NT1ZoSlVsWmFlamMwYVhWVFVBb3hXSEkxTTJkdFEyazROMU5yYlVkelVURkJWbUpZWkdWbFJqUlhOV04zZURKTFRFVjRRbmRFSzBGMloxZEViemxaUVU5SlRHRjROa3RIWVd0TGJTOVNDa0ZOU25ZelJWTkdTV2t4ZGsxaFdHWlVNbEZtWWxwWWEyWlFialZLY25sNU1rdEZiQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDY1NDdjNGEtMzg5MS00MmY2LTk5MTktZjY3ZDc3NTY4ODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJVlc3dDNnM3Z3MERWcFVFRlRieURNSlRJcTF6eTFzdnZRTEl2bU5GaGYxc0FxQ3hpUGJXWGIwSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2686"
@@ -2670,7 +2472,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:18 GMT
+ - Fri, 08 Dec 2023 16:03:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2680,7 +2482,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1c505fcd-0ec7-4ff1-a92b-f761ead591e2
+ - 7ab49952-4ef6-4cf9-afd5-3c503c56c1de
status: 200 OK
code: 200
duration: ""
@@ -2691,10 +2493,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:12.606551Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:24.827157Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2703,7 +2505,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:18 GMT
+ - Fri, 08 Dec 2023 16:03:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2713,7 +2515,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1293821d-98ce-4764-91e7-baf2dea97ec2
+ - d897a5e8-09f8-4f0c-94f3-3d14235e1e2e
status: 200 OK
code: 200
duration: ""
@@ -2724,19 +2526,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/nodes?order_by=created_at_asc&page=1&pool_id=7af078ed-83f7-45f2-bd37-f098116c5775&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/nodes?order_by=created_at_asc&page=1&pool_id=cd667153-c714-4856-9cb0-38c2d955fdcf&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:10.581390Z","error_message":null,"id":"ec5df55c-b0c2-421c-9e24-79d167e9978d","name":"scw-test-pool-upgrade-test-pool-upgrade-ec5df5","pool_id":"7af078ed-83f7-45f2-bd37-f098116c5775","provider_id":"scaleway://instance/fr-par-1/110c3a12-14ef-47f6-850b-31eca03d54df","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:12.589619Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:31.155295Z","error_message":null,"id":"eff162db-e89c-4c6a-9f71-f24a82bda368","name":"scw-test-pool-upgrade-test-pool-upgrade-eff162","pool_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","provider_id":"scaleway://instance/fr-par-1/b48d7f57-9e81-4104-ba20-7f1d056cbabe","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:24.812224Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:18 GMT
+ - Fri, 08 Dec 2023 16:03:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2746,7 +2548,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86cc7a6e-b833-4a55-9adc-5ad4d9191638
+ - 84407850-8f88-44b0-a195-9452c9756755
status: 200 OK
code: 200
duration: ""
@@ -2759,10 +2561,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: PATCH
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:19.146085135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:29.366837769Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "693"
@@ -2771,7 +2573,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2781,7 +2583,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 99d7e26f-31b5-424f-8aea-6a3542ae382d
+ - 296d3ff2-3ee2-4410-8511-e0edd8e713f6
status: 200 OK
code: 200
duration: ""
@@ -2792,10 +2594,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:19.146085Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:29.366838Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2804,7 +2606,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2814,7 +2616,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c9508ed4-445f-4e30-879f-5d612b777617
+ - e9b280fa-8b28-49ee-bcc8-ea9461708c61
status: 200 OK
code: 200
duration: ""
@@ -2825,10 +2627,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:19.146085Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:29.366838Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2837,7 +2639,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2847,7 +2649,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfe46b79-8c53-4fa7-a2b1-f955ee7f55cc
+ - 7d15fda1-e3de-4e7c-9869-166c6a595844
status: 200 OK
code: 200
duration: ""
@@ -2858,19 +2660,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/nodes?order_by=created_at_asc&page=1&pool_id=7af078ed-83f7-45f2-bd37-f098116c5775&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/nodes?order_by=created_at_asc&page=1&pool_id=cd667153-c714-4856-9cb0-38c2d955fdcf&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:10.581390Z","error_message":null,"id":"ec5df55c-b0c2-421c-9e24-79d167e9978d","name":"scw-test-pool-upgrade-test-pool-upgrade-ec5df5","pool_id":"7af078ed-83f7-45f2-bd37-f098116c5775","provider_id":"scaleway://instance/fr-par-1/110c3a12-14ef-47f6-850b-31eca03d54df","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:12.589619Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:31.155295Z","error_message":null,"id":"eff162db-e89c-4c6a-9f71-f24a82bda368","name":"scw-test-pool-upgrade-test-pool-upgrade-eff162","pool_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","provider_id":"scaleway://instance/fr-par-1/b48d7f57-9e81-4104-ba20-7f1d056cbabe","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:24.812224Z"}],"total_count":1}'
headers:
Content-Length:
- - "658"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2880,7 +2682,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eaef58ea-c777-4d6f-94c5-cf13b1f6b901
+ - 2c3dcbf9-7d5d-4298-9ce9-8ada49feca85
status: 200 OK
code: 200
duration: ""
@@ -2891,10 +2693,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.705058Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:00:04.272777Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -2903,7 +2705,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2913,7 +2715,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a28b72c-1fb3-4b2f-baae-4f96b54d93c2
+ - b1bfe789-954f-4842-b1d4-2949d7f974e8
status: 200 OK
code: 200
duration: ""
@@ -2924,10 +2726,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:19.146085Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:29.366838Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -2936,7 +2738,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:03:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2946,7 +2748,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fb813773-3972-4b67-aade-31a3b0495be6
+ - f51058fa-c188-4007-b866-33cb9439d70c
status: 200 OK
code: 200
duration: ""
@@ -2957,19 +2759,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dbed4a58-32da-4870-8376-0629a3a5f6b7
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c451e814-527e-4d28-9eed-4e61a0b87115
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.822758Z","dhcp_enabled":true,"id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.822758Z","id":"fc9c7227-841e-4c91-8ca6-b767e00b16eb","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:51:13.822758Z"},{"created_at":"2023-11-13T13:51:13.822758Z","id":"4c0505d2-09bc-44d3-8f24-6606c2d86d60","subnet":"fd63:256c:45f7:7b5c::/64","updated_at":"2023-11-13T13:51:13.822758Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.822758Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:32.231418Z","dhcp_enabled":true,"id":"c451e814-527e-4d28-9eed-4e61a0b87115","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:32.231418Z","id":"5523db83-5143-4a5b-8866-758b8b095b1d","subnet":"172.16.0.0/22","updated_at":"2023-12-08T15:58:32.231418Z"},{"created_at":"2023-12-08T15:58:32.231418Z","id":"37aabd75-2d26-43ff-8ddd-096b16f4a04f","subnet":"fd63:256c:45f7:95ed::/64","updated_at":"2023-12-08T15:58:32.231418Z"}],"tags":[],"updated_at":"2023-12-08T15:58:32.231418Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "725"
+ - "724"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:20 GMT
+ - Fri, 08 Dec 2023 16:03:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2979,7 +2781,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8f99574-d38a-4abf-b62b-fcb9bb90b4a6
+ - 9055f8cc-a158-4d31-a5b5-7d7c7fcc4847
status: 200 OK
code: 200
duration: ""
@@ -2990,10 +2792,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:52:43.705058Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:00:04.272777Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1511"
@@ -3002,7 +2804,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:20 GMT
+ - Fri, 08 Dec 2023 16:03:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3012,7 +2814,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4f36f4f9-f0b7-4dce-8a6d-bc95e210187d
+ - de56be0c-8ee8-4ad2-a217-1242334f2021
status: 200 OK
code: 200
duration: ""
@@ -3023,10 +2825,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUkZlVTFHYjFoRVZFMTZUVlJGZUUxcVJYcE9WRVY1VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1p3Q2tSaldUUTRLMWRHYzNabFpYWlhXbWMwVFZvelNFdzNTRVZVYmk5RFIzTmpSbWh0UkdGNWNYRk5VbmhaZUdaVFJYbDJPWGw2V21KME1rZEdkMUpGTTJ3S1NHdFdNSEZYTm0wNVdFTkVibXRqU0ZaRGVWUXJlVXBvYkhCNmFUVktMMlZtVEhOQlkxVlljbEZ6UkdSMGNGQlVUWEZKYjNrcllqZzNaVkZqVkVWcU53cFFRazB6UjFWRVdGbEdNbVZwYmxkVWNUWllRbnAzWkZCYWNGUlZVV0Z1UTI0eVUyNHpOM1ZoZVdsSk0wZDZZakV4V1U0elpXWkRhelJhZFdWc1RqbHJDazFNYTBSelEwTTBOSFZMVGxKaVNVb3lUSEJRVDJ4MlFXRkJabEV6Y0dkbmIxTlhaSEZVUVRVMFpsaHdSREZhUjNjMFZGQlVOMXBDY1RCT2RTdHNkMWtLVTFKaFYybGFNRVpzYUhkdU9HaENUaXMzWnpSUlVXMUJXSFZRV0RJeVZHeHZNR0Z0VTJaUlFqbFRUVVZUVEdwMmJURnhPV05FY1djd1NrdE5NMVl4Y3dvclMzazBabFpuZUdzek5WUm9TMk41YlZSalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTmNXOWFWa29yY0VwT1V6TnZNRFZGVmpSalVXaDJkVVJ3UkVwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmIyRTVVVTUzY1ZoaFZsZFRSbk52V1hwSVRsUXJlbmsyY1RRNWNWQkllRXBHUTBJMWR6UnJWVTQxUkhScVdVMVVVd3BCTTBnNGNVd3hjR2QwZDA0NFdtTnNhMGQ0ZWpneWF6ZFhhamRTZUZSdU1VTjRWR3hXVmswNVFuUmFaMlo0VEdGd1pscFNWblpWWmpnM2RtMVVPQ3RXQ210SlRUbHJPSGRoYURkeVIyRjBTbWhTSzJwSU1ISldPRmxoT0U5aFVtMVFaVUk0UjNwWFpGbFFhalpRUWk5allXSm1WMFphTm1kUlpFbEZWRVUxVW5vS00wNTZZMDQ0WnpSM1UzSjVaMnhsU25nNGRFRjFNM2xUVDJRM2J5dGxielZWVm5KTGVsWlhSV2c1Y0ZWTFZGbFBNR3RVUW5sbVdERndhbVpFTUZGQkt3b3dheTlSY0VWUlNGRlZPSGd4VUU5NVNHcDFiMmhzZEhsT1VqbEljRXhIVVhOb1YyVkhWMDAyU21RNFptVkVaeTlLYUhCUlNtb3hhRll4Y0dwVk5FOHdDalJEYnpOT1NHNHhjbU5YYVVGNWNuaHBNMkpxYzFjeU1YVlVaVmhoUzBaaVltbHhTQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzdkNTc5YTctYWQxOC00YjBmLTg5ZGQtNmI3ZDM4MjhmNjllLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbzlCUWJjM3BVYkN0MkpubHgxakU1aDBBTkxEQ0h1MTZnbXVsTm4wNFJmek9QVDZDMVhpS0dDdQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeFRsUm5lazVzYjFoRVZFMTZUVlJKZDA1NlJURk9WR2Q2VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVSGxUQ25Oek5sRnNOVTUyTUdGNWRVaGplVk52S3psc1FsVkdiRFZDWWtKVFVWSlJkR1JKU25ZNU9FeEdPVXhIY1hKb1VYRTVRMFJEVHpWNGNYSldRa3hEUm00S1kzWktiWE5qU2xWVVZITklUVUpuWjNaWmJWaElaMjg1UjFrNVVIaFZlSGszZUZwRVduRlFWM2NyVDBrcloxSm5PVUZoVW0xeFlXTlJXa1JIYUZGTlVncDRkMjh3TUdkVmVuWTNiVGcwVW1kb1puSm1hMEp0VFVod1JqVktRMkpUSzFCRU5HZE1jbVo1SzAxUmNtNVNZVmwwVlhWTlMxVklSbmcwTkdrM2FHVXJDbFJHZFZweVdWWXJRbFEzVDFkVE1teGFVVUowTkhZM2FVaGlWRGR5THk5b1NrUXZRM2RuVDNsSGVtaGpTemcwVWtOVE5sUmhPWEE1TUZkRGRXMVdkVFFLVFhweWRYZFpXRFJsWlhKclpETjRlbE0wY2l0U1dGRXdSMGRzU25KdVIxSjJOV05CT1VKNGNTOXlPVTF3Y1hOVk5VbE1TVkYyVW5SNmJHaE5Ta3htU3dwd2FGQkxhbEJ4VFc1NlVXazJkbFk1SzBoRlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSFkwSjNlbTEwUzAxUVYyZENORGxoVGt4TkszUTRORnBEVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGFFZzVTV1JqYW1WWk5tNVVWa0pqWlRacFVtRXJjak5DZFVaRmFFNWhLMHBNY0haWFduZEZia0ZSYVVOcFozZEhUQXBUUm1aME9VVnNjelJ4UkdsemJYTlFaVXBIVERKWVRUUkNURE55WVZGUVRXdHhiM2RQZG1kcWFXcENSbGg2UjFGNWJXZDVhMkpqUVRkVFZXeG9WMXBSQ2xwUFJtaHNiV2RyUkV4WFpWZzBNRGw2ZEROamEwcFhhbGxSWTFWWU1HRk1aakV4TTAxMFNYbzFaREE0UkRGQ1JqQkRWa1pQWlRKdFlrbERZVzE0UzNNS1ZucERVMFIyYWtwSFNEQnRlbXQ0ZUVsWGIyODBSbE5MWjBKamFHbDZaRlppZFZCcWIxWm9WVVpxWjJJM1dtaGtSVU5NT1ZoSlVsWmFlamMwYVhWVFVBb3hXSEkxTTJkdFEyazROMU5yYlVkelVURkJWbUpZWkdWbFJqUlhOV04zZURKTFRFVjRRbmRFSzBGMloxZEViemxaUVU5SlRHRjROa3RIWVd0TGJTOVNDa0ZOU25ZelJWTkdTV2t4ZGsxaFdHWlVNbEZtWWxwWWEyWlFialZLY25sNU1rdEZiQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDY1NDdjNGEtMzg5MS00MmY2LTk5MTktZjY3ZDc3NTY4ODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJVlc3dDNnM3Z3MERWcFVFRlRieURNSlRJcTF6eTFzdnZRTEl2bU5GaGYxc0FxQ3hpUGJXWGIwSA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2686"
@@ -3035,7 +2837,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:20 GMT
+ - Fri, 08 Dec 2023 16:03:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3045,7 +2847,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3e024b65-d4a4-45d0-a9e6-433450d0d045
+ - 29fc4214-ec17-4da8-ad2e-ea563a862796
status: 200 OK
code: 200
duration: ""
@@ -3056,10 +2858,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:19.146085Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:29.366838Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "690"
@@ -3068,7 +2870,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:20 GMT
+ - Fri, 08 Dec 2023 16:03:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3078,7 +2880,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 937edbda-1809-47e5-962c-d1f95b54d14d
+ - 54f0fa4c-d3ec-406e-b313-5d9e6998ecb2
status: 200 OK
code: 200
duration: ""
@@ -3089,19 +2891,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e/nodes?order_by=created_at_asc&page=1&pool_id=7af078ed-83f7-45f2-bd37-f098116c5775&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f/nodes?order_by=created_at_asc&page=1&pool_id=cd667153-c714-4856-9cb0-38c2d955fdcf&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:10.581390Z","error_message":null,"id":"ec5df55c-b0c2-421c-9e24-79d167e9978d","name":"scw-test-pool-upgrade-test-pool-upgrade-ec5df5","pool_id":"7af078ed-83f7-45f2-bd37-f098116c5775","provider_id":"scaleway://instance/fr-par-1/110c3a12-14ef-47f6-850b-31eca03d54df","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:56:19.887216Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:00:31.155295Z","error_message":null,"id":"eff162db-e89c-4c6a-9f71-f24a82bda368","name":"scw-test-pool-upgrade-test-pool-upgrade-eff162","pool_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","provider_id":"scaleway://instance/fr-par-1/b48d7f57-9e81-4104-ba20-7f1d056cbabe","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:03:30.118433Z"}],"total_count":1}'
headers:
Content-Length:
- - "688"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:20 GMT
+ - Fri, 08 Dec 2023 16:03:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3111,7 +2913,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6257b693-1d64-4808-8512-3dbf3828efa7
+ - d5bfc0a0-0603-4e96-a518-241ca0d02b62
status: 200 OK
code: 200
duration: ""
@@ -3122,10 +2924,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:21.219691578Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:31.459311539Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "696"
@@ -3134,7 +2936,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:21 GMT
+ - Fri, 08 Dec 2023 16:03:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3144,7 +2946,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d7a49734-03fe-4259-acf1-d05e02cd96e9
+ - c992dcea-98ff-4c6a-b088-df40dd694894
status: 200 OK
code: 200
duration: ""
@@ -3155,10 +2957,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:21.219692Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:31.459312Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "693"
@@ -3167,7 +2969,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:21 GMT
+ - Fri, 08 Dec 2023 16:03:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3177,7 +2979,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22a36457-29bf-4c09-a8a6-a8b4886613a9
+ - 5213bc3a-239d-4ded-b5d3-7162c0c79bb3
status: 200 OK
code: 200
duration: ""
@@ -3188,10 +2990,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:21.219692Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:31.459312Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "693"
@@ -3200,7 +3002,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:26 GMT
+ - Fri, 08 Dec 2023 16:03:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3210,7 +3012,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0291f33a-7c03-4baa-b0fd-cb853168354e
+ - 78996791-ee74-404c-a01e-8dfb6e8fa0c0
status: 200 OK
code: 200
duration: ""
@@ -3221,10 +3023,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:21.219692Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:31.459312Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "693"
@@ -3233,7 +3035,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:31 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3243,7 +3045,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4335d943-45d7-4305-86ad-e2f34273c92a
+ - 45bbdfb2-9c7f-486e-90d8-d1c6a720606a
status: 200 OK
code: 200
duration: ""
@@ -3254,10 +3056,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","container_runtime":"containerd","created_at":"2023-11-13T13:51:23.998909Z","id":"7af078ed-83f7-45f2-bd37-f098116c5775","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-11-13T13:56:21.219692Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d6547c4a-3891-42f6-9919-f67d7756884f","container_runtime":"containerd","created_at":"2023-12-08T15:58:39.041546Z","id":"cd667153-c714-4856-9cb0-38c2d955fdcf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-12-08T16:03:31.459312Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "693"
@@ -3266,7 +3068,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:36 GMT
+ - Fri, 08 Dec 2023 16:03:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3276,7 +3078,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6b55fe64-71aa-4391-a92f-65c8bfeeeec7
+ - c35073ef-a807-44ef-bde1-ba36189edb62
status: 200 OK
code: 200
duration: ""
@@ -3287,10 +3089,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"7af078ed-83f7-45f2-bd37-f098116c5775","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3299,7 +3101,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:41 GMT
+ - Fri, 08 Dec 2023 16:03:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3309,7 +3111,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e06c11fd-768a-46f1-af88-39f602817055
+ - 294fc820-aa28-457b-a19c-fbf9a7b53130
status: 404 Not Found
code: 404
duration: ""
@@ -3320,10 +3122,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:56:41.529496406Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.085755854Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1517"
@@ -3332,40 +3134,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:41 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 67b87351-98a3-4426-a34a-22ace1261fdf
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:56:41.529496Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1514"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 13:56:41 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3375,7 +3144,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f0b578b-4494-4728-a9fc-401f0672e5e2
+ - 9e5e7651-ff86-40bb-b070-ab6a06f05161
status: 200 OK
code: 200
duration: ""
@@ -3386,10 +3155,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:56:41.529496Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.085756Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1514"
@@ -3398,7 +3167,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:46 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3408,7 +3177,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 84a53bbb-6507-4ab1-b36a-a87fec702ad1
+ - 46e47503-7e99-4845-870f-102ec0ac851b
status: 200 OK
code: 200
duration: ""
@@ -3419,10 +3188,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:51:18.577684Z","created_at":"2023-11-13T13:51:18.577684Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c7d579a7-ad18-4b0f-89dd-6b7d3828f69e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-11-13T13:56:41.529496Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d6547c4a-3891-42f6-9919-f67d7756884f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:33.638989Z","created_at":"2023-12-08T15:58:33.638989Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d6547c4a-3891-42f6-9919-f67d7756884f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d6547c4a-3891-42f6-9919-f67d7756884f","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c451e814-527e-4d28-9eed-4e61a0b87115","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-12-08T16:03:52.085756Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1514"
@@ -3431,7 +3200,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:51 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3441,7 +3210,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a1cbd985-4690-4170-b56b-cc7e933c153e
+ - 55a65051-8977-4722-a712-5e89823d63f4
status: 200 OK
code: 200
duration: ""
@@ -3452,10 +3221,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"d6547c4a-3891-42f6-9919-f67d7756884f","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3464,7 +3233,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3474,7 +3243,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5da656cf-af39-4a54-91a8-7b23cb1943aa
+ - 1fb1f978-ca7b-43b1-b44c-801093566cc7
status: 404 Not Found
code: 404
duration: ""
@@ -3485,10 +3254,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dbed4a58-32da-4870-8376-0629a3a5f6b7
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c451e814-527e-4d28-9eed-4e61a0b87115
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"c451e814-527e-4d28-9eed-4e61a0b87115","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3497,7 +3266,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3507,7 +3276,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 81a1b954-fc74-4088-b968-45f9e89c4a20
+ - 3db1ccee-119a-4189-8d10-c11ac23a7839
status: 404 Not Found
code: 404
duration: ""
@@ -3518,10 +3287,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7af078ed-83f7-45f2-bd37-f098116c5775
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cd667153-c714-4856-9cb0-38c2d955fdcf
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"7af078ed-83f7-45f2-bd37-f098116c5775","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"cd667153-c714-4856-9cb0-38c2d955fdcf","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3530,7 +3299,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3540,7 +3309,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da29ce2c-8be7-47aa-9c17-c8f8ef73a908
+ - 302289b2-e99c-4a53-a36b-90cece1effaf
status: 404 Not Found
code: 404
duration: ""
@@ -3551,10 +3320,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c7d579a7-ad18-4b0f-89dd-6b7d3828f69e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d6547c4a-3891-42f6-9919-f67d7756884f
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"c7d579a7-ad18-4b0f-89dd-6b7d3828f69e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"d6547c4a-3891-42f6-9919-f67d7756884f","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3563,7 +3332,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3573,7 +3342,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 268abf63-502e-44f8-9fb5-1452b160f0cc
+ - 368c1a8f-86d6-4d9e-919d-5fb23ab0c717
status: 404 Not Found
code: 404
duration: ""
@@ -3584,10 +3353,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dbed4a58-32da-4870-8376-0629a3a5f6b7
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c451e814-527e-4d28-9eed-4e61a0b87115
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"dbed4a58-32da-4870-8376-0629a3a5f6b7","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"c451e814-527e-4d28-9eed-4e61a0b87115","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3596,7 +3365,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:56 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3606,7 +3375,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86da92c3-86bc-476f-8414-55d111c05ec1
+ - 2f7a6eae-6317-4fe3-aad4-249f0ab2dc09
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml
index e07c4aa491..fd7976fdd3 100644
--- a/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ca69c956-8b76-4952-9c87-ca344a861c03
+ - 2a50cc7d-2691-4876-9d61-162729b52652
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 677ef8e1-413a-46f4-b762-b6557f8837d5
+ - 14700d0e-7889-4122-92be-44dc96560f5e
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3544c880-9d21-4fe1-a4c5-0a8677c430b7
+ - 207b3516-9702-47d9-a965-05a2200baa6f
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-wait","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-wait","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504101Z","created_at":"2023-11-13T13:51:18.420504101Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.431287047Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077250Z","created_at":"2023-12-08T16:03:41.891077250Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:03:41.902705752Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1506"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d0a024c-c48f-45bc-8997-a9d4ec21f618
+ - b0313414-ed71-4c03-a579-a99503eff81d
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.431287Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:03:41.902706Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:18 GMT
+ - Fri, 08 Dec 2023 16:03:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c875dee8-60e4-4d1c-8979-0004b6e19b33
+ - c0aad4b4-f6d2-40ee-8def-cd2f169cc56a
status: 200 OK
code: 200
duration: ""
@@ -181,19 +181,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:18.431287Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:03:43.375970Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1497"
+ - "1502"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:23 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 72a06fdc-996b-4d5b-a600-c03de9a400e2
+ - b86c7f3d-b71c-4787-a85e-c6f4451e036b
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:24.074736Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:03:43.375970Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1502"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:28 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b9d39da7-20ac-4a51-95be-7158d5cbc685
+ - cb1c990f-8700-4fd4-8ebf-6dcd918f735a
status: 200 OK
code: 200
duration: ""
@@ -247,19 +247,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:24.074736Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1502"
+ - "2606"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:28 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 588bae3e-de0e-49b7-8889-d8790fae15d6
+ - e1f6fd30-04b9-4194-bb95-1bdcb90618c9
status: 200 OK
code: 200
duration: ""
@@ -280,19 +280,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:03:43.375970Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2606"
+ - "1502"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:29 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,30 +302,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c99057eb-7d0b-4c9c-85f6-69bf9680014a
+ - a8b70e58-7ed0-4e5a-af93-a8070769fe72
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"name":"test-pool-wait","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/pools
+ method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:51:24.074736Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482307Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1502"
+ - "629"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:29 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,32 +337,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e7b980c1-8781-4232-9373-63bd6b62e27b
+ - 763344db-54b0-4f16-93b9-d71f7d1ba59b
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"name":"test-pool-wait","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/pools
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
+ method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068144Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "629"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:30 GMT
+ - Fri, 08 Dec 2023 16:03:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -370,7 +370,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aa42f0cd-5f99-421f-9205-1683c2235c68
+ - 6058d45a-f346-44b3-8778-b2c2899c24a4
status: 200 OK
code: 200
duration: ""
@@ -381,10 +381,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -393,7 +393,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:31 GMT
+ - Fri, 08 Dec 2023 16:03:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -403,7 +403,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e4a2530d-4861-467b-8a4f-9763baf1c98f
+ - 2d12d17a-f518-4905-a1fc-79cc89222823
status: 200 OK
code: 200
duration: ""
@@ -414,10 +414,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -426,7 +426,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:36 GMT
+ - Fri, 08 Dec 2023 16:03:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -436,7 +436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2cf2dc3f-d5be-455c-bcb6-3b0828a09b84
+ - 0ca16b7a-c5b9-4b28-9219-453b3970d30b
status: 200 OK
code: 200
duration: ""
@@ -447,10 +447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -459,7 +459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:42 GMT
+ - Fri, 08 Dec 2023 16:04:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -469,7 +469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c299c2e9-a12b-43d1-addd-f1d1b3e28c54
+ - 11c568e0-dc80-4ebc-a56c-515512dde832
status: 200 OK
code: 200
duration: ""
@@ -480,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -492,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:47 GMT
+ - Fri, 08 Dec 2023 16:04:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 78eaf293-56d8-4627-ac02-549238642a37
+ - ad86e9c9-7b84-4525-b641-a0187050b7a1
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:52 GMT
+ - Fri, 08 Dec 2023 16:04:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ba27a816-c68a-43d5-bb68-f25669e1839d
+ - 813726af-01ce-4efe-8933-6330a9d38706
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:57 GMT
+ - Fri, 08 Dec 2023 16:04:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9197404a-9536-442f-b6db-3b20ffaed6fd
+ - e1c0f169-9d9d-4ab9-babd-bdc43433952c
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:02 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 47190214-2916-4f0e-9f8f-aa567d33e82a
+ - a2a892d9-08bb-47b4-93d0-b79815a0ea96
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:08 GMT
+ - Fri, 08 Dec 2023 16:04:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6660aacd-b46d-474a-9a51-d89357cb5fd0
+ - d1d7aac6-6449-4b61-b5f3-83d09a3d43cb
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:13 GMT
+ - Fri, 08 Dec 2023 16:04:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ceade8a0-8a69-4e23-b87f-0871c39c8256
+ - 186196cc-b52f-41c7-a81a-0d43062ba49f
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:18 GMT
+ - Fri, 08 Dec 2023 16:04:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 85a65f91-e57d-4309-913c-437d5538ddd6
+ - 59f0f709-49ce-461d-b1bb-6989fd88d55f
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:23 GMT
+ - Fri, 08 Dec 2023 16:04:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ece1c165-fa33-4796-82e8-88f850f4e1bb
+ - dbbbd639-b00b-45bb-9928-c65b4826850f
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:28 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2129768b-1cfa-4e7a-ab79-856b8cbe6104
+ - 93ba23a0-0739-4154-a35a-34d858e010cd
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:33 GMT
+ - Fri, 08 Dec 2023 16:04:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07907710-5849-4096-a7fa-3a080c2a50e5
+ - 338cf6e8-e429-4c1d-8742-5e27f6bc031f
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:38 GMT
+ - Fri, 08 Dec 2023 16:04:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2c3657ac-09c0-4177-b0b1-ed9eeb68378e
+ - b62bc658-a197-41c0-9164-683fdd143a2e
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:43 GMT
+ - Fri, 08 Dec 2023 16:05:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d921562e-8c88-481b-afb9-d438d2999d37
+ - 0af32926-a86f-48c2-b1f6-4c45072a82cc
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:48 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7a41ef40-0004-4c8f-bae0-e82ce8896ed8
+ - 2c84db17-5775-4c97-be25-e6e0e6dc7ed9
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:53 GMT
+ - Fri, 08 Dec 2023 16:05:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 539f35e8-cd80-43a7-aae7-03dd67532924
+ - 330a5e52-7c5f-41b5-a3d7-5638c84a7d3d
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:52:58 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c5b7c909-fcaf-43ad-a14e-b8c96df09659
+ - 159b56c8-ac95-44c0-bb80-a1657791daf2
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:03 GMT
+ - Fri, 08 Dec 2023 16:05:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 295d58d8-c11c-4f40-8f77-88f0bf0c02c4
+ - 6a0c6ed5-d68b-40cd-9dbd-23d849ad94f0
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:08 GMT
+ - Fri, 08 Dec 2023 16:05:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7813bca3-ed33-45cb-a608-e7050932d715
+ - 632035dd-1dc7-4e3a-ad7d-612b4dd61fec
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1053,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:14 GMT
+ - Fri, 08 Dec 2023 16:05:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4f8e73b-e90e-4739-950b-89255133b630
+ - 9666ee2d-02d8-4cb2-953e-70ad205dcdea
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1086,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:19 GMT
+ - Fri, 08 Dec 2023 16:05:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69c4bc0f-5be5-483f-9858-efecd3805c9f
+ - 69e48db1-d649-4bb3-a5a4-a735719b431a
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1119,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:24 GMT
+ - Fri, 08 Dec 2023 16:05:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e7ccf67b-8571-4e44-9757-6a2cb29ef68e
+ - d587ddea-0bba-42a0-b8a3-4d1363e182e2
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1152,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:29 GMT
+ - Fri, 08 Dec 2023 16:05:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9ac030b1-f8c5-4596-969c-fe6e3bf80fcf
+ - 36480eb2-d937-4ce4-a462-11b0119d56d4
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1185,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:34 GMT
+ - Fri, 08 Dec 2023 16:05:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a674456a-52b7-4214-814d-a4b78b272616
+ - 2330bc3d-f40e-4f2f-943d-edbe9818039e
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1218,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:39 GMT
+ - Fri, 08 Dec 2023 16:05:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8d801108-3e54-4245-be88-1b84ed106a67
+ - bbf033f9-6c8e-4f24-b45c-dd03f02fe8ba
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:44 GMT
+ - Fri, 08 Dec 2023 16:06:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9296ae98-25f9-41e0-9571-e534423777d0
+ - 84a314fe-408c-4855-aef7-978ea2d6775c
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1284,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:50 GMT
+ - Fri, 08 Dec 2023 16:06:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b67d1449-13c4-4a4f-bd3f-58cc9359bc15
+ - 80105cbf-e50b-486d-a85d-32768fd539cc
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1317,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:53:55 GMT
+ - Fri, 08 Dec 2023 16:06:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b3f27d9-6f93-4f04-b237-04af50f7e014
+ - f10c4e38-ae4c-455d-8901-d16e428e428c
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1350,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:00 GMT
+ - Fri, 08 Dec 2023 16:06:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3b6bf634-2901-4b3d-b363-cf6a3d1f9517
+ - e70597bb-8a5e-4eb2-95ca-87ed5f124145
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1383,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:05 GMT
+ - Fri, 08 Dec 2023 16:06:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 31b0d442-df03-4b52-89cc-938c2055d111
+ - 56ce1933-2e65-4441-aff1-91f813545fb7
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1416,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:10 GMT
+ - Fri, 08 Dec 2023 16:06:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9645498c-da13-4179-a966-06a2732eae3f
+ - 7e7c5c54-5464-4712-beff-3aeea6943feb
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1449,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:15 GMT
+ - Fri, 08 Dec 2023 16:06:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 355fc2b1-0aa0-45ae-ae74-2e5695e6405e
+ - 56fba5c6-ece3-4029-b6e7-4c260aca671d
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1482,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:20 GMT
+ - Fri, 08 Dec 2023 16:06:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 54889a50-84d4-48a8-94fa-ba3af3f538c7
+ - 7f641e71-1904-4c44-a684-53755052478e
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:25 GMT
+ - Fri, 08 Dec 2023 16:06:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4edcaca0-c1de-4975-87b1-98e7cdaee08b
+ - 7ea32c59-6041-44cd-8702-760587732bcb
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1548,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:30 GMT
+ - Fri, 08 Dec 2023 16:06:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 79ecb849-7e66-4881-b51e-c83de5c51961
+ - 8026992f-5ba7-4cf9-b3a3-f811ff4acbc7
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1581,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:35 GMT
+ - Fri, 08 Dec 2023 16:06:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6c622b81-f8cf-4033-a918-b1db9f3298fd
+ - c1f583c2-b44a-49eb-9fb8-14a7afb598a5
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1614,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:40 GMT
+ - Fri, 08 Dec 2023 16:07:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 72cbd8a4-8427-4402-a0fd-09da7a48968a
+ - c0b82776-d68c-467b-adab-69d784f9f93e
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1647,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:45 GMT
+ - Fri, 08 Dec 2023 16:07:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d4421c9d-d0d4-4127-8f4e-92f5022635a6
+ - f953ed26-beb9-441f-97dd-c493db2bde61
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1680,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:50 GMT
+ - Fri, 08 Dec 2023 16:07:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b356d53d-78b9-4e01-8c61-09c6984516f4
+ - 41525b9c-47d7-416f-8836-1d7cb01153f5
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1713,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:54:55 GMT
+ - Fri, 08 Dec 2023 16:07:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a7d54d01-b4a1-4185-a20b-46175d12198e
+ - 9f0d9e07-337c-4798-a94d-1a144a46baea
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1746,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:00 GMT
+ - Fri, 08 Dec 2023 16:07:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b9873a4d-000e-4036-a5d4-8f2094982583
+ - 4a9872c8-a3c0-40ba-a7da-9bceca9e0b90
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:03:47.318482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -1779,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:06 GMT
+ - Fri, 08 Dec 2023 16:07:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6bdea335-3a4d-45e9-a90a-42b60bddbd8c
+ - b5b8c674-b50b-4902-af05-4ef9511dd462
status: 200 OK
code: 200
duration: ""
@@ -1800,19 +1800,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:11 GMT
+ - Fri, 08 Dec 2023 16:07:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d59d73cb-78ba-455c-8d9d-f57c74a584eb
+ - 0cf66cae-f4c1-40c4-a252-f2d85a453951
status: 200 OK
code: 200
duration: ""
@@ -1833,19 +1833,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "626"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:16 GMT
+ - Fri, 08 Dec 2023 16:07:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2cd7b5db-6b0f-4e16-9f7d-586b292423d0
+ - 60b7706c-b6af-43c4-b150-54ba854eec7a
status: 200 OK
code: 200
duration: ""
@@ -1866,19 +1866,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:21 GMT
+ - Fri, 08 Dec 2023 16:07:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3d69bff0-7173-4a62-8ca0-1f2ea8766c8e
+ - 98a13404-e815-413e-a25e-a89a319d881d
status: 200 OK
code: 200
duration: ""
@@ -1899,19 +1899,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:07:29.588204Z"}],"total_count":1}'
headers:
Content-Length:
- - "626"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:26 GMT
+ - Fri, 08 Dec 2023 16:07:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f5a53e31-7ae0-459d-b205-33c472b81d9c
+ - d9692927-4056-46e6-8c9f-a737aabafcf2
status: 200 OK
code: 200
duration: ""
@@ -1932,19 +1932,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "626"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:31 GMT
+ - Fri, 08 Dec 2023 16:07:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1954,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 40b8deaf-ef4a-4f47-92df-98b7613c515d
+ - 8c8e95fc-f48b-4875-87e9-8ea16e87a086
status: 200 OK
code: 200
duration: ""
@@ -1965,19 +1965,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:36 GMT
+ - Fri, 08 Dec 2023 16:07:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1987,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6fdba2bc-c359-4651-ade8-91c9b559ea76
+ - 8a10a49b-38d7-43b3-b390-6e7721c55f3a
status: 200 OK
code: 200
duration: ""
@@ -1998,19 +1998,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "626"
+ - "715"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:41 GMT
+ - Fri, 08 Dec 2023 16:07:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2020,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4badd2e1-f2b9-4802-b2ab-9d0a9bd26abf
+ - 0ed6cae9-8516-43c5-80e8-9d922eb51712
status: 200 OK
code: 200
duration: ""
@@ -2031,19 +2031,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "626"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:46 GMT
+ - Fri, 08 Dec 2023 16:07:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2053,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a0c6326-389c-4380-a1a3-69c4a01d2284
+ - ecdde554-94fa-40da-bf48-4c6e0f38877d
status: 200 OK
code: 200
duration: ""
@@ -2064,19 +2064,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:51:29.808068Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "626"
+ - "2606"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:51 GMT
+ - Fri, 08 Dec 2023 16:07:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2086,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 866f01b3-8960-44f0-89f9-18d7563f1779
+ - b1b0f2ee-e18b-4ca5-90b9-934c75a8a4e0
status: 200 OK
code: 200
duration: ""
@@ -2097,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -2109,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
+ - Fri, 08 Dec 2023 16:07:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2119,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a495a191-e774-482f-b8c3-f05f8a2d7b23
+ - 8a435d99-f7c7-4f69-85a7-2977b98184ca
status: 200 OK
code: 200
duration: ""
@@ -2130,19 +2130,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:07:29.588204Z"}],"total_count":1}'
headers:
Content-Length:
- - "1494"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
+ - Fri, 08 Dec 2023 16:07:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2152,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ca365f49-c7c0-4096-95df-1db9939d1a36
+ - fbbc0332-e218-449c-860c-14b78befc8bd
status: 200 OK
code: 200
duration: ""
@@ -2163,19 +2163,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "624"
+ - "715"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2185,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 77551a57-5600-47cd-9ac7-864261a2465a
+ - 2335d1f8-2df0-4571-bd70-26d9135f8f5d
status: 200 OK
code: 200
duration: ""
@@ -2196,19 +2196,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:55:55.560650Z"}],"total_count":1}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "659"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:56 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2218,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 915cd893-559f-48ea-91a3-a48ff1c575f4
+ - 1726c884-19f7-495e-ab19-5d04cec724e7
status: 200 OK
code: 200
duration: ""
@@ -2229,19 +2229,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1494"
+ - "2606"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2251,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a488fe2d-b947-400e-bce1-828fa5a1d016
+ - 6b022ba0-f810-4f75-9db6-7f290299ac5e
status: 200 OK
code: 200
duration: ""
@@ -2262,10 +2262,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -2274,7 +2274,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2284,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e4777bc-d592-4b49-9599-0bc6bd8b0dbc
+ - 9fd7d18e-3b40-419e-9540-96c0a806a935
status: 200 OK
code: 200
duration: ""
@@ -2295,19 +2295,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:07:29.588204Z"}],"total_count":1}'
headers:
Content-Length:
- - "715"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2317,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce93d2e9-dc31-4342-835f-d3251cd35897
+ - 320688e4-eb11-4005-bfad-071787e7737d
status: 200 OK
code: 200
duration: ""
@@ -2328,10 +2328,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -2340,7 +2340,42 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 0687a3a5-cc20-4549-9803-8479bd34c28a
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"name":"test-pool-wait-2","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/pools
+ method: POST
+ response:
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996367634Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "631"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:07:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2350,7 +2385,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 976844b7-61ae-46cf-a73e-d809d5602520
+ - 126ac092-5312-4a64-8db7-881c22a6674f
status: 200 OK
code: 200
duration: ""
@@ -2361,19 +2396,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2606"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2383,7 +2418,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4065fcb9-9533-4f0a-a8b4-4d331f876a7a
+ - 14dacc3a-d901-48ce-82d4-45e497e4f4b7
status: 200 OK
code: 200
duration: ""
@@ -2394,19 +2429,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2416,7 +2451,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29a580bc-d0de-492b-90d7-1fc22d9ba572
+ - 7c95be4f-b6ad-42f1-a31e-e7307df0a9dd
status: 200 OK
code: 200
duration: ""
@@ -2427,19 +2462,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:55:55.560650Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "659"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:57 GMT
+ - Fri, 08 Dec 2023 16:07:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2449,7 +2484,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 286fb343-135f-4170-843a-919ce49c0a2c
+ - 0591d2ab-0a69-403c-91bc-47a1b8062470
status: 200 OK
code: 200
duration: ""
@@ -2460,19 +2495,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "715"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:58 GMT
+ - Fri, 08 Dec 2023 16:07:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2482,7 +2517,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f06a1583-0db0-46d2-a96e-c96bf09e001b
+ - e3ff3927-1147-4477-90df-de5ed8984a8f
status: 200 OK
code: 200
duration: ""
@@ -2493,19 +2528,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1494"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:58 GMT
+ - Fri, 08 Dec 2023 16:07:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2515,7 +2550,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2ebd90c0-8551-42fd-9ce0-d79b70f3048f
+ - 655c450b-d674-4c39-b7c0-eecd790e6b6a
status: 200 OK
code: 200
duration: ""
@@ -2526,19 +2561,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2606"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:58 GMT
+ - Fri, 08 Dec 2023 16:07:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2548,7 +2583,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 353281b4-dd37-4ff7-9cb1-cbb0fbf1799b
+ - c0f0c1ee-0536-4ccf-8443-68f7cb42a1aa
status: 200 OK
code: 200
duration: ""
@@ -2559,19 +2594,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:58 GMT
+ - Fri, 08 Dec 2023 16:08:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2581,7 +2616,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce5706ba-ed0b-4adf-b53e-4d63407ba140
+ - 48c92735-1ac9-48ba-ac57-acd1afbf44d2
status: 200 OK
code: 200
duration: ""
@@ -2592,19 +2627,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:55:55.560650Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "659"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:58 GMT
+ - Fri, 08 Dec 2023 16:08:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2614,7 +2649,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - be4a69b1-a65b-4d4a-a839-d8f11fc7b265
+ - 212dc47e-67c7-4502-8882-9b6ccb655314
status: 200 OK
code: 200
duration: ""
@@ -2625,19 +2660,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1494"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:59 GMT
+ - Fri, 08 Dec 2023 16:08:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2647,32 +2682,63 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1776d216-0896-49ed-8e88-d4f0e3e53f2a
+ - 8cab3fb7-7bd0-4b59-bb02-d126a6025d85
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"name":"test-pool-wait-2","node_type":"gp1_xs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}'
+ body: ""
form: {}
headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
+ method: GET
+ response:
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "628"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
+ Date:
+ - Fri, 08 Dec 2023 16:08:18 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - bbbbe26c-6a7b-46c8-a328-daabda2ec041
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/pools
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
+ method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693463Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "631"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:59 GMT
+ - Fri, 08 Dec 2023 16:08:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2682,7 +2748,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 139c8a73-f1d4-4c8d-96a3-ffaeb30110d0
+ - 9173b46d-bd88-4005-a9b9-9cce2debd4dc
status: 200 OK
code: 200
duration: ""
@@ -2693,10 +2759,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2705,7 +2771,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:55:59 GMT
+ - Fri, 08 Dec 2023 16:08:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2715,7 +2781,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c002fac4-eda0-4f15-af8b-c6ae9b986378
+ - 764fab77-69d0-4256-b953-f8a116803dd8
status: 200 OK
code: 200
duration: ""
@@ -2726,10 +2792,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2738,7 +2804,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:04 GMT
+ - Fri, 08 Dec 2023 16:08:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2748,7 +2814,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9946f687-2954-433d-8d82-6d9f26725d77
+ - ce71f8ed-fc8c-4e88-ba02-9ac94d2da2c8
status: 200 OK
code: 200
duration: ""
@@ -2759,10 +2825,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2771,7 +2837,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:09 GMT
+ - Fri, 08 Dec 2023 16:08:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2781,7 +2847,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4256832c-e424-4bd9-ba9c-f72495afb5b6
+ - 7d5ea8d6-a082-4613-913d-741b599da586
status: 200 OK
code: 200
duration: ""
@@ -2792,10 +2858,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2804,7 +2870,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:14 GMT
+ - Fri, 08 Dec 2023 16:08:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2814,7 +2880,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5cdc636c-4903-4655-adac-8ef5c51bed93
+ - caf7baaa-8b5f-451a-911b-cf354830acf6
status: 200 OK
code: 200
duration: ""
@@ -2825,10 +2891,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2837,7 +2903,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:19 GMT
+ - Fri, 08 Dec 2023 16:08:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2847,7 +2913,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1618e7d-94f1-4691-a690-e6cff25ae778
+ - e5fdc37a-c2d3-4ae3-83ed-12b0a3a0463c
status: 200 OK
code: 200
duration: ""
@@ -2858,10 +2924,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2870,7 +2936,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:24 GMT
+ - Fri, 08 Dec 2023 16:08:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2880,7 +2946,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e0df4190-84cb-4ec3-ac77-edf89735b264
+ - 5b2f1013-f11c-49e0-9cf4-fbf7a125cfbb
status: 200 OK
code: 200
duration: ""
@@ -2891,10 +2957,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2903,7 +2969,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:30 GMT
+ - Fri, 08 Dec 2023 16:08:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2913,7 +2979,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 60233131-5e02-45a4-9e71-4d7159cd7827
+ - 369ec4b2-f3ef-4ba8-a849-464f2174ca66
status: 200 OK
code: 200
duration: ""
@@ -2924,10 +2990,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2936,7 +3002,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:35 GMT
+ - Fri, 08 Dec 2023 16:09:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2946,7 +3012,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 99868ad9-5d31-4289-a1ab-8c1729c80d62
+ - 294c224a-beba-4bd8-92b0-46faf7eff245
status: 200 OK
code: 200
duration: ""
@@ -2957,10 +3023,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -2969,7 +3035,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:40 GMT
+ - Fri, 08 Dec 2023 16:09:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2979,7 +3045,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b20f6cd-38c8-40cd-859b-749d7be12c80
+ - 9d185a8a-f172-44fb-939d-d82da98c57f1
status: 200 OK
code: 200
duration: ""
@@ -2990,10 +3056,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3002,7 +3068,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:45 GMT
+ - Fri, 08 Dec 2023 16:09:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3012,7 +3078,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8b8a755d-c365-4aa2-a745-44cdd67214df
+ - a5afaa0f-744b-481a-9cd8-e46ee0aefda9
status: 200 OK
code: 200
duration: ""
@@ -3023,10 +3089,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3035,7 +3101,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:50 GMT
+ - Fri, 08 Dec 2023 16:09:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3045,7 +3111,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b82af9e6-4294-4ac3-8dd8-13c6d737a6f7
+ - 5d4a6a5c-88d6-4989-be1f-9d16d531f322
status: 200 OK
code: 200
duration: ""
@@ -3056,10 +3122,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3068,7 +3134,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:56:55 GMT
+ - Fri, 08 Dec 2023 16:09:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3078,7 +3144,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 359d130e-6f90-4fac-940c-cf2edd3492a1
+ - e1fcc0ec-1fa8-4ad4-998d-887ce7cfd057
status: 200 OK
code: 200
duration: ""
@@ -3089,10 +3155,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3101,7 +3167,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 16:09:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3111,7 +3177,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3d32b424-39b8-49c1-ba8a-c434e1709111
+ - 2229b362-6adb-4984-b261-77d79698554c
status: 200 OK
code: 200
duration: ""
@@ -3122,10 +3188,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3134,7 +3200,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 16:09:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3144,7 +3210,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 20c64f57-a512-472d-ad62-f1d1ff805de3
+ - 4b88be66-090b-4195-a264-60d95e507c0e
status: 200 OK
code: 200
duration: ""
@@ -3155,10 +3221,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3167,7 +3233,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:10 GMT
+ - Fri, 08 Dec 2023 16:09:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3177,7 +3243,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ea429c3-f214-4208-b1db-1c9d60d53c38
+ - 6c9abf34-e7d6-4c89-93b8-795d4b442cb5
status: 200 OK
code: 200
duration: ""
@@ -3188,10 +3254,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3200,7 +3266,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 16:09:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3210,7 +3276,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0ba3ca2-4dd7-446c-80f0-02cea14652ca
+ - 8a13d43d-5f41-4485-9e23-7d86e112caea
status: 200 OK
code: 200
duration: ""
@@ -3221,10 +3287,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3233,7 +3299,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:20 GMT
+ - Fri, 08 Dec 2023 16:09:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3243,7 +3309,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da31cec8-c63e-4bc5-9741-70b721c70165
+ - d8651f62-7a0e-40e8-b5ad-612157ecca17
status: 200 OK
code: 200
duration: ""
@@ -3254,10 +3320,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3266,7 +3332,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:25 GMT
+ - Fri, 08 Dec 2023 16:09:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3276,7 +3342,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4e3905a-6608-4a5a-89fa-0ebe81104797
+ - eaedebfe-bbfc-4902-9685-40d083addb18
status: 200 OK
code: 200
duration: ""
@@ -3287,10 +3353,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3299,7 +3365,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:09:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3309,7 +3375,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 50d18e1e-0399-4df9-b4d2-acd1b57b33f5
+ - f0f688b4-7fa0-440a-b142-92c5bef62ac3
status: 200 OK
code: 200
duration: ""
@@ -3320,10 +3386,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3332,7 +3398,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:35 GMT
+ - Fri, 08 Dec 2023 16:10:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3342,7 +3408,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff8953ab-86fa-4213-8223-d947120a2072
+ - 2df306c3-214c-4816-95c8-eec8a2661d05
status: 200 OK
code: 200
duration: ""
@@ -3353,10 +3419,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:07:32.996368Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -3365,7 +3431,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:40 GMT
+ - Fri, 08 Dec 2023 16:10:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3375,7 +3441,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5bf6f55-3f80-49f1-becc-20b05eb2a927
+ - 742f9e9e-97c0-4297-99a7-a12f172a04a3
status: 200 OK
code: 200
duration: ""
@@ -3386,19 +3452,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:10.982536Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:45 GMT
+ - Fri, 08 Dec 2023 16:10:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3408,7 +3474,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d02a4e2a-ad59-46ff-a808-758a5099f512
+ - 41f99e51-02fb-4b0f-954e-0590c62ba8e8
status: 200 OK
code: 200
duration: ""
@@ -3419,19 +3485,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:10.982536Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 16:10:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3441,7 +3507,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8cd7a1d7-009b-481c-933e-a6711edc9324
+ - 4cd0fb93-c5ec-41f5-9dc2-33b693d7af4d
status: 200 OK
code: 200
duration: ""
@@ -3452,19 +3518,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:10.964512Z"}],"total_count":1}'
headers:
Content-Length:
- - "628"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:56 GMT
+ - Fri, 08 Dec 2023 16:10:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3474,7 +3540,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 98f005f0-f9ac-4a61-8068-a677ee035a38
+ - cbaf1d4f-0ca5-4417-9401-a4a0176aa4b2
status: 200 OK
code: 200
duration: ""
@@ -3485,19 +3551,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "628"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:01 GMT
+ - Fri, 08 Dec 2023 16:10:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3507,7 +3573,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 883a6cc8-ccf8-4d4e-b8ae-15a152d694f9
+ - db1a7f0c-a680-4b7a-a2c2-f5ad61cfbbd2
status: 200 OK
code: 200
duration: ""
@@ -3518,19 +3584,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:10.982536Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "628"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:06 GMT
+ - Fri, 08 Dec 2023 16:10:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3540,7 +3606,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dfbebb45-c362-47f3-acd7-0d99a4bfffff
+ - c2b9f6f9-3d82-4473-933e-ddfc0f8f424a
status: 200 OK
code: 200
duration: ""
@@ -3551,19 +3617,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "628"
+ - "715"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:11 GMT
+ - Fri, 08 Dec 2023 16:10:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3573,7 +3639,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c0ae68c3-1657-4322-9c21-0f95744e4f39
+ - e2a70277-0bb6-44b2-88b6-deed70adce63
status: 200 OK
code: 200
duration: ""
@@ -3584,19 +3650,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:55:59.388693Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "628"
+ - "1494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:16 GMT
+ - Fri, 08 Dec 2023 16:10:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3606,7 +3672,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 430b4a92-f684-4289-9a03-a05134bad964
+ - 8316eb16-dc12-4956-9bac-18212f4ca219
status: 200 OK
code: 200
duration: ""
@@ -3617,19 +3683,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:58:16.827478Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "626"
+ - "2606"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 16:10:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3639,7 +3705,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5322e3a-cb34-4b5d-8d48-6aa5dfa80f0f
+ - 0844cdc1-17fc-4358-8089-b5d233855e50
status: 200 OK
code: 200
duration: ""
@@ -3650,10 +3716,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:58:16.827478Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:10.982536Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -3662,7 +3728,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 16:10:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3672,7 +3738,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a7011f3f-d497-4c12-ae02-900a2f45cec1
+ - 0c3c7661-4a9c-4905-9502-d5f4ce25d4fb
status: 200 OK
code: 200
duration: ""
@@ -3683,19 +3749,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:58:16.814828Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "660"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 16:10:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3705,7 +3771,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7f3f134e-b666-4502-b104-a8fff74c493e
+ - e18f8e9c-42cd-4973-8092-9eec125493eb
status: 200 OK
code: 200
duration: ""
@@ -3716,19 +3782,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:10.922331Z"}],"total_count":1}'
headers:
Content-Length:
- - "1494"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 16:10:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3738,7 +3804,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 620210a7-1623-4e13-8adf-d8535364807f
+ - b5a9e2a9-2df7-47f0-a3aa-a79a37b2b6d5
status: 200 OK
code: 200
duration: ""
@@ -3749,19 +3815,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:58:16.827478Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:10.964512Z"}],"total_count":1}'
headers:
Content-Length:
- - "626"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 16:10:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3771,7 +3837,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d844b014-a5a1-4bdd-a768-a03d27e8e2a9
+ - 7ba7098e-bcd7-4b6f-a1e9-d79d4cb1c7d1
status: 200 OK
code: 200
duration: ""
@@ -3782,10 +3848,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -3794,7 +3860,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3804,7 +3870,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9b3003f6-4823-46e8-997f-da423dba7865
+ - e1afa482-d125-4447-a826-19e5270dc58b
status: 200 OK
code: 200
duration: ""
@@ -3815,10 +3881,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -3827,7 +3893,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3837,7 +3903,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92a6bac5-fd81-4a9a-8aa4-235f571ab47b
+ - 91b49943-197a-4912-83fb-2a9a5246f278
status: 200 OK
code: 200
duration: ""
@@ -3848,10 +3914,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -3860,7 +3926,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3870,7 +3936,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4f11781c-33a0-4efa-94cc-4c266fe30a4c
+ - c24d8ae1-e161-40e1-a713-ebec505cae78
status: 200 OK
code: 200
duration: ""
@@ -3881,19 +3947,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:58:16.827478Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3903,7 +3969,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 37ac2cfa-fe5f-477a-819b-46b0c575896e
+ - 887fb76f-7d33-451b-ae7a-902f27b5d132
status: 200 OK
code: 200
duration: ""
@@ -3914,19 +3980,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:10:10.982536Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3936,7 +4002,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4efa8677-827d-4f88-aca2-1da6128dbd5d
+ - 4f5192a9-baf1-4348-9fba-d64f64a78841
status: 200 OK
code: 200
duration: ""
@@ -3947,19 +4013,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:58:16.774794Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:10.964512Z"}],"total_count":1}'
headers:
Content-Length:
- - "689"
+ - "659"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3969,7 +4035,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1f4c6bb-8440-421b-a202-89a202b625a8
+ - fe81fd63-8668-4fd0-b6db-372d8b83d4d1
status: 200 OK
code: 200
duration: ""
@@ -3980,19 +4046,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:58:16.814828Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:10:10.922331Z"}],"total_count":1}'
headers:
Content-Length:
- - "660"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:22 GMT
+ - Fri, 08 Dec 2023 16:10:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4002,30 +4068,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 20370113-4b94-4539-b89f-c9fb193c6b3c
+ - b68a8885-8bb7-4acf-8949-da53997a1971
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"size":2,"max_size":2,"upgrade_policy":{"max_unavailable":null,"max_surge":null}}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
+ method: PATCH
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134663708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "715"
+ - "631"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4035,7 +4103,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3112029c-9458-4878-928d-424b12edec96
+ - 08e38022-5228-4174-9d2a-55ea07bd254c
status: 200 OK
code: 200
duration: ""
@@ -4046,19 +4114,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1494"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4068,7 +4136,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ce762dde-82a7-496c-8b90-e00d194d4afe
+ - 77c13b6d-ec7b-4920-873c-1fd6fff005a1
status: 200 OK
code: 200
duration: ""
@@ -4079,19 +4147,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2606"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4101,7 +4169,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8526495c-01ba-4733-bdaa-5b4ee67b70b0
+ - e53b0778-f0c3-41bf-b834-2298d1400496
status: 200 OK
code: 200
duration: ""
@@ -4112,19 +4180,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4134,7 +4202,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 028d7458-fd37-4891-b757-e34eeee398f4
+ - 2039e5c8-bc98-4120-8c21-3b7b672d9dd8
status: 200 OK
code: 200
duration: ""
@@ -4145,19 +4213,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:58:16.827478Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4167,7 +4235,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 724cd205-105a-479d-bffd-e024d6c9912e
+ - df883607-8118-49e2-8c71-7f4e21352b64
status: 200 OK
code: 200
duration: ""
@@ -4178,19 +4246,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:58:16.774794Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "689"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4200,7 +4268,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d168bed1-42b1-4632-9cc6-a4b340242ec3
+ - feb167a5-ded2-47bc-bffc-06114f128998
status: 200 OK
code: 200
duration: ""
@@ -4211,19 +4279,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T13:58:16.814828Z"}],"total_count":1}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "660"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:23 GMT
+ - Fri, 08 Dec 2023 16:10:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4233,32 +4301,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 766a139e-599b-4c44-abda-ac0eabef24d8
+ - 913f4fb3-797a-4b9a-bf81-e616a8b91c14
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"size":2,"max_size":2,"upgrade_policy":{"max_unavailable":null,"max_surge":null}}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
- method: PATCH
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
+ method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225267572Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "631"
+ - "628"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:24 GMT
+ - Fri, 08 Dec 2023 16:10:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4268,7 +4334,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b135aeae-dd39-4501-ae4a-db8e22cecbf0
+ - b15faeaa-bb43-48b1-816f-ed2a9e03cd97
status: 200 OK
code: 200
duration: ""
@@ -4279,10 +4345,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4291,7 +4357,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:24 GMT
+ - Fri, 08 Dec 2023 16:10:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4301,7 +4367,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d46eb9f-2799-49d2-a30d-249442797d33
+ - 0d00ebcf-2215-4d58-ab65-b3f282784ce7
status: 200 OK
code: 200
duration: ""
@@ -4312,10 +4378,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4324,7 +4390,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:29 GMT
+ - Fri, 08 Dec 2023 16:10:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4334,7 +4400,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3b1e419c-726d-4487-b465-525aaa043302
+ - ee2af6f0-1e9f-4e78-b561-6df50a6b5e71
status: 200 OK
code: 200
duration: ""
@@ -4345,10 +4411,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4357,7 +4423,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:34 GMT
+ - Fri, 08 Dec 2023 16:11:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4367,7 +4433,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e569eb08-3b2f-400b-91a5-f7a068aca08c
+ - 0ed52b61-700a-4d19-918f-2e11531bcdd8
status: 200 OK
code: 200
duration: ""
@@ -4378,10 +4444,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4390,7 +4456,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:39 GMT
+ - Fri, 08 Dec 2023 16:11:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4400,7 +4466,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ecff6a3-8a11-4e4a-ab03-0d0f2d267760
+ - ae90d674-d2e4-47ae-a5c1-32a885a417e4
status: 200 OK
code: 200
duration: ""
@@ -4411,10 +4477,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4423,7 +4489,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:11:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4433,7 +4499,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dc53c651-7fae-47a1-9d00-f2560d7c043c
+ - f60aa000-6298-4e48-b3f0-17a383da5a36
status: 200 OK
code: 200
duration: ""
@@ -4444,10 +4510,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4456,7 +4522,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:49 GMT
+ - Fri, 08 Dec 2023 16:11:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4466,7 +4532,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ee7c40d-b76d-4bc7-80c5-9a4512a159b3
+ - d59cf434-b39d-4d73-b375-9842ed9e86f5
status: 200 OK
code: 200
duration: ""
@@ -4477,10 +4543,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4489,7 +4555,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:54 GMT
+ - Fri, 08 Dec 2023 16:11:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4499,7 +4565,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da3a046f-3353-480f-8e25-b51c8744deea
+ - e1f16985-1639-46e7-be41-bbbbcdc99952
status: 200 OK
code: 200
duration: ""
@@ -4510,10 +4576,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4522,7 +4588,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:59 GMT
+ - Fri, 08 Dec 2023 16:11:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4532,7 +4598,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 920c3ec5-aa88-4c19-bf62-a87fa166b01f
+ - c5a63632-1d56-4eff-bc58-53758123a524
status: 200 OK
code: 200
duration: ""
@@ -4543,10 +4609,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4555,7 +4621,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:04 GMT
+ - Fri, 08 Dec 2023 16:11:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4565,7 +4631,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d4a8d30-2a42-46c0-929f-663042f03a79
+ - c8fe7012-72cc-4332-a360-131c8b6668ad
status: 200 OK
code: 200
duration: ""
@@ -4576,10 +4642,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4588,7 +4654,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:10 GMT
+ - Fri, 08 Dec 2023 16:11:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4598,7 +4664,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8dff89fd-d868-457c-a5d3-e56fca6b3eb8
+ - fac77e05-4c46-496d-b4a2-8ae33d5caa8f
status: 200 OK
code: 200
duration: ""
@@ -4609,10 +4675,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4621,7 +4687,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:15 GMT
+ - Fri, 08 Dec 2023 16:11:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4631,7 +4697,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 68cb20f0-df3e-4100-bd27-dbb8201e41bb
+ - 1c5ea666-fbc2-4baf-9781-eb86d944b16a
status: 200 OK
code: 200
duration: ""
@@ -4642,10 +4708,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4654,7 +4720,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:20 GMT
+ - Fri, 08 Dec 2023 16:11:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4664,7 +4730,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e0af2fd8-3105-42ee-990f-5ba6b1f9c29d
+ - 13bb1821-d9ea-4b8c-b0d4-b091eb7b16f8
status: 200 OK
code: 200
duration: ""
@@ -4675,10 +4741,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4687,7 +4753,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:25 GMT
+ - Fri, 08 Dec 2023 16:11:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4697,7 +4763,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 46e7c02c-5441-4732-8f36-371f5ceb8c5d
+ - 0fd8cdde-3fd4-4f18-9f85-738a8aea4624
status: 200 OK
code: 200
duration: ""
@@ -4708,10 +4774,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4720,7 +4786,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:30 GMT
+ - Fri, 08 Dec 2023 16:11:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4730,7 +4796,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b2cee8f-112c-4bf1-b440-b126b99d996d
+ - bdc9d9f2-e09b-415d-9aef-28d44c11d10c
status: 200 OK
code: 200
duration: ""
@@ -4741,10 +4807,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4753,7 +4819,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:36 GMT
+ - Fri, 08 Dec 2023 16:12:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4763,7 +4829,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8f9db2e6-e696-425b-8d04-a4b2ea698965
+ - bfc7e5fb-6c84-4f63-9a13-b541abc6c588
status: 200 OK
code: 200
duration: ""
@@ -4774,10 +4840,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4786,7 +4852,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:41 GMT
+ - Fri, 08 Dec 2023 16:12:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4796,7 +4862,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ea9cc82-c3f4-4a13-a5f1-ed534ec88c59
+ - fcafd2e5-20d8-4164-8c9d-4ff1a7be2ff0
status: 200 OK
code: 200
duration: ""
@@ -4807,10 +4873,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4819,7 +4885,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:46 GMT
+ - Fri, 08 Dec 2023 16:12:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4829,7 +4895,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c0e0a20-b00f-49f2-beda-8af487bdb304
+ - 5095b713-e7bb-4fc9-867e-96b425b78128
status: 200 OK
code: 200
duration: ""
@@ -4840,10 +4906,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4852,7 +4918,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:51 GMT
+ - Fri, 08 Dec 2023 16:12:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4862,7 +4928,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 85d5330f-9e3d-4dcc-abee-902a07a106e8
+ - 5ce6c0c4-1d3c-484c-9b96-9bc1ac1e94eb
status: 200 OK
code: 200
duration: ""
@@ -4873,10 +4939,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4885,7 +4951,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:56 GMT
+ - Fri, 08 Dec 2023 16:12:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4895,7 +4961,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76a265a7-f486-473e-8dee-f2fb2e398c1f
+ - 88a841fd-9757-466c-b829-9701629b6211
status: 200 OK
code: 200
duration: ""
@@ -4906,10 +4972,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4918,7 +4984,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:02 GMT
+ - Fri, 08 Dec 2023 16:12:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4928,7 +4994,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - edd6b158-6de6-4e70-a47b-8c6ca17833e9
+ - 50df7ca0-24b9-4ca0-b8ea-eb0129ebf455
status: 200 OK
code: 200
duration: ""
@@ -4939,10 +5005,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4951,7 +5017,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:07 GMT
+ - Fri, 08 Dec 2023 16:12:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4961,7 +5027,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b3eaf4fd-1383-4faa-b301-fd642454245d
+ - ccf4824d-1d89-4161-ae4c-a11e737a3242
status: 200 OK
code: 200
duration: ""
@@ -4972,10 +5038,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -4984,7 +5050,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:12 GMT
+ - Fri, 08 Dec 2023 16:12:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4994,7 +5060,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 57bfff93-ff30-48fc-9493-c257b4b503d9
+ - acacf59c-e723-4fd8-a97c-9ccedf83cc12
status: 200 OK
code: 200
duration: ""
@@ -5005,10 +5071,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5017,7 +5083,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:17 GMT
+ - Fri, 08 Dec 2023 16:12:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5027,7 +5093,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fa2eeb74-4a86-4964-a36b-2f7246a57b14
+ - 894e45e3-4a19-43c7-aeed-92fbf31101d0
status: 200 OK
code: 200
duration: ""
@@ -5038,10 +5104,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5050,7 +5116,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:22 GMT
+ - Fri, 08 Dec 2023 16:12:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5060,7 +5126,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55847615-4597-41cd-98cb-967c49c47f19
+ - f125b96f-1453-4992-b24e-70d22a5abc68
status: 200 OK
code: 200
duration: ""
@@ -5071,10 +5137,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-11-13T13:58:24.225268Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:10:18.134664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5083,7 +5149,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:28 GMT
+ - Fri, 08 Dec 2023 16:12:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5093,7 +5159,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c48f7617-c63a-45fe-b813-6db3a52bd2b4
+ - 26101028-bdd0-44f1-a619-6bb34e6173e0
status: 200 OK
code: 200
duration: ""
@@ -5104,10 +5170,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:28.400126Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:56.929053Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5116,7 +5182,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5126,7 +5192,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5c602cb6-93f6-4ab0-81ab-a71a950db75e
+ - b271a3dc-d91a-4209-a20a-22dde42fd9b7
status: 200 OK
code: 200
duration: ""
@@ -5137,10 +5203,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:28.400126Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:56.929053Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5149,7 +5215,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5159,7 +5225,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aa8c0a7d-2145-4a3d-bcec-05942a619647
+ - 817daccc-a2fa-40be-9321-b7a2ed5e4fa4
status: 200 OK
code: 200
duration: ""
@@ -5170,19 +5236,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.369092Z"},{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:24.751037Z","error_message":null,"id":"56e6989f-4a2e-45a1-b2e4-40e1ba600b97","name":"scw-test-pool-wait-test-pool-wait-2-56e6989f4a","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/0bf3144e-f31e-4830-a5aa-8a05a0f03ae8","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.387337Z"}],"total_count":2}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.915388Z"},{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:10:18.609535Z","error_message":null,"id":"c9667037-f1e1-452a-a689-1381688027d3","name":"scw-test-pool-wait-test-pool-wait-2-c9667037f1","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/cb87fd6e-0b6b-4cf9-b212-189499fef4bb","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.894185Z"}],"total_count":2}'
headers:
Content-Length:
- - "1320"
+ - "1321"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5192,7 +5258,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a4d0cc20-1fab-43e4-aec3-c1c7f509e417
+ - 399e2463-68c7-404f-9662-ad14af035b3a
status: 200 OK
code: 200
duration: ""
@@ -5203,10 +5269,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -5215,7 +5281,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5225,7 +5291,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32204f38-631d-4026-b281-797dc911d6d4
+ - 11d38442-e0f9-447d-937e-0fd3cd041a3d
status: 200 OK
code: 200
duration: ""
@@ -5236,10 +5302,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:28.400126Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:56.929053Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5248,7 +5314,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5258,7 +5324,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d5a4e348-64a9-4e67-a01a-dc76ae1301a1
+ - 1e1ccec0-5579-4c96-b29d-c28f30412a55
status: 200 OK
code: 200
duration: ""
@@ -5269,10 +5335,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -5281,7 +5347,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5291,7 +5357,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c28274a5-7504-4e38-9002-2a7c5d4b0578
+ - f435314a-454a-4628-a37a-e14aebf5f324
status: 200 OK
code: 200
duration: ""
@@ -5302,10 +5368,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -5314,7 +5380,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5324,7 +5390,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ad6d3f39-83c7-4124-bcd7-cb79953f8e32
+ - 926d8057-2ef4-473c-9f9e-746198e471cc
status: 200 OK
code: 200
duration: ""
@@ -5335,10 +5401,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -5347,7 +5413,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5357,7 +5423,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e8dab5dd-33f8-4a5a-adad-07a14fa417a3
+ - b4024c7e-3d54-4b9d-b5f6-25b880af5a43
status: 200 OK
code: 200
duration: ""
@@ -5368,19 +5434,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:56.929053Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5390,7 +5456,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3d90a118-eb1f-4f5b-a6a8-b1a15538280f
+ - 265d8b41-b3aa-47ef-9d53-24940dec3eea
status: 200 OK
code: 200
duration: ""
@@ -5401,19 +5467,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:28.400126Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5423,7 +5489,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 072b20b9-0d53-41be-a38d-d3898b342a46
+ - 0ce447b2-8f3d-4f0d-bef0-e51bfdfb2fbb
status: 200 OK
code: 200
duration: ""
@@ -5434,19 +5500,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.369092Z"},{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:24.751037Z","error_message":null,"id":"56e6989f-4a2e-45a1-b2e4-40e1ba600b97","name":"scw-test-pool-wait-test-pool-wait-2-56e6989f4a","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/0bf3144e-f31e-4830-a5aa-8a05a0f03ae8","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.387337Z"}],"total_count":2}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.915388Z"},{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:10:18.609535Z","error_message":null,"id":"c9667037-f1e1-452a-a689-1381688027d3","name":"scw-test-pool-wait-test-pool-wait-2-c9667037f1","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/cb87fd6e-0b6b-4cf9-b212-189499fef4bb","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.894185Z"}],"total_count":2}'
headers:
Content-Length:
- - "1320"
+ - "1321"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5456,7 +5522,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e54dbabe-d43e-4a7c-b7ed-0893544595b2
+ - 7345ac6e-c58b-4b93-aa4b-fdaa5214f51f
status: 200 OK
code: 200
duration: ""
@@ -5467,19 +5533,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.325930Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.849188Z"}],"total_count":1}'
headers:
Content-Length:
- - "689"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5489,7 +5555,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 436b5069-63ac-46e4-a0b4-e92a2432dfab
+ - 0a780a26-356e-4149-ae3e-841dcefbed3f
status: 200 OK
code: 200
duration: ""
@@ -5500,10 +5566,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -5512,7 +5578,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5522,7 +5588,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 77e950f5-b61c-441d-84c8-6306b39c32f1
+ - 9ca6ad97-9834-4269-9f0e-7026cd24688a
status: 200 OK
code: 200
duration: ""
@@ -5533,10 +5599,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -5545,7 +5611,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5555,7 +5621,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a84c772a-b4f1-409d-a040-eba446d5b718
+ - f952c3f8-4154-4a27-afde-38540c8c1f52
status: 200 OK
code: 200
duration: ""
@@ -5566,10 +5632,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -5578,7 +5644,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5588,7 +5654,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 31e1f3d8-6d38-4000-bc39-e047c2ca13bf
+ - 8f276df6-955c-4c8a-8042-bf8f5118f124
status: 200 OK
code: 200
duration: ""
@@ -5599,19 +5665,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-12-08T16:12:56.929053Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5621,7 +5687,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76bfc232-74a7-41c2-887d-687f69de0d58
+ - 9682a4af-bbdc-46fa-8ac9-5591b5849d80
status: 200 OK
code: 200
duration: ""
@@ -5632,19 +5698,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:28.400126Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5654,7 +5720,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f98251af-7e8c-4c2b-8c2d-fbdfd03e6e15
+ - ab3e3c8e-b625-4071-89d4-75859ad47b34
status: 200 OK
code: 200
duration: ""
@@ -5665,19 +5731,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.325930Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.915388Z"},{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:10:18.609535Z","error_message":null,"id":"c9667037-f1e1-452a-a689-1381688027d3","name":"scw-test-pool-wait-test-pool-wait-2-c9667037f1","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/cb87fd6e-0b6b-4cf9-b212-189499fef4bb","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.894185Z"}],"total_count":2}'
headers:
Content-Length:
- - "689"
+ - "1321"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5687,7 +5753,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 504ae4a9-0c2d-41b5-9210-3c626da04d29
+ - f42304d3-c825-400c-90d4-6609d1098316
status: 200 OK
code: 200
duration: ""
@@ -5698,19 +5764,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.369092Z"},{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:24.751037Z","error_message":null,"id":"56e6989f-4a2e-45a1-b2e4-40e1ba600b97","name":"scw-test-pool-wait-test-pool-wait-2-56e6989f4a","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/0bf3144e-f31e-4830-a5aa-8a05a0f03ae8","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:28.387337Z"}],"total_count":2}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:12:56.849188Z"}],"total_count":1}'
headers:
Content-Length:
- - "1320"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:35 GMT
+ - Fri, 08 Dec 2023 16:13:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5720,7 +5786,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8a8aa6d-5af3-4363-9dda-98ad017ce670
+ - a06b1a6e-d66e-40d1-9c30-f3edb7cf9a7b
status: 200 OK
code: 200
duration: ""
@@ -5733,10 +5799,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: PATCH
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:00:36.661679183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:13:02.649947938Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "631"
@@ -5745,7 +5811,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:36 GMT
+ - Fri, 08 Dec 2023 16:13:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5755,7 +5821,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d4404075-dc26-48cf-9631-c95b2cdedbda
+ - 31d457c1-9287-4579-9ea1-08b008977404
status: 200 OK
code: 200
duration: ""
@@ -5766,10 +5832,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-11-13T14:00:36.661679Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-12-08T16:13:02.649948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "628"
@@ -5778,7 +5844,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:36 GMT
+ - Fri, 08 Dec 2023 16:13:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5788,7 +5854,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5eb24e92-758a-48e7-b841-5a64cd5c16de
+ - 92c03269-2a9c-4bbe-8000-2de4b7fd07d2
status: 200 OK
code: 200
duration: ""
@@ -5799,10 +5865,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:37.890669Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:03.826057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5811,7 +5877,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:41 GMT
+ - Fri, 08 Dec 2023 16:13:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5821,7 +5887,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2fb4b83f-b456-4ad0-ac83-53fe09f3a153
+ - 5f64bad7-0dcd-4c8e-b942-1d757daea681
status: 200 OK
code: 200
duration: ""
@@ -5832,10 +5898,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:37.890669Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:03.826057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5844,7 +5910,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5854,7 +5920,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f00f438a-9490-4dfb-a29d-fc2808d32453
+ - 85314bc6-3aaf-4a5a-a7da-ac8b8d2eec4b
status: 200 OK
code: 200
duration: ""
@@ -5865,19 +5931,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-11-13T14:00:37.187557Z"},{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:24.751037Z","error_message":null,"id":"56e6989f-4a2e-45a1-b2e4-40e1ba600b97","name":"scw-test-pool-wait-test-pool-wait-2-56e6989f4a","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/0bf3144e-f31e-4830-a5aa-8a05a0f03ae8","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:37.803353Z"}],"total_count":2}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:03.739844Z"},{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:10:18.609535Z","error_message":null,"id":"c9667037-f1e1-452a-a689-1381688027d3","name":"scw-test-pool-wait-test-pool-wait-2-c9667037f1","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/cb87fd6e-0b6b-4cf9-b212-189499fef4bb","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-12-08T16:13:03.147844Z"}],"total_count":2}'
headers:
Content-Length:
- - "1323"
+ - "1324"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5887,7 +5953,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ef23ee44-398b-466d-8d64-58d5356fe235
+ - cc3883ba-e726-425c-813e-5c9513d42994
status: 200 OK
code: 200
duration: ""
@@ -5898,10 +5964,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -5910,7 +5976,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5920,7 +5986,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d09bae45-6b5d-4ace-bf04-285e1751bae8
+ - 2368f9bc-c25d-446c-9e0c-ddb312969a4a
status: 200 OK
code: 200
duration: ""
@@ -5931,10 +5997,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:37.890669Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:03.826057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -5943,7 +6009,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5953,7 +6019,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3e06a393-556f-4557-bb22-3d1107ab6d19
+ - c78194f2-62b4-474c-b8a9-1e35b84ef576
status: 200 OK
code: 200
duration: ""
@@ -5964,10 +6030,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -5976,7 +6042,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5986,7 +6052,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3d7c0522-fa34-41ee-963a-822d9a71846e
+ - a9483708-0fee-4f40-90b2-78b6781d82bd
status: 200 OK
code: 200
duration: ""
@@ -5997,10 +6063,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -6009,7 +6075,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6019,7 +6085,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26dedc6c-3710-465a-9f25-9d0655c2f0a0
+ - 0791e6c9-493d-4b36-b060-b90efdc5ffe2
status: 200 OK
code: 200
duration: ""
@@ -6030,10 +6096,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -6042,7 +6108,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6052,7 +6118,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 41984703-55f4-422d-82e1-66e5af5369a7
+ - e013d0cb-9f5e-48b7-8649-1d5f73b64b40
status: 200 OK
code: 200
duration: ""
@@ -6063,19 +6129,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:37.890669Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "626"
+ - "624"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6085,7 +6151,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f376e1a8-0d3f-418a-9dda-f684bb832d47
+ - 0a329726-810d-4ee8-8bf4-6a0cab8ed267
status: 200 OK
code: 200
duration: ""
@@ -6096,19 +6162,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:03.826057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- - "624"
+ - "626"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:42 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6118,7 +6184,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 084bfe6b-868c-4ae6-a0d7-b34c37adbbc1
+ - f5417780-adf4-4821-9918-f1e424212253
status: 200 OK
code: 200
duration: ""
@@ -6129,19 +6195,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:37.761709Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:03.696529Z"}],"total_count":1}'
headers:
Content-Length:
- - "689"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6151,7 +6217,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 34ad1e46-31f8-41fb-a432-b412482e2cc2
+ - 20244ffd-3629-4d13-b8e8-7884c3526106
status: 200 OK
code: 200
duration: ""
@@ -6162,19 +6228,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-11-13T14:00:37.187557Z"},{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:24.751037Z","error_message":null,"id":"56e6989f-4a2e-45a1-b2e4-40e1ba600b97","name":"scw-test-pool-wait-test-pool-wait-2-56e6989f4a","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/0bf3144e-f31e-4830-a5aa-8a05a0f03ae8","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:37.803353Z"}],"total_count":2}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:03.739844Z"},{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:10:18.609535Z","error_message":null,"id":"c9667037-f1e1-452a-a689-1381688027d3","name":"scw-test-pool-wait-test-pool-wait-2-c9667037f1","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/cb87fd6e-0b6b-4cf9-b212-189499fef4bb","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-12-08T16:13:03.147844Z"}],"total_count":2}'
headers:
Content-Length:
- - "1323"
+ - "1324"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6184,7 +6250,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00e5d400-6777-40d9-981a-1e3611fec56f
+ - 91b77ba2-4be0-40dc-93d0-fa1ddd2ea2f7
status: 200 OK
code: 200
duration: ""
@@ -6195,10 +6261,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -6207,7 +6273,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6217,7 +6283,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0ab8ef7d-4ffd-4e62-9282-f06f1f68366e
+ - 1a960448-e84e-4abe-bed6-3be10b729a35
status: 200 OK
code: 200
duration: ""
@@ -6228,10 +6294,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T14:00:37.890669Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:13:03.826057Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "626"
@@ -6240,7 +6306,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6250,7 +6316,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 98dcebc5-fb6b-4a5b-88d4-b70b7716e934
+ - 898c631a-905e-4d3f-a1ea-61ea6013c4b3
status: 200 OK
code: 200
duration: ""
@@ -6261,10 +6327,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -6273,7 +6339,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6283,7 +6349,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0ad6fb2d-5621-4d0b-a716-072075ab3d82
+ - ef0c6172-1164-4a53-86ed-3ebbb5d4d862
status: 200 OK
code: 200
duration: ""
@@ -6294,19 +6360,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=5644fd23-7761-4838-83e4-1ef61d65538a&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:55:59.957036Z","error_message":null,"id":"3437e43a-0b7f-4ecd-8006-75f08b3c85c6","name":"scw-test-pool-wait-test-pool-wait-2-3437e43a0b","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/913a51e9-7f15-477f-9bdb-a9eca3dbc6bf","public_ip_v4":"163.172.149.194","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-11-13T14:00:37.187557Z"},{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:58:24.751037Z","error_message":null,"id":"56e6989f-4a2e-45a1-b2e4-40e1ba600b97","name":"scw-test-pool-wait-test-pool-wait-2-56e6989f4a","pool_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","provider_id":"scaleway://instance/fr-par-1/0bf3144e-f31e-4830-a5aa-8a05a0f03ae8","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:37.803353Z"}],"total_count":2}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:07:33.540360Z","error_message":null,"id":"dbf64c73-8926-411a-9be0-aa1ee8d914d4","name":"scw-test-pool-wait-test-pool-wait-2-dbf64c7389","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/03db07e8-0a8d-4b2b-8a63-656605d89bb1","public_ip_v4":"51.158.127.156","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:03.739844Z"},{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:10:18.609535Z","error_message":null,"id":"c9667037-f1e1-452a-a689-1381688027d3","name":"scw-test-pool-wait-test-pool-wait-2-c9667037f1","pool_id":"5644fd23-7761-4838-83e4-1ef61d65538a","provider_id":"scaleway://instance/fr-par-1/cb87fd6e-0b6b-4cf9-b212-189499fef4bb","public_ip_v4":"163.172.164.36","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-12-08T16:13:03.147844Z"}],"total_count":2}'
headers:
Content-Length:
- - "1323"
+ - "1324"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6316,7 +6382,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dcd93154-fb57-4985-8f56-650fad11d21c
+ - 3d06ed6e-0315-4c24-9571-868faa24428e
status: 200 OK
code: 200
duration: ""
@@ -6327,10 +6393,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -6339,7 +6405,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6349,7 +6415,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ae7d463-58e1-4e9f-8b6a-45d05ec72bf8
+ - d19b5b54-8055-4a59-8598-ce505960063d
status: 200 OK
code: 200
duration: ""
@@ -6360,10 +6426,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -6372,7 +6438,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6382,7 +6448,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66f345a8-5da3-4c4d-91e2-665e9428fb80
+ - 4abe4985-767b-4ed5-811a-33816ae24ab1
status: 200 OK
code: 200
duration: ""
@@ -6393,19 +6459,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:37.761709Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:03.696529Z"}],"total_count":1}'
headers:
Content-Length:
- - "689"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:43 GMT
+ - Fri, 08 Dec 2023 16:13:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6415,7 +6481,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 62260a21-b944-4ae5-9c58-3a715e8f6f66
+ - 2bcbf079-c330-48de-9fd2-0b025a29c6b5
status: 200 OK
code: 200
duration: ""
@@ -6426,10 +6492,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:44.474491763Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:11.023746578Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "632"
@@ -6438,7 +6504,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:44 GMT
+ - Fri, 08 Dec 2023 16:13:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6448,7 +6514,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 49cee507-e9ed-4479-a478-31e446670e18
+ - 0d2c1bf2-c221-4c15-ba89-287ed8267425
status: 200 OK
code: 200
duration: ""
@@ -6459,10 +6525,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:44.474492Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:11.023747Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -6471,7 +6537,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:44 GMT
+ - Fri, 08 Dec 2023 16:13:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6481,7 +6547,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae3a7526-0b11-41fb-a84f-6631b31bc4ab
+ - 4638d1d9-350e-45bb-8ebd-5a6e7c7bfdbd
status: 200 OK
code: 200
duration: ""
@@ -6492,10 +6558,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:44.474492Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:11.023747Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -6504,7 +6570,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:13:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6514,7 +6580,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f8ae367-d1c3-42f6-8d3f-090d45363b2a
+ - 0c497ce3-0a40-47dc-bd8e-bd5e365c95d7
status: 200 OK
code: 200
duration: ""
@@ -6525,10 +6591,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:55:59.380132Z","id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:00:44.474492Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:07:32.989580Z","id":"5644fd23-7761-4838-83e4-1ef61d65538a","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:11.023747Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "629"
@@ -6537,7 +6603,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:54 GMT
+ - Fri, 08 Dec 2023 16:13:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6547,7 +6613,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f922c819-94ab-4bcf-b449-381d35027672
+ - 40341115-ed48-4207-94b6-5a2c2aa9f3d4
status: 200 OK
code: 200
duration: ""
@@ -6558,10 +6624,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/5644fd23-7761-4838-83e4-1ef61d65538a
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"eb99cf2f-94f6-4f95-b7db-9c2fbc8e997e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"5644fd23-7761-4838-83e4-1ef61d65538a","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -6570,7 +6636,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:59 GMT
+ - Fri, 08 Dec 2023 16:13:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6580,7 +6646,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a8930be-a95c-475f-b99d-d9b744dfc823
+ - d61fc9e6-599c-45f3-a27a-b6826feab79e
status: 404 Not Found
code: 404
duration: ""
@@ -6591,10 +6657,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -6603,7 +6669,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:59 GMT
+ - Fri, 08 Dec 2023 16:13:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6613,7 +6679,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 45636066-8a93-43fb-bb70-bf98c6bff58d
+ - 5d0f67dd-1ba1-4ed0-b5c1-bb147e43ce1e
status: 200 OK
code: 200
duration: ""
@@ -6624,10 +6690,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"created_at":"2023-11-13T13:51:13.636213Z","dhcp_enabled":true,"id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:51:13.636213Z","id":"483907c5-df3e-4110-b580-23c7724c65d4","subnet":"172.16.32.0/22","updated_at":"2023-11-13T13:51:13.636213Z"},{"created_at":"2023-11-13T13:51:13.636213Z","id":"80ea870b-5df3-4921-b0de-0bfa900ae2b7","subnet":"fd63:256c:45f7:778e::/64","updated_at":"2023-11-13T13:51:13.636213Z"}],"tags":[],"updated_at":"2023-11-13T13:51:13.636213Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:03:40.445720Z","dhcp_enabled":true,"id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:03:40.445720Z","id":"7fdb13a7-430a-4eec-9296-194976859e2d","subnet":"172.16.32.0/22","updated_at":"2023-12-08T16:03:40.445720Z"},{"created_at":"2023-12-08T16:03:40.445720Z","id":"253359d1-0e24-4397-a8e9-7d7859fdc733","subnet":"fd63:256c:45f7:48aa::/64","updated_at":"2023-12-08T16:03:40.445720Z"}],"tags":[],"updated_at":"2023-12-08T16:03:40.445720Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -6636,7 +6702,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:13:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6646,7 +6712,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01223862-4e69-4bcc-aa15-14268771f048
+ - 7c38cc5c-fc7c-4f81-9529-9dbe9b435091
status: 200 OK
code: 200
duration: ""
@@ -6657,10 +6723,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T13:53:04.190593Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:04:56.513039Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -6669,7 +6735,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:13:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6679,7 +6745,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - db12ba5f-cd97-4290-b8a9-fbe6ca35ca43
+ - f234affb-8dea-4e2d-ab58-2aa3609e666b
status: 200 OK
code: 200
duration: ""
@@ -6690,10 +6756,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSRmVVMHhiMWhFVkUxNlRWUkZlRTFxUlhwT1ZFVjVUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRtUmtDazluUVZJM05HczBLMWhvV21ScVQxbG9iVFZGT1VrM09HVmhNVUZOUjJ0U2N6VnBNSGh2V25GdVRFZzNibFpTYldWa1IzRXlNMnhQWVZkcFoyOXdiMGtLU2xaVGNsWlNhbWMyVG14dlNFdDJUbVkyZEN0aGRrZE9ZVEJHTm1sMlpqWkdTMG8wZFc5UGNIUmtSbTgyZUcxS1RFa3dlSFZHYVRkRU5WbE1kMlZJY3dwYWQzZDZUbTV4UWpKbFVuZHZORTlDTmt0UFpGaEVRbUkxU0dsR2VrdHlkRE5XWWt3NFUyWjRSV2M0U2xOV2FrdFdiRUZwTm1GelZrdEdNMWR6TDJSakNrOXdOVTF4TjNaQk5raExjMWRWU200M1kwaGxNbTFhZEdKWk1XdzRkbVpaT1RsRVJYVkdZME40VlcxSVkwRnNNa3BsZVhsQ1VGTkJSekkwTDJaWFIwb0tNWEIwWTIxRlZEWjZXWEU1UVdWTk4yWlJTSEZsZEVvd1ZVcEZlbWxCZUdac2Iwd3pMMjV0T1VoV1kzWlFhRFE1ZUdSNlJrbHRLM2hhZHpkSlFUVnJkZ3BEWTI1UVJESllWRE50UlZoSVVuZEVjSGROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpQVjAweWNsazRXblUwYWl0alUxbFdVbVE1YVVac1p6ZG9ZbGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDWTFaSFZHWkRPR2haU2tGSk5uUkNaRXhqY1d0T2JYQkpUVXhuZFVKYVowWktSMHhDUVdnM1ZtMU9RMHBHTm0xelFnbzNNRGxUUVRac2JXTlBkbE5LYzJVM1IzWkNOV1ZIWTJWTmFUWjVjMW94UzB3d09FRnRXRzlWVTFvd2RISkNPVk5UYzJobGEyUmljV3hJVW1Wc1JFVjBDbVJvYTB0UlpHVkJUWFJ1V0hWc05YY3pSelZQU214NWEwdENXRzh5ZUZsU1dqWTRZa2h0TjBWb1VEaFJlRUZIV25CaldHdEZlVk56VFhsQlNFWlBMMDhLZVVrellWUnFhR3BUVERoVGFVMWtlbGhVWjJwUlFXTkZlVzlCTlV4cU9VSlFVV28yTjJSVk0yVkdUazltU1c5U1dVOUhSM05WUm5oeWFYZEhObm96TUFvelVuUTNOamRZT1U4NVYwZzBRWEZxY2xOTWFEWlFRa2RHY0ZoMlJYZ3dlVXd6UkcxcVVUSnJOMWhZU0ROWFJuUk1Na1psWWtoRldpOVZlR3RTUVU1UkNpdERhVEI2WldKTE5XVjZSVVExZVVkeFkzUkNRM0ZvVTBjelMwcFhNRGxDYUZVek5Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8xM2YxZDI1Yy0xZWJiLTRmZjgtODYzYy0wZDNlZDA4ZDNiYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMRDU1T2w5MGVNWDUydDBzRmdmc2J0eE9QOGljeWtFbXUzT2Q2ajg4SzIzaUdJa3dmNkdhYklsTg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSTk1FMHhiMWhFVkUxNlRWUkpkMDU2UlRKTlJFMHdUVEZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRrWXlDbmQ2V25KM05tY3ZkMUZtV0ZobldHbHdaRkp3VldkTVVIbFZRWG95T0M4d1VFaElOM0YxYlZwc2J6aEJWRUpsWlV0d01GRnpiSGx6VXpKd1dUZEljVlVLYWxCU2VWRkZTVU5IUW5GNksyUlhNWFJHY1dseVdURjFkMEZXZVVST1YzSTRabVZoYTBkR2RqZGhTMk5uWWpkMlEyRktZM2xKVVRoTlJVMW1aakpLYXdwdFNVOHpVa0ZyU1dKQlpVWjJSVTk2TjJWbGMxQTJWVEk0Vld0b1oyTTBXaTlIY1RCQ2VHNU1PVlpZZUcxM1ZpdGthMUJEU2pGNGRtSlRTV3hSZDBKNUNrSlpVSEZoWmtkbVJGVnViMFpGUmxOa2NtODNSbE5pU2swek1rcEtPRFF2UldWelYwUlhkSGcxTlVSb2NUSlBTSFJTVkdwbVVHTjBiV00xY3pGQ1FVSUthSHB6ZVRJcldXTm5hVGx0VjFSRFdYUnBaVEl2VG5Jek1tVjNjbFF6ZFdwcVVITnJhV0ZPWm10R1RYcExTblo2V25ab2IwdEpTa0Z2Y25CT1RHaFZlZ3BOYkdwM1RYVkhXVkZXUTFGMU9Vd3lMMGhOUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKTDJsbE1HNUpUWFJtYjJOdFpFUlRjRGhSYVRGTVdtRXdMM1JOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTUVoQldUYzJlR28yTnpkTE9YbzNVMGx6VUVaRk5raERSa2hLUW5Vek0xYzVaRXhxT0dvclFraDJMMU5RVTNWb2FBcFJkV3N3TTBzMGIyZG9iMHhIT1VGTmFtNUJhM0JYZUhOdVRHWk9lR3BQVm5GRGJsVklaU3RTTVRKS1V6aDRVWFp4YVhoNmFVUnplbU5DUzNKTU1HNHdDblJyVEdKd01YRmxSV3N4Vnpnck5WWnNLM2RNYzBnMk0xcFZZM3BwVGl0YU9WWTBRbEZwVlZwV1EyVk1ZblYxVldVclozcEZiMFo0UlRjd2JuVnNlVEVLZFVWalRXOXpNMHhEWldNNWRHcEZlbGxvTWs5QlpUZG5Zbkp4UTFFdllua3lWMnQ1U21abWJYWmFNVTlpYVd0WGRtOTJZVzFUWTNGR2QwaHdMMEk1ZHdveE1sVnFWbEZYT1ZsSlNrTndSREE0YjNSeVIxWnlhV2RFUlhKWWRWRndha3BSUW1aNmMxZG9TalpIYVdsamFWa3pUbmN6Y21sWE1DOTFVemgxTDJSUENuQklUV3RrVW1RNWVuaENNbHBoSzBoSVYxSnhkbGhrVHpaM09WSnlUVUpWTVZoTlNRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly85YmIwOWM1ZS1lNWQzLTQyYjItOWM4MC1iMzgzNzI5MzNmZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRZUcyajdWUkJ1QVVtNUhsYlM1RWhtUUNHbkRkUFdjWmVlZXd5QjNGbW12d29mNUFxeGdhMzFJRw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -6702,7 +6768,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:13:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6712,7 +6778,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f7b0495-420d-4b68-8b80-f6539c7712f7
+ - 43304f46-263b-40a2-bda6-a8ed5b9b1f54
status: 200 OK
code: 200
duration: ""
@@ -6723,10 +6789,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-11-13T13:55:55.573944Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-12-08T16:07:29.600948Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "624"
@@ -6735,7 +6801,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:13:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6745,7 +6811,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8aae0841-6324-4517-bf35-6aeb0b684252
+ - 997782ec-0dca-43a7-b015-631b522c367b
status: 200 OK
code: 200
duration: ""
@@ -6756,19 +6822,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4/nodes?order_by=created_at_asc&page=1&pool_id=664b7147-6d6f-4aa8-9a7c-d2c5229215b9&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5/nodes?order_by=created_at_asc&page=1&pool_id=429f28af-be93-43dd-b2c5-150bec8e0959&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T13:53:26.929920Z","error_message":null,"id":"c71037bb-aca6-49a6-8251-5c3aebb7e97d","name":"scw-test-pool-wait-test-pool-wait-c71037bbaca6","pool_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","provider_id":"scaleway://instance/fr-par-1/f473dc0f-2208-41b4-928b-c99062bd1312","public_ip_v4":"163.172.160.92","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:00:45.036255Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:05:25.505777Z","error_message":null,"id":"2eb73dbc-da4e-4094-a198-b6e942789267","name":"scw-test-pool-wait-test-pool-wait-2eb73dbcda4e","pool_id":"429f28af-be93-43dd-b2c5-150bec8e0959","provider_id":"scaleway://instance/fr-par-1/cd5643a7-b2f0-45f7-87ea-abb374b0f52b","public_ip_v4":"51.158.77.29","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:13:11.553398Z"}],"total_count":1}'
headers:
Content-Length:
- - "689"
+ - "687"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:00 GMT
+ - Fri, 08 Dec 2023 16:13:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6778,7 +6844,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b8ffdfcf-243a-4f2d-b634-dd268446349a
+ - 6e91c656-fe0b-4e24-a09d-0dc3b902bb57
status: 200 OK
code: 200
duration: ""
@@ -6789,10 +6855,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: DELETE
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386215Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "630"
@@ -6801,7 +6867,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:01 GMT
+ - Fri, 08 Dec 2023 16:13:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6811,7 +6877,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f1a116b-9129-482f-930c-418a24d4248c
+ - 34d9c84e-e163-49ea-b150-71e50d50979d
status: 200 OK
code: 200
duration: ""
@@ -6822,10 +6888,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -6834,7 +6900,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:02 GMT
+ - Fri, 08 Dec 2023 16:13:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6844,7 +6910,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bf479c74-15bc-41b3-8e55-48226955ce57
+ - c3ea1141-817c-4a88-a85e-c4fa0cbc0eaa
status: 200 OK
code: 200
duration: ""
@@ -6855,10 +6921,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -6867,7 +6933,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:07 GMT
+ - Fri, 08 Dec 2023 16:13:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6877,7 +6943,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9f910bca-5240-4f22-b8a9-4f4f93583fb5
+ - e9cce8ce-a32f-407c-b276-8763ee04a86a
status: 200 OK
code: 200
duration: ""
@@ -6888,10 +6954,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -6900,7 +6966,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:12 GMT
+ - Fri, 08 Dec 2023 16:13:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6910,7 +6976,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 302724b1-6e90-4620-9aac-d8913b25bdd8
+ - 8a4e7dd8-9a52-4180-b52e-6d5d7d2129c8
status: 200 OK
code: 200
duration: ""
@@ -6921,10 +6987,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -6933,7 +6999,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:17 GMT
+ - Fri, 08 Dec 2023 16:13:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6943,7 +7009,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97f2b360-7c84-4c6a-8b01-7d37dca8293f
+ - d7fb25bc-3a00-422b-b59e-a27c825b45e0
status: 200 OK
code: 200
duration: ""
@@ -6954,10 +7020,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -6966,7 +7032,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:22 GMT
+ - Fri, 08 Dec 2023 16:13:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6976,7 +7042,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97e02984-104b-4a45-8b71-e2a88923647b
+ - 9ae7761c-7bb4-4f0b-9a93-1a2a799dad94
status: 200 OK
code: 200
duration: ""
@@ -6987,10 +7053,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -6999,7 +7065,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:27 GMT
+ - Fri, 08 Dec 2023 16:13:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7009,7 +7075,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fb417cf0-1be1-4a96-9fc2-fd4c974dfe66
+ - 8a331b68-39f3-456e-8982-ad362d586db6
status: 200 OK
code: 200
duration: ""
@@ -7020,10 +7086,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"autohealing":false,"autoscaling":false,"cluster_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","container_runtime":"containerd","created_at":"2023-11-13T13:51:29.627043Z","id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-11-13T14:01:01.229386Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
+ body: '{"autohealing":false,"autoscaling":false,"cluster_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","container_runtime":"containerd","created_at":"2023-12-08T16:03:47.307398Z","id":"429f28af-be93-43dd-b2c5-150bec8e0959","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-12-08T16:13:27.846723Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}'
headers:
Content-Length:
- "627"
@@ -7032,7 +7098,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:32 GMT
+ - Fri, 08 Dec 2023 16:13:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7042,7 +7108,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3037141c-b284-4165-a1f5-5f629a714c36
+ - 54dc981e-01a1-4dd0-9e78-b9fd3626d9e6
status: 200 OK
code: 200
duration: ""
@@ -7053,10 +7119,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"429f28af-be93-43dd-b2c5-150bec8e0959","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -7065,7 +7131,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:37 GMT
+ - Fri, 08 Dec 2023 16:14:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7075,7 +7141,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 16c61b3f-ca3d-4b57-94b1-455136bbc3b8
+ - 833466a7-ca5a-4d08-b925-53513749d486
status: 404 Not Found
code: 404
duration: ""
@@ -7086,10 +7152,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:01:37.527892874Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:14:03.355080867Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1500"
@@ -7098,7 +7164,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:37 GMT
+ - Fri, 08 Dec 2023 16:14:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7108,7 +7174,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 807e5014-3115-49af-b808-e19b11fe38d9
+ - 139f2f67-c194-4094-b485-820cd078dd6e
status: 200 OK
code: 200
duration: ""
@@ -7119,10 +7185,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:01:37.527893Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:14:03.355081Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -7131,7 +7197,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:37 GMT
+ - Fri, 08 Dec 2023 16:14:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7141,7 +7207,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56c24196-f7c7-4d6e-b2c7-b4e7ade6571c
+ - 498475b2-f3ab-4d7d-844a-e7ec9beee538
status: 200 OK
code: 200
duration: ""
@@ -7152,10 +7218,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:01:37.527893Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:14:03.355081Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -7164,7 +7230,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:43 GMT
+ - Fri, 08 Dec 2023 16:14:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7174,7 +7240,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e7ee883-419d-4ef3-9895-3962807729f7
+ - 8100e23d-9dae-4ffb-9c96-7e6a8709c7a6
status: 200 OK
code: 200
duration: ""
@@ -7185,10 +7251,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:51:18.420504Z","created_at":"2023-11-13T13:51:18.420504Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-11-13T14:01:37.527893Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9bb09c5e-e5d3-42b2-9c80-b38372933fd5.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:03:41.891077Z","created_at":"2023-12-08T16:03:41.891077Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9bb09c5e-e5d3-42b2-9c80-b38372933fd5.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-12-08T16:14:03.355081Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -7197,7 +7263,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:48 GMT
+ - Fri, 08 Dec 2023 16:14:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7207,7 +7273,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2c70b261-c1bc-4b77-8611-8a3efc121392
+ - bb1b7e3a-21e4-49dc-923f-359ad7a0f35b
status: 200 OK
code: 200
duration: ""
@@ -7218,10 +7284,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7230,7 +7296,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:53 GMT
+ - Fri, 08 Dec 2023 16:14:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7240,7 +7306,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c726826a-9567-4117-b552-2fbd2d457c97
+ - 97721644-f178-4c1d-97dc-758975d92f72
status: 404 Not Found
code: 404
duration: ""
@@ -7251,10 +7317,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -7263,7 +7329,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:53 GMT
+ - Fri, 08 Dec 2023 16:14:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7273,7 +7339,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ada9a5fe-e408-406b-973a-a5689e4a2012
+ - 8ff4330b-1f73-45dc-9885-78b1d436cd8b
status: 404 Not Found
code: 404
duration: ""
@@ -7284,10 +7350,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/664b7147-6d6f-4aa8-9a7c-d2c5229215b9
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/429f28af-be93-43dd-b2c5-150bec8e0959
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"664b7147-6d6f-4aa8-9a7c-d2c5229215b9","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"429f28af-be93-43dd-b2c5-150bec8e0959","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -7296,7 +7362,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:53 GMT
+ - Fri, 08 Dec 2023 16:14:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7306,7 +7372,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a879dcb0-2f6c-48d8-a70e-5b3f64d9ec03
+ - 3d2c5f1d-d2ab-413e-b170-21c0dbae0330
status: 404 Not Found
code: 404
duration: ""
@@ -7317,10 +7383,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9bb09c5e-e5d3-42b2-9c80-b38372933fd5
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"13f1d25c-1ebb-4ff8-863c-0d3ed08d3ba4","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"9bb09c5e-e5d3-42b2-9c80-b38372933fd5","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7329,7 +7395,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:53 GMT
+ - Fri, 08 Dec 2023 16:14:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7339,7 +7405,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a11a8b09-a107-4f5a-9b3d-d82ee344d6d0
+ - c068a813-9fd8-4f01-b53b-45ff05831ddd
status: 404 Not Found
code: 404
duration: ""
@@ -7350,10 +7416,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d3f19320-3bcb-4550-a629-e646f8d0ab5a
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4622d8df-eba8-42dd-b1ff-4764ba7435fb
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"d3f19320-3bcb-4550-a629-e646f8d0ab5a","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"4622d8df-eba8-42dd-b1ff-4764ba7435fb","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -7362,7 +7428,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:53 GMT
+ - Fri, 08 Dec 2023 16:14:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7372,7 +7438,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b75552b-2a26-4fd2-a917-dc161e4216d1
+ - 80c1f059-d01f-47fd-bd68-c1951fb67e72
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml
index d9684443ec..24f8a6b36d 100644
--- a/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 35f3e4c5-ee27-4783-90c6-c07003c6d5a1
+ - a25aba37-c316-4684-8733-a991e9388869
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:57:17.332083Z","dhcp_enabled":true,"id":"02cda651-8832-495a-9ba7-d8d97c1b8686","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:17.332083Z","id":"ca7a0189-2836-405d-a34d-240a224c4e4b","subnet":"172.16.28.0/22","updated_at":"2023-11-13T13:57:17.332083Z"},{"created_at":"2023-11-13T13:57:17.332083Z","id":"d67e6cc6-4971-4ab8-a1e7-54f70556da71","subnet":"fd63:256c:45f7:9518::/64","updated_at":"2023-11-13T13:57:17.332083Z"}],"tags":[],"updated_at":"2023-11-13T13:57:17.332083Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:23.143320Z","dhcp_enabled":true,"id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:23.143320Z","id":"e4f3d70b-27c0-46ce-a013-eaf05f24cb19","subnet":"172.16.24.0/22","updated_at":"2023-12-08T16:04:23.143320Z"},{"created_at":"2023-12-08T16:04:23.143320Z","id":"18f73d7e-7ef8-4b98-be16-2883e61ab181","subnet":"fd63:256c:45f7:f965::/64","updated_at":"2023-12-08T16:04:23.143320Z"}],"tags":[],"updated_at":"2023-12-08T16:04:23.143320Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:18 GMT
+ - Fri, 08 Dec 2023 16:04:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c955c04-b837-4f1f-aedc-8fb0723a56c0
+ - 9161715e-77c9-4aad-89ea-4e33cf99aa1f
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02cda651-8832-495a-9ba7-d8d97c1b8686
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4da1ed94-c638-4629-9420-71e3d4b1e2ad
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:17.332083Z","dhcp_enabled":true,"id":"02cda651-8832-495a-9ba7-d8d97c1b8686","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:17.332083Z","id":"ca7a0189-2836-405d-a34d-240a224c4e4b","subnet":"172.16.28.0/22","updated_at":"2023-11-13T13:57:17.332083Z"},{"created_at":"2023-11-13T13:57:17.332083Z","id":"d67e6cc6-4971-4ab8-a1e7-54f70556da71","subnet":"fd63:256c:45f7:9518::/64","updated_at":"2023-11-13T13:57:17.332083Z"}],"tags":[],"updated_at":"2023-11-13T13:57:17.332083Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:23.143320Z","dhcp_enabled":true,"id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:23.143320Z","id":"e4f3d70b-27c0-46ce-a013-eaf05f24cb19","subnet":"172.16.24.0/22","updated_at":"2023-12-08T16:04:23.143320Z"},{"created_at":"2023-12-08T16:04:23.143320Z","id":"18f73d7e-7ef8-4b98-be16-2883e61ab181","subnet":"fd63:256c:45f7:f965::/64","updated_at":"2023-12-08T16:04:23.143320Z"}],"tags":[],"updated_at":"2023-12-08T16:04:23.143320Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:19 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 90c722ad-05a5-4c73-a72d-4fb25052f94d
+ - fafce7c5-e65c-4e8d-9caf-c11f3132dadf
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-zone","description":"","tags":["terraform-test","scaleway_k8s_cluster","zone"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-zone","description":"","tags":["terraform-test","scaleway_k8s_cluster","zone"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457424Z","created_at":"2023-11-13T13:57:19.413457424Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:57:19.435275809Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269064719Z","created_at":"2023-12-08T16:04:24.269064719Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:04:24.282290657Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1503"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:19 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f2690617-314e-4ec1-9bb9-6eacd7fbd30c
+ - ca44d747-8c53-456a-a6ad-006dce8bbfa1
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:57:19.435276Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:04:24.282291Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:19 GMT
+ - Fri, 08 Dec 2023 16:04:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4579c90d-59b0-41b9-bea1-013d73ccf694
+ - 8ddfe025-a872-4695-a4b1-c05e314a29af
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:57:21.725238Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:04:26.002963Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1499"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:24 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a818a376-de95-44da-a97f-c720a8e23c51
+ - ce0d4947-9259-466e-8358-61797079ba9e
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:57:21.725238Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:04:26.002963Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1499"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:24 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cdf45b0f-03ed-4d03-ae71-22b82b8ef0f8
+ - 534e8efa-075d-4d61-9903-86474b2af7d9
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC16b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSamVVMVdiMWhFVkUxNlRWUkZlRTFxUlhwT1ZHTjVUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRUVlZDa3BVUm1oRGJVcHJjMk5qZUZkSWMycG9ZMk40WW14V05ETmlWVWhCYjFCQlpWQTBTbkJ1VjJOdWVFRkdWR00xTmpjdlJqWjVORTlXVWpobVZqQTFZVU1LWTA4NU9YbHBWSGM1V2xJMGJDOU9XbE55TW5SR00wUk1WRVU1Wm5wWFNURkZhMFZuYTJNMmFWY3JUbUZLT1hVeWVXTldSbFpVTmpGSGMwSmlUbEJqV1FvNWRTdEVZMWtyYnl0YVJtdFljRGhLZVZaNWRGQllOa0o1ZVdSRlNteGlPSEpSV2pOVVFtaHpRV2RuTm0xRWNYVXhUemw2V0hGcVpXSlhiV2cxVVVsMENtWm5PRFJDY0ZKcE1GcElTVkY0VG05SVQyZGhUVTV2Tm1GNVZFUjRWRVkwTTNaalRHeEVUbmRxV0U5R1JXVlJjMGxsUzFWRFZrTmtWMWRMYUVZM1QzVUtaR1JDVjBRMVVHMURiMVYyV1dkWFkxSkdhbGh4U25SVFJUVnZVMGxITlRSTWEwb3pTV2x0UlRsNlltSldjRFJpVVVOQ1ZrSnROVlZOU2tOU1lWQnFXQW94VlhjNGFVcEhiUzl1V0ROWk15dDBOVFF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpNZFhWSVNqUnRMMHMwSzBSd2VWUnNUbHB0YVhaUE1HaFhkVUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTlRob1UzZHRkblZGVVU1M2Exa3hURTFaVFV4R1NqbFlUbGxwSzNZd1JWbHVRbXh2VDJkblZHWjBRbHByZWs1elZBcFVjV1JNUzJoNFkwZENWMkZ2VW00d1VreFdkMWhYTUcxaGNscHNUbFVyVFRKWE9VcFdkRXh0YzA5M00xWXhlWFZXZGpsalJuRlROV05UY0VkNllTdEhDbk5YUjIxTmExcExLM2tyVURoWGJHaHFSME52V25CS2FYRm9NMDFzUTJKYWIweE1NRnBXT1RoT1VIRlJNVkZXY1haUVJsaE5XSGR2WlM5MU5qTndRa0lLUzB0c01YQjBVVWhsT0ROU1NsUlBkbmR6YmpFMU1UWkhkbFp2V0dReVEzQjRia0lyYmxsVWRXeHhka3BEVnpGaGQxaHdNeTl3WlhjMFpYRlBVMWg0VkFwT1dIaE9Rak5TYmtaVUx6WjFZamN4VjNwNWNtTnBiSEZWZEhaMmFpdGhjMEY2VkZKTmFDczRXVzlsWkN0dEwwdHdaMnhQWjJoUVUwcFdhR0U0ZVVVMENuRnZOVFJaVTNwTE0wMUtVVmhvZDJSUVZUVlFia2hDVUVvM1FXZDVXV3BvZUhkU1VRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly84NmQzNWVmMS1iMjZjLTQyYmYtYTJhMy0zZGFiZTYwYWNkZmMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXpvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC16b25lIgogICAgdXNlcjogdGVzdC1wb29sLXpvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC16b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBFMHg5UTJQN1FqeDROa2RqOEZWcER0UXp5Z2VWT0RGY0xDU0hqd05wa3NsTzZleUpDa3JORVI0Sg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC16b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSUmVVNVdiMWhFVkUxNlRWUkpkMDU2UlRKTlJGRjVUbFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRWUnVDbTV5TlU1aE0yOUxibmhQTDJGUU1sTXpNMmgxVUZaVE5saHhlVWR6VVhwQk9VcEZWbUZ4Wm1acFlsTnJRMmhSVVhSU2FtWTBVbEpMZHpFdk1ESkJla3NLTmxvMFQwd3hiMFJsTkdkMVdHRnVhalJ3ZDFwTmVGaEZVV1ZVYTNCS2RFTjFjakJpWkRCSmJUUndjMUJIVlVkQ05DdENiM1ZGYm5WU01qZzVRMjlHY1FvME9ESTRlVmRCTVZORVYxRlpTR1pIWWxkUVRtOXVTa3hyTVd0UU1GTlhVbmhXYVd3M1Z6Qk5XazFPS3pOa1dVdFFRakE1VjIxSVNubDFkR0pLUkcxR0NtMHdiRlUyYm01eGRXOXdSblZuVkdRd1JGUnhjVVpNWXpOMGVVdGhZMlZrUkZkVVJqVldTSE5UT1VoaGVVZGhUR1pxTkVOYVZHdG9hRlF3V1RWaVlpc0tUbGhuYzJWQlpXRm5WVWhaVURCS1l6TTNTRlk0VGxRNGExWlpSRE53WW1jNVNVTk5abVZ2VnpKd2NtaHVjRGxIUVdoc1ozTTBPWEJIVjBSeFNGWmFNZ3BRWVc4M2R5dDFNMEo0V1V0MmVYWTBVR2M0UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpFY1d0a1V6ZE9OR2Q2YWxaWVJsaE1aRVYxYW1WQ2QxWkNWSEZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEYjJRd2EyczBXU3RzV2tOblVYVk1SMVVyUjBabWVWb3ZjVXhvUkVSQ1IwWTVjbFZuSzFrd2NrNXFWVXRaVlVwWVZRcExUVVk0VGs1TFJHMHJiRkpsSzBGT1pVTk9lSEJFYUhoMlVWUmhjVVJZT0U5SVRUVnpSVWMxY20xR1pqSldVR1I0Y21abFZXSXllVTFqUzJ4Q1JIRmlDbFIwTkZsMWVtOUZWMjg0WmxWSU9VVXZVSFpOU0ZKTVMyaE5UbVZqZFVWSlVFcHFkMmxZUm5wUlNWcE5PRlZTV1VzNWFtWTFVRUZHZEZWcldYb3JjVWtLVVhaeVpEUlBjRkI1Um5weGN6bFhUVFl2Vlhoak1WVnJWamhHUld0V1IwTnRUMGxDUjBGalNHYzJjbEZsYlhsNGJHRjVTa052Vm1aTGF6Vk9TelZ4S3dveVF5OUhaa2RsWkVsMFVsQkNZbWd3WTI5aE5sWnRiMkVyV0VwRk5WbGlURWN2YjNKM1RWSjBkRWQwTDA5RmREQm5lVkJ5WlhkVFMyRnhUakJ6Vm1KeUNrTkVVR2xHVlVsNVducHBOM2hRUm01MVJWQTFiSEJTSzJKWlUwTkJNemgzVjFaMlVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80ZjljMDllNC02MDk2LTQ0MjktYmEyOC1jOTIzZTY3MjdiYzMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXpvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC16b25lIgogICAgdXNlcjogdGVzdC1wb29sLXpvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC16b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBtTE84djBocENqenZ4ZThTdmNZT2Fna2Jmb1VNaFRoaXpYbGs5OHFGTnVWRkNteURadWJVNWRQNg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:24 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 501543ee-36c1-4a4a-9300-9e5cedf1f5c8
+ - f6a92de0-d64f-4f0c-85d6-e018aa2ca2a2
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:57:21.725238Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:04:26.002963Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1499"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:24 GMT
+ - Fri, 08 Dec 2023 16:04:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 991c0ecf-890f-4cff-b0ed-39cae89f96f1
+ - b3821f4b-65bd-469a-b50b-aba9cb13709f
status: 200 OK
code: 200
duration: ""
@@ -315,10 +315,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc/pools
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3/pools
method: POST
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929048Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267218Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "675"
@@ -327,7 +327,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:25 GMT
+ - Fri, 08 Dec 2023 16:04:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -337,7 +337,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66920fb2-139b-4006-a787-3b2597cafe16
+ - 90235182-c876-4b84-bce1-b60e7582fac1
status: 200 OK
code: 200
duration: ""
@@ -348,10 +348,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -360,7 +360,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:25 GMT
+ - Fri, 08 Dec 2023 16:04:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -370,7 +370,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 14dd0271-ae55-432e-8671-9d59958ba727
+ - 7bd625ff-923d-43f9-a85a-6b06dd136b9a
status: 200 OK
code: 200
duration: ""
@@ -381,10 +381,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -393,7 +393,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 16:04:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -403,7 +403,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6966f375-2a2a-47b6-b12f-3a3bc7e057fb
+ - b0ae1465-3bf8-4c16-973c-06b06895c0b9
status: 200 OK
code: 200
duration: ""
@@ -414,10 +414,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -426,7 +426,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:35 GMT
+ - Fri, 08 Dec 2023 16:04:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -436,7 +436,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b3c9353-d2eb-4b6e-a42a-d5ad687c1818
+ - a0ad6f13-d846-40bd-b35d-45252d27025a
status: 200 OK
code: 200
duration: ""
@@ -447,10 +447,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -459,7 +459,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:40 GMT
+ - Fri, 08 Dec 2023 16:04:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -469,7 +469,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6dba6180-c698-4a1e-b23a-894ba888c6c5
+ - d3452098-b0b9-42e7-8eca-204aac09d8f4
status: 200 OK
code: 200
duration: ""
@@ -480,10 +480,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -492,7 +492,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:45 GMT
+ - Fri, 08 Dec 2023 16:04:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -502,7 +502,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7030af88-75be-4072-9476-9462c6980a5a
+ - 532ff8ee-edef-45b5-a808-152dc575bb91
status: 200 OK
code: 200
duration: ""
@@ -513,10 +513,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -525,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 16:04:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -535,7 +535,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69c27d47-5108-409b-aea0-25583afe29b8
+ - 69d26b07-590b-4b39-809c-ed3af7037fb1
status: 200 OK
code: 200
duration: ""
@@ -546,10 +546,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -558,7 +558,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:56 GMT
+ - Fri, 08 Dec 2023 16:05:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -568,7 +568,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e26e5311-6b3b-44b4-a40f-5fe12e36ab42
+ - 9be1083b-f07e-4d1e-965e-034434003f49
status: 200 OK
code: 200
duration: ""
@@ -579,10 +579,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -591,7 +591,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:01 GMT
+ - Fri, 08 Dec 2023 16:05:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -601,7 +601,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 422119f1-6aa5-4723-a4e4-78bea0eee8e6
+ - 4a118dc8-c2d3-474b-b8d4-42eebb4f4877
status: 200 OK
code: 200
duration: ""
@@ -612,10 +612,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -624,7 +624,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:06 GMT
+ - Fri, 08 Dec 2023 16:05:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -634,7 +634,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 51ef7c53-ff9d-4ad4-945a-408c714424fe
+ - fd813ba8-af82-40e6-82e4-688159424470
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:11 GMT
+ - Fri, 08 Dec 2023 16:05:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 338da27f-d57f-4a81-a0a7-cb19efa97552
+ - 961251c1-a444-4974-baf6-bddbfaf29db4
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:16 GMT
+ - Fri, 08 Dec 2023 16:05:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 13ae34e5-9bc8-4299-9d89-5a815ecbac54
+ - db0546c7-2ac8-4c88-aa82-47ce4f19e26e
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 16:05:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f4dc2fdf-de0b-48c7-8ac4-6229203dfdd8
+ - 0dc0f2c2-983c-4970-9995-0cfe9f40133c
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:26 GMT
+ - Fri, 08 Dec 2023 16:05:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a304849f-96dc-4c34-87e5-3da8bd7d886e
+ - b2b76406-a8ab-4a90-8254-90da085ef8a6
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:31 GMT
+ - Fri, 08 Dec 2023 16:05:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 05aaf646-5621-4619-8b10-a815aefb6f1c
+ - 0650bd1b-acc3-4bca-92a2-05bf610d9c81
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:36 GMT
+ - Fri, 08 Dec 2023 16:05:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7b69344c-a0bf-437c-8050-0484b61d7ad3
+ - 2a28129b-a2a6-492d-bc04-e18cdeb64d28
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:41 GMT
+ - Fri, 08 Dec 2023 16:05:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0253d209-aa4a-43b9-8d80-8c0cc232f30c
+ - ba325715-0182-49e3-8c17-08872caa01f5
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:46 GMT
+ - Fri, 08 Dec 2023 16:05:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f3505562-e869-469d-8732-be3d8bc25bc6
+ - 19ec730b-2d2a-4298-9b90-d6384e6dae64
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:51 GMT
+ - Fri, 08 Dec 2023 16:05:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e90045bb-9643-48c1-898f-42798423cfd2
+ - 1b10964b-2b6b-403f-95a4-686f2beb64b2
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:57 GMT
+ - Fri, 08 Dec 2023 16:06:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5edb7892-bf8d-4fd9-864e-7f53501ef9dd
+ - d3245ee6-3f63-493c-884c-569e021373cb
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:02 GMT
+ - Fri, 08 Dec 2023 16:06:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 06023fe1-8386-41e0-ac01-27f7248c9f9b
+ - e8d5c022-f35e-4996-a98b-0d2352db3867
status: 200 OK
code: 200
duration: ""
@@ -1008,10 +1008,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1020,7 +1020,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:07 GMT
+ - Fri, 08 Dec 2023 16:06:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,7 +1030,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a7f034d7-8020-480f-b137-a2f6d66c6495
+ - 03177443-9ab7-4fea-9dfd-50707711ee37
status: 200 OK
code: 200
duration: ""
@@ -1041,10 +1041,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1053,7 +1053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:12 GMT
+ - Fri, 08 Dec 2023 16:06:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1063,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 629da79b-87fb-4650-801f-d8e229168fe0
+ - f5c29ff6-b272-4fa6-9342-8b51126cfe7e
status: 200 OK
code: 200
duration: ""
@@ -1074,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1086,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:17 GMT
+ - Fri, 08 Dec 2023 16:06:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1096,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b81f78b-d7e9-4f17-914c-4f31fd2b361d
+ - 5a8ada2b-6ad0-473c-ae1c-e3cb89758fce
status: 200 OK
code: 200
duration: ""
@@ -1107,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1119,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:22 GMT
+ - Fri, 08 Dec 2023 16:06:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1129,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69cddb11-29ce-441b-b8f2-751cc996e152
+ - 48566305-bb0f-4015-bf23-68b4a2f17a69
status: 200 OK
code: 200
duration: ""
@@ -1140,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1152,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:27 GMT
+ - Fri, 08 Dec 2023 16:06:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1162,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cf2ba496-6a78-4e5b-95c7-bc5d0474d094
+ - a3a52e8e-43aa-48d2-86e6-cfa7e1ecfedb
status: 200 OK
code: 200
duration: ""
@@ -1173,10 +1173,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1185,7 +1185,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:32 GMT
+ - Fri, 08 Dec 2023 16:06:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1195,7 +1195,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 82629f1b-1407-4c6c-a2bf-c0151db869d5
+ - 347a314c-2f3a-4e9e-8a64-9998fbe88ff3
status: 200 OK
code: 200
duration: ""
@@ -1206,10 +1206,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1218,7 +1218,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:37 GMT
+ - Fri, 08 Dec 2023 16:06:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1228,7 +1228,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a6e72aa7-77bf-4e46-9568-5c59e4b4b7a8
+ - 612abdb9-1b19-4236-889d-9b70e860a976
status: 200 OK
code: 200
duration: ""
@@ -1239,10 +1239,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:43 GMT
+ - Fri, 08 Dec 2023 16:06:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a761ec57-dd3d-46cf-94d1-26b29566eb93
+ - c52013cb-ed0d-46f5-aadf-5044112771ef
status: 200 OK
code: 200
duration: ""
@@ -1272,10 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1284,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:48 GMT
+ - Fri, 08 Dec 2023 16:06:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1294,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dcd518fa-4ab7-44cb-9e36-b7e1ac24c855
+ - 4e9143f2-0bae-4d2f-b924-c93db1787b1b
status: 200 OK
code: 200
duration: ""
@@ -1305,10 +1305,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1317,7 +1317,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:53 GMT
+ - Fri, 08 Dec 2023 16:06:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1327,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5ad5ead6-9337-4eee-b1a2-c1e2fa027d79
+ - 18d01a7b-1140-4bd0-bc9d-9f82cd96d571
status: 200 OK
code: 200
duration: ""
@@ -1338,10 +1338,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1350,7 +1350,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:58 GMT
+ - Fri, 08 Dec 2023 16:07:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1360,7 +1360,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1a39c01f-855d-45f6-b99b-faad8ddcd159
+ - 8f397bd3-2ae0-481b-bd1d-bc203edf3150
status: 200 OK
code: 200
duration: ""
@@ -1371,10 +1371,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1383,7 +1383,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:04 GMT
+ - Fri, 08 Dec 2023 16:07:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1393,7 +1393,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f71d45c4-a3b2-4fd3-a136-2c6efac4f637
+ - 015c92b5-a1c0-4f4d-bd9c-e52c5bc1d1ff
status: 200 OK
code: 200
duration: ""
@@ -1404,10 +1404,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1416,7 +1416,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:09 GMT
+ - Fri, 08 Dec 2023 16:07:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1426,7 +1426,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc584d36-7087-4ea3-ae41-73d3ce48b3c8
+ - dd3ce096-d4ad-470c-8f0b-bd3bf3127a35
status: 200 OK
code: 200
duration: ""
@@ -1437,10 +1437,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1449,7 +1449,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:14 GMT
+ - Fri, 08 Dec 2023 16:07:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1459,7 +1459,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f490419e-4db7-4e3a-8b4c-47458ac66e56
+ - 55408dfe-db86-479a-9222-e8c8f71d7c3b
status: 200 OK
code: 200
duration: ""
@@ -1470,10 +1470,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1482,7 +1482,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:19 GMT
+ - Fri, 08 Dec 2023 16:07:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1492,7 +1492,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a3de60b-0905-4f6a-8b62-c29cd3811df8
+ - fcd1f528-dc3c-46d7-a8b4-85df72b724ab
status: 200 OK
code: 200
duration: ""
@@ -1503,10 +1503,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:24 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1525,7 +1525,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a0de851-da26-4baf-b297-4fd82e324bfd
+ - 6a6cf189-acc2-497b-bfd6-1cb52e43ee5d
status: 200 OK
code: 200
duration: ""
@@ -1536,10 +1536,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1548,7 +1548,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:29 GMT
+ - Fri, 08 Dec 2023 16:07:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1558,7 +1558,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6d5389d4-5ddc-48b2-99a6-04ae121b0387
+ - e3510487-fd0b-445c-9d51-4b4ff0951233
status: 200 OK
code: 200
duration: ""
@@ -1569,10 +1569,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1581,7 +1581,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:34 GMT
+ - Fri, 08 Dec 2023 16:07:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1591,7 +1591,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0c70d9a1-2e4b-417f-a2f5-3af3afe05aef
+ - 3adb78ce-b38d-4ec4-b0ee-050d5ab7d6c0
status: 200 OK
code: 200
duration: ""
@@ -1602,10 +1602,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1614,7 +1614,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:07:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1624,7 +1624,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df51b9a8-af6d-42a5-98a0-46ec0223e652
+ - 111b02fe-a789-40c2-89cd-c25ba026ce4c
status: 200 OK
code: 200
duration: ""
@@ -1635,10 +1635,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1647,7 +1647,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:44 GMT
+ - Fri, 08 Dec 2023 16:07:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1657,7 +1657,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93aea667-248b-46b8-9c1e-92f564c6e2ca
+ - a3639240-9dd9-43be-a14e-a1a32dbbf297
status: 200 OK
code: 200
duration: ""
@@ -1668,10 +1668,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1680,7 +1680,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:49 GMT
+ - Fri, 08 Dec 2023 16:07:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1690,7 +1690,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48059d18-9bd1-4f8a-8a29-551471e3df17
+ - 13ecc4c9-e194-40d7-9543-6aba6c695cbe
status: 200 OK
code: 200
duration: ""
@@ -1701,10 +1701,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1713,7 +1713,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:54 GMT
+ - Fri, 08 Dec 2023 16:07:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1723,7 +1723,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 193ce6af-3373-4b69-9ea8-ff37db102aee
+ - 42b2f83b-daa7-4515-b894-54fc84941c0e
status: 200 OK
code: 200
duration: ""
@@ -1734,10 +1734,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1746,7 +1746,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:59 GMT
+ - Fri, 08 Dec 2023 16:08:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1756,7 +1756,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4095d404-009b-48cd-9ab5-896f96f60433
+ - 8357fc6f-389c-4099-80b4-0feddd1be0c4
status: 200 OK
code: 200
duration: ""
@@ -1767,10 +1767,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1779,7 +1779,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:04 GMT
+ - Fri, 08 Dec 2023 16:08:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1789,7 +1789,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eeebf5b4-e9bf-4053-8648-06285ecf8e12
+ - fd915aae-efaa-4e41-9a86-1e1234cb1f89
status: 200 OK
code: 200
duration: ""
@@ -1800,10 +1800,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1812,7 +1812,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:09 GMT
+ - Fri, 08 Dec 2023 16:08:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1822,7 +1822,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b410a912-9f1b-44c1-9116-d7fe4f6a7bbb
+ - 8fd4b314-ebe0-4d31-beab-51595e4d133a
status: 200 OK
code: 200
duration: ""
@@ -1833,10 +1833,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1845,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:14 GMT
+ - Fri, 08 Dec 2023 16:08:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1855,7 +1855,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ce29f50-a42a-4b94-821e-47d4b965050d
+ - feda2255-708b-406f-91c3-94ea4347f3a3
status: 200 OK
code: 200
duration: ""
@@ -1866,10 +1866,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1878,7 +1878,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:19 GMT
+ - Fri, 08 Dec 2023 16:08:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1888,7 +1888,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 22027a22-60c2-494f-86a4-6b761224ed25
+ - 33a8fb99-0ebb-4536-86c8-c42e199a486f
status: 200 OK
code: 200
duration: ""
@@ -1899,10 +1899,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1911,7 +1911,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:24 GMT
+ - Fri, 08 Dec 2023 16:08:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1921,7 +1921,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 00c0d4f9-f1e1-4ab5-bc3b-71a86c56e427
+ - 93bb1488-2e9a-42ed-b6cb-0af11f52b435
status: 200 OK
code: 200
duration: ""
@@ -1932,10 +1932,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1944,7 +1944,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:29 GMT
+ - Fri, 08 Dec 2023 16:08:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1954,7 +1954,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b383ec8-128f-430a-8a76-1c406324e0b9
+ - 67bc7da1-cb33-4f98-b86a-853039a2987f
status: 200 OK
code: 200
duration: ""
@@ -1965,10 +1965,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -1977,7 +1977,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:34 GMT
+ - Fri, 08 Dec 2023 16:08:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1987,7 +1987,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6cf40df1-4b17-4dd3-bf23-3a7a96e4e18d
+ - 2563c551-32b6-4355-aaf6-3f72c23ca8d2
status: 200 OK
code: 200
duration: ""
@@ -1998,10 +1998,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -2010,7 +2010,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:40 GMT
+ - Fri, 08 Dec 2023 16:08:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2020,7 +2020,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8cdd5c24-c0f6-49de-9f76-28996180e56a
+ - 865ab6e0-30e2-44d5-8031-867356128e7a
status: 200 OK
code: 200
duration: ""
@@ -2031,10 +2031,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -2043,7 +2043,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:45 GMT
+ - Fri, 08 Dec 2023 16:08:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2053,7 +2053,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c49707ea-8931-4b54-b9b7-51fc39fb3e42
+ - 1b3384c2-d7c9-44f4-842b-cda46afd3a4e
status: 200 OK
code: 200
duration: ""
@@ -2064,10 +2064,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -2076,7 +2076,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:50 GMT
+ - Fri, 08 Dec 2023 16:08:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2086,7 +2086,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8de58a06-2c71-437b-97c5-ca545fb7a286
+ - 223dd578-d63c-4393-9e4b-ee4c52c1f714
status: 200 OK
code: 200
duration: ""
@@ -2097,10 +2097,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -2109,7 +2109,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:55 GMT
+ - Fri, 08 Dec 2023 16:08:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2119,7 +2119,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 199cec05-c1d2-48d4-9b2b-02d56367bbbd
+ - 22f21c00-e648-4772-a517-1e03b98747f1
status: 200 OK
code: 200
duration: ""
@@ -2130,10 +2130,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:04:29.931267Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "672"
@@ -2142,7 +2142,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:00 GMT
+ - Fri, 08 Dec 2023 16:09:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2152,7 +2152,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0d52e492-2cd4-479f-9670-53624e5d5da2
+ - 6a9e1c9d-db88-4ee4-8465-45d4a030fb7f
status: 200 OK
code: 200
duration: ""
@@ -2163,175 +2163,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "672"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:05 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e82ad1d6-6ff3-40cd-975e-e7fbf0d8571f
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "672"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:11 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - efc285ad-f909-4f31-a59f-e10de631b461
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "672"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:16 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d60e35cd-30b3-458d-ae61-f2b93294717a
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "672"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:21 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 25477fcc-cad0-49b6-b47e-1a36decb9cd1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T13:57:24.981929Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "672"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:26 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2217e2a6-5bf9-44f7-8319-4593aa112dc4
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:28.503679Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:06.951288Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "670"
@@ -2340,7 +2175,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:31 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2350,7 +2185,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9df76d00-d2a2-47af-9205-8025487f36d0
+ - fa8f4797-9b1a-4060-bb2d-69c834f98b93
status: 200 OK
code: 200
duration: ""
@@ -2361,10 +2196,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:58:30.662098Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:06:00.651166Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1491"
@@ -2373,7 +2208,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:31 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2383,7 +2218,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e0b357e-5451-48d7-987e-a267465cd5e6
+ - 83c54f64-cae6-4d03-b4ce-962cf2c7b910
status: 200 OK
code: 200
duration: ""
@@ -2394,10 +2229,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:28.503679Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:06.951288Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "670"
@@ -2406,7 +2241,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:31 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2416,7 +2251,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4260c940-b7d4-47d8-bd13-603914148c89
+ - 5af2082f-59e4-46d0-a1de-9f8292b6936d
status: 200 OK
code: 200
duration: ""
@@ -2427,19 +2262,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc/nodes?order_by=created_at_asc&page=1&pool_id=0be1ccbe-c0d7-402f-b531-fc4b22d828f3&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3/nodes?order_by=created_at_asc&page=1&pool_id=3ccc12e8-0f48-4369-963d-38830b9c7208&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:00:10.185268Z","error_message":null,"id":"cfd6ae66-ad01-41c2-bb62-9d88b0e10762","name":"scw-test-pool-zone-test-pool-zone-cfd6ae66ad01","pool_id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","provider_id":"scaleway://instance/fr-par-2/395d556d-d1b6-448e-8c82-145e8c525ae4","public_ip_v4":"51.159.162.176","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:02:28.488006Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:06:28.364754Z","error_message":null,"id":"78c1c432-3d3f-4bb1-a912-4f89468b6a74","name":"scw-test-pool-zone-test-pool-zone-78c1c4323d3f","pool_id":"3ccc12e8-0f48-4369-963d-38830b9c7208","provider_id":"scaleway://instance/fr-par-2/1a2d2ceb-8aca-464b-8dad-5ddb0c14773a","public_ip_v4":"51.159.135.40","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:09:06.935018Z"}],"total_count":1}'
headers:
Content-Length:
- - "659"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:31 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2449,7 +2284,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6c3001c7-7e04-425a-be75-c1f19a4e86a5
+ - e4acbbe6-afc6-475e-87a8-348bbfa9d71d
status: 200 OK
code: 200
duration: ""
@@ -2460,10 +2295,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:58:30.662098Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:06:00.651166Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1491"
@@ -2472,7 +2307,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:31 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2482,7 +2317,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - efc0fa13-a23e-4d83-b0a1-80fb3508cb8c
+ - 0e0f1304-f0ac-416c-8dfc-97b533918150
status: 200 OK
code: 200
duration: ""
@@ -2493,10 +2328,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:28.503679Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:06.951288Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "670"
@@ -2505,7 +2340,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:31 GMT
+ - Fri, 08 Dec 2023 16:09:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2515,7 +2350,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 90f5fe66-4a4a-4263-9f1c-b3854abf84a1
+ - a5d87d64-4a0e-4b18-9d4e-3614b17aebba
status: 200 OK
code: 200
duration: ""
@@ -2526,10 +2361,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02cda651-8832-495a-9ba7-d8d97c1b8686
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4da1ed94-c638-4629-9420-71e3d4b1e2ad
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:17.332083Z","dhcp_enabled":true,"id":"02cda651-8832-495a-9ba7-d8d97c1b8686","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:17.332083Z","id":"ca7a0189-2836-405d-a34d-240a224c4e4b","subnet":"172.16.28.0/22","updated_at":"2023-11-13T13:57:17.332083Z"},{"created_at":"2023-11-13T13:57:17.332083Z","id":"d67e6cc6-4971-4ab8-a1e7-54f70556da71","subnet":"fd63:256c:45f7:9518::/64","updated_at":"2023-11-13T13:57:17.332083Z"}],"tags":[],"updated_at":"2023-11-13T13:57:17.332083Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:23.143320Z","dhcp_enabled":true,"id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:23.143320Z","id":"e4f3d70b-27c0-46ce-a013-eaf05f24cb19","subnet":"172.16.24.0/22","updated_at":"2023-12-08T16:04:23.143320Z"},{"created_at":"2023-12-08T16:04:23.143320Z","id":"18f73d7e-7ef8-4b98-be16-2883e61ab181","subnet":"fd63:256c:45f7:f965::/64","updated_at":"2023-12-08T16:04:23.143320Z"}],"tags":[],"updated_at":"2023-12-08T16:04:23.143320Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "715"
@@ -2538,7 +2373,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:32 GMT
+ - Fri, 08 Dec 2023 16:09:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2548,7 +2383,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d30679d1-7875-47a1-9b85-c2ea89f63ac9
+ - d6413a89-1011-4778-9731-ba8b1d4add84
status: 200 OK
code: 200
duration: ""
@@ -2559,10 +2394,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T13:58:30.662098Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:06:00.651166Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1491"
@@ -2571,7 +2406,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:32 GMT
+ - Fri, 08 Dec 2023 16:09:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2581,7 +2416,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b1e9ede9-b000-401c-bc5f-8a24809a35e5
+ - 7090bcc4-6b9e-4e6d-a94e-9a42ebae5257
status: 200 OK
code: 200
duration: ""
@@ -2592,10 +2427,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC16b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVJYaE5ha1Y2VGxSamVVMVdiMWhFVkUxNlRWUkZlRTFxUlhwT1ZHTjVUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRUVlZDa3BVUm1oRGJVcHJjMk5qZUZkSWMycG9ZMk40WW14V05ETmlWVWhCYjFCQlpWQTBTbkJ1VjJOdWVFRkdWR00xTmpjdlJqWjVORTlXVWpobVZqQTFZVU1LWTA4NU9YbHBWSGM1V2xJMGJDOU9XbE55TW5SR00wUk1WRVU1Wm5wWFNURkZhMFZuYTJNMmFWY3JUbUZLT1hVeWVXTldSbFpVTmpGSGMwSmlUbEJqV1FvNWRTdEVZMWtyYnl0YVJtdFljRGhLZVZaNWRGQllOa0o1ZVdSRlNteGlPSEpSV2pOVVFtaHpRV2RuTm0xRWNYVXhUemw2V0hGcVpXSlhiV2cxVVVsMENtWm5PRFJDY0ZKcE1GcElTVkY0VG05SVQyZGhUVTV2Tm1GNVZFUjRWRVkwTTNaalRHeEVUbmRxV0U5R1JXVlJjMGxsUzFWRFZrTmtWMWRMYUVZM1QzVUtaR1JDVjBRMVVHMURiMVYyV1dkWFkxSkdhbGh4U25SVFJUVnZVMGxITlRSTWEwb3pTV2x0UlRsNlltSldjRFJpVVVOQ1ZrSnROVlZOU2tOU1lWQnFXQW94VlhjNGFVcEhiUzl1V0ROWk15dDBOVFF3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpNZFhWSVNqUnRMMHMwSzBSd2VWUnNUbHB0YVhaUE1HaFhkVUpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCTlRob1UzZHRkblZGVVU1M2Exa3hURTFaVFV4R1NqbFlUbGxwSzNZd1JWbHVRbXh2VDJkblZHWjBRbHByZWs1elZBcFVjV1JNUzJoNFkwZENWMkZ2VW00d1VreFdkMWhYTUcxaGNscHNUbFVyVFRKWE9VcFdkRXh0YzA5M00xWXhlWFZXZGpsalJuRlROV05UY0VkNllTdEhDbk5YUjIxTmExcExLM2tyVURoWGJHaHFSME52V25CS2FYRm9NMDFzUTJKYWIweE1NRnBXT1RoT1VIRlJNVkZXY1haUVJsaE5XSGR2WlM5MU5qTndRa0lLUzB0c01YQjBVVWhsT0ROU1NsUlBkbmR6YmpFMU1UWkhkbFp2V0dReVEzQjRia0lyYmxsVWRXeHhka3BEVnpGaGQxaHdNeTl3WlhjMFpYRlBVMWg0VkFwT1dIaE9Rak5TYmtaVUx6WjFZamN4VjNwNWNtTnBiSEZWZEhaMmFpdGhjMEY2VkZKTmFDczRXVzlsWkN0dEwwdHdaMnhQWjJoUVUwcFdhR0U0ZVVVMENuRnZOVFJaVTNwTE0wMUtVVmhvZDJSUVZUVlFia2hDVUVvM1FXZDVXV3BvZUhkU1VRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly84NmQzNWVmMS1iMjZjLTQyYmYtYTJhMy0zZGFiZTYwYWNkZmMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXpvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC16b25lIgogICAgdXNlcjogdGVzdC1wb29sLXpvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC16b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBFMHg5UTJQN1FqeDROa2RqOEZWcER0UXp5Z2VWT0RGY0xDU0hqd05wa3NsTzZleUpDa3JORVI0Sg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC16b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVNYZE9la1V5VFVSUmVVNVdiMWhFVkUxNlRWUkpkMDU2UlRKTlJGRjVUbFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRWUnVDbTV5TlU1aE0yOUxibmhQTDJGUU1sTXpNMmgxVUZaVE5saHhlVWR6VVhwQk9VcEZWbUZ4Wm1acFlsTnJRMmhSVVhSU2FtWTBVbEpMZHpFdk1ESkJla3NLTmxvMFQwd3hiMFJsTkdkMVdHRnVhalJ3ZDFwTmVGaEZVV1ZVYTNCS2RFTjFjakJpWkRCSmJUUndjMUJIVlVkQ05DdENiM1ZGYm5WU01qZzVRMjlHY1FvME9ESTRlVmRCTVZORVYxRlpTR1pIWWxkUVRtOXVTa3hyTVd0UU1GTlhVbmhXYVd3M1Z6Qk5XazFPS3pOa1dVdFFRakE1VjIxSVNubDFkR0pLUkcxR0NtMHdiRlUyYm01eGRXOXdSblZuVkdRd1JGUnhjVVpNWXpOMGVVdGhZMlZrUkZkVVJqVldTSE5UT1VoaGVVZGhUR1pxTkVOYVZHdG9hRlF3V1RWaVlpc0tUbGhuYzJWQlpXRm5WVWhaVURCS1l6TTNTRlk0VGxRNGExWlpSRE53WW1jNVNVTk5abVZ2VnpKd2NtaHVjRGxIUVdoc1ozTTBPWEJIVjBSeFNGWmFNZ3BRWVc4M2R5dDFNMEo0V1V0MmVYWTBVR2M0UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpFY1d0a1V6ZE9OR2Q2YWxaWVJsaE1aRVYxYW1WQ2QxWkNWSEZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEYjJRd2EyczBXU3RzV2tOblVYVk1SMVVyUjBabWVWb3ZjVXhvUkVSQ1IwWTVjbFZuSzFrd2NrNXFWVXRaVlVwWVZRcExUVVk0VGs1TFJHMHJiRkpsSzBGT1pVTk9lSEJFYUhoMlVWUmhjVVJZT0U5SVRUVnpSVWMxY20xR1pqSldVR1I0Y21abFZXSXllVTFqUzJ4Q1JIRmlDbFIwTkZsMWVtOUZWMjg0WmxWSU9VVXZVSFpOU0ZKTVMyaE5UbVZqZFVWSlVFcHFkMmxZUm5wUlNWcE5PRlZTV1VzNWFtWTFVRUZHZEZWcldYb3JjVWtLVVhaeVpEUlBjRkI1Um5weGN6bFhUVFl2Vlhoak1WVnJWamhHUld0V1IwTnRUMGxDUjBGalNHYzJjbEZsYlhsNGJHRjVTa052Vm1aTGF6Vk9TelZ4S3dveVF5OUhaa2RsWkVsMFVsQkNZbWd3WTI5aE5sWnRiMkVyV0VwRk5WbGlURWN2YjNKM1RWSjBkRWQwTDA5RmREQm5lVkJ5WlhkVFMyRnhUakJ6Vm1KeUNrTkVVR2xHVlVsNVducHBOM2hRUm01MVJWQTFiSEJTSzJKWlUwTkJNemgzVjFaMlVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80ZjljMDllNC02MDk2LTQ0MjktYmEyOC1jOTIzZTY3MjdiYzMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXpvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC16b25lIgogICAgdXNlcjogdGVzdC1wb29sLXpvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC16b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBtTE84djBocENqenZ4ZThTdmNZT2Fna2Jmb1VNaFRoaXpYbGs5OHFGTnVWRkNteURadWJVNWRQNg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2606"
@@ -2604,7 +2439,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:32 GMT
+ - Fri, 08 Dec 2023 16:09:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2614,7 +2449,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ca7d510-a355-4286-8180-56ea6ed44c1b
+ - abcc9be0-7887-4dad-bf8a-33d20c8ed444
status: 200 OK
code: 200
duration: ""
@@ -2625,10 +2460,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:28.503679Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:06.951288Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "670"
@@ -2637,7 +2472,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:32 GMT
+ - Fri, 08 Dec 2023 16:09:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2647,7 +2482,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32f188f8-f58e-4af8-a8ad-87c98016ccfd
+ - c50d95f6-0690-4696-ad73-ddc799e5629b
status: 200 OK
code: 200
duration: ""
@@ -2658,19 +2493,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc/nodes?order_by=created_at_asc&page=1&pool_id=0be1ccbe-c0d7-402f-b531-fc4b22d828f3&status=unknown
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3/nodes?order_by=created_at_asc&page=1&pool_id=3ccc12e8-0f48-4369-963d-38830b9c7208&status=unknown
method: GET
response:
- body: '{"nodes":[{"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-11-13T14:00:10.185268Z","error_message":null,"id":"cfd6ae66-ad01-41c2-bb62-9d88b0e10762","name":"scw-test-pool-zone-test-pool-zone-cfd6ae66ad01","pool_id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","provider_id":"scaleway://instance/fr-par-2/395d556d-d1b6-448e-8c82-145e8c525ae4","public_ip_v4":"51.159.162.176","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-11-13T14:02:28.488006Z"}],"total_count":1}'
+ body: '{"nodes":[{"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-12-08T16:06:28.364754Z","error_message":null,"id":"78c1c432-3d3f-4bb1-a912-4f89468b6a74","name":"scw-test-pool-zone-test-pool-zone-78c1c4323d3f","pool_id":"3ccc12e8-0f48-4369-963d-38830b9c7208","provider_id":"scaleway://instance/fr-par-2/1a2d2ceb-8aca-464b-8dad-5ddb0c14773a","public_ip_v4":"51.159.135.40","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-12-08T16:09:06.935018Z"}],"total_count":1}'
headers:
Content-Length:
- - "659"
+ - "658"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:32 GMT
+ - Fri, 08 Dec 2023 16:09:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2680,7 +2515,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc168849-4983-4e1a-ab9c-3aacb51f8a80
+ - 10809de9-098b-490c-a720-843395464e30
status: 200 OK
code: 200
duration: ""
@@ -2691,10 +2526,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: DELETE
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:33.138290235Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:10.409598345Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "676"
@@ -2703,73 +2538,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:33 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6a96edf4-6d4f-4731-a904-c6bf8bd88bcd
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:33.138290Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:33 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d5cf15cd-bbb7-44ec-8ab4-bde36b540c11
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
- method: GET
- response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:33.138290Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
- headers:
- Content-Length:
- - "673"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:02:38 GMT
+ - Fri, 08 Dec 2023 16:09:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2779,7 +2548,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 59481df4-1214-4006-bde6-9bba2104e097
+ - 90f32813-6ce9-458b-be36-381b4b460e32
status: 200 OK
code: 200
duration: ""
@@ -2790,10 +2559,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:33.138290Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:10.409598Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "673"
@@ -2802,7 +2571,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:43 GMT
+ - Fri, 08 Dec 2023 16:09:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2812,7 +2581,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 936d91f3-e074-4fbb-8f00-f850e83ea850
+ - 3dfc7771-d3e2-4856-a7a5-3e7a836880ce
status: 200 OK
code: 200
duration: ""
@@ -2823,10 +2592,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"autohealing":true,"autoscaling":true,"cluster_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","container_runtime":"containerd","created_at":"2023-11-13T13:57:24.974797Z","id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-11-13T14:02:33.138290Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
+ body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","container_runtime":"containerd","created_at":"2023-12-08T16:04:29.920751Z","id":"3ccc12e8-0f48-4369-963d-38830b9c7208","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-12-08T16:09:10.409598Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}'
headers:
Content-Length:
- "673"
@@ -2835,7 +2604,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:48 GMT
+ - Fri, 08 Dec 2023 16:09:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2845,7 +2614,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32a14e41-ea58-4629-b7c8-3743dda5e7a1
+ - 56abd1dd-cd62-4e6f-b7b0-81043d3b39fa
status: 200 OK
code: 200
duration: ""
@@ -2856,10 +2625,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"3ccc12e8-0f48-4369-963d-38830b9c7208","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -2868,7 +2637,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:53 GMT
+ - Fri, 08 Dec 2023 16:09:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2878,7 +2647,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 63a6c544-6c54-4733-be15-7febdc6344c8
+ - 03d7b192-5ea4-411c-beaf-0fe9c638b001
status: 404 Not Found
code: 404
duration: ""
@@ -2889,10 +2658,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc?with_additional_resources=true
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3?with_additional_resources=true
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T14:02:53.430334350Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:09:20.748342010Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1497"
@@ -2901,7 +2670,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:53 GMT
+ - Fri, 08 Dec 2023 16:09:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2911,7 +2680,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff5f84d6-28d6-4775-8d67-8f8f22826e3a
+ - 0a56e977-9826-4c89-b855-10ddf448b530
status: 200 OK
code: 200
duration: ""
@@ -2922,10 +2691,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T14:02:53.430334Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:09:20.748342Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -2934,7 +2703,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:53 GMT
+ - Fri, 08 Dec 2023 16:09:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2944,7 +2713,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f3a6b3b-a7ea-4b15-af96-e1bc33802f42
+ - 0846e02c-56b1-422c-8bb6-40c26fe0a0d0
status: 200 OK
code: 200
duration: ""
@@ -2955,10 +2724,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:19.413457Z","created_at":"2023-11-13T13:57:19.413457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.86d35ef1-b26c-42bf-a2a3-3dabe60acdfc.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-11-13T14:02:53.430334Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f9c09e4-6096-4429-ba28-c923e6727bc3.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T16:04:24.269065Z","created_at":"2023-12-08T16:04:24.269065Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f9c09e4-6096-4429-ba28-c923e6727bc3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-12-08T16:09:20.748342Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1494"
@@ -2967,7 +2736,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:58 GMT
+ - Fri, 08 Dec 2023 16:09:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2977,7 +2746,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a2f32519-83c5-49aa-8d1d-7301cb92f74c
+ - c3cd95a7-dc06-4cff-a8c3-61e832de8cfb
status: 200 OK
code: 200
duration: ""
@@ -2988,10 +2757,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3000,7 +2769,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:09:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3010,7 +2779,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 791f3b56-2063-4efb-a981-684956014873
+ - 2b26d3b6-276e-4499-9eb1-b1ad248257a7
status: 404 Not Found
code: 404
duration: ""
@@ -3021,10 +2790,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02cda651-8832-495a-9ba7-d8d97c1b8686
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4da1ed94-c638-4629-9420-71e3d4b1e2ad
method: DELETE
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3033,7 +2802,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:09:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3043,7 +2812,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 44542c58-8108-4809-ae9c-55f3c32ea062
+ - 83709a13-5b1e-4be9-8eb0-a95380387b15
status: 404 Not Found
code: 404
duration: ""
@@ -3054,10 +2823,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/0be1ccbe-c0d7-402f-b531-fc4b22d828f3
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/3ccc12e8-0f48-4369-963d-38830b9c7208
method: GET
response:
- body: '{"message":"resource is not found","resource":"pool","resource_id":"0be1ccbe-c0d7-402f-b531-fc4b22d828f3","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"pool","resource_id":"3ccc12e8-0f48-4369-963d-38830b9c7208","type":"not_found"}'
headers:
Content-Length:
- "125"
@@ -3066,7 +2835,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:09:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3076,7 +2845,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d43bb26-7734-4781-8a5f-992af229aaaf
+ - b35a7c30-b1dd-4b65-bd83-26c957d226a8
status: 404 Not Found
code: 404
duration: ""
@@ -3087,10 +2856,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/86d35ef1-b26c-42bf-a2a3-3dabe60acdfc
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f9c09e4-6096-4429-ba28-c923e6727bc3
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"86d35ef1-b26c-42bf-a2a3-3dabe60acdfc","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"4f9c09e4-6096-4429-ba28-c923e6727bc3","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3099,7 +2868,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:09:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3109,7 +2878,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 410203bf-1c99-4c78-9b79-7b668590852e
+ - d4a3dd85-b8d6-4895-884c-6a695fcd727d
status: 404 Not Found
code: 404
duration: ""
@@ -3120,10 +2889,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02cda651-8832-495a-9ba7-d8d97c1b8686
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4da1ed94-c638-4629-9420-71e3d4b1e2ad
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"02cda651-8832-495a-9ba7-d8d97c1b8686","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"4da1ed94-c638-4629-9420-71e3d4b1e2ad","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -3132,7 +2901,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:09:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3142,7 +2911,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7b2eb064-16a6-41e9-825c-606bddb79de5
+ - bfbe2b7e-c401-4e06-9dca-96498fa5d58a
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-private-network.cassette.yaml b/scaleway/testdata/k8s-cluster-private-network.cassette.yaml
index 9b47681d5b..45c9c13241 100644
--- a/scaleway/testdata/k8s-cluster-private-network.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-private-network.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 176686d0-8cc8-459e-9c62-9ce47bccabda
+ - a9375dda-1cde-4d37-9355-822e693a3de2
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "720"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:46 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6b98573f-de98-4c7f-876e-81f2dbdb87e3
+ - b8be7f9e-5aec-4c92-a0d8-b34f3d3e5874
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "720"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:46 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4529851a-3b95-4af5-8608-1a8fc7b307a5
+ - bb9baa3b-9f5f-4121-979a-4483ba2bc2af
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"722a187e-ca86-4bad-95b8-6721702d8672"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124884791Z","created_at":"2023-11-13T13:57:47.124884791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:47.135537721Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885330909Z","created_at":"2023-12-08T16:04:48.885330909Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:48.895646226Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1527"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:47 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55962f98-f921-4369-b39a-2996bb8229c4
+ - e2423faa-68e2-428c-a9c3-bc69d93891af
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:47.135538Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:48.895646Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1518"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:47 GMT
+ - Fri, 08 Dec 2023 16:04:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2d37f295-0dc9-45ec-8073-54352ba32d35
+ - 49501992-ce80-4afc-a4d9-f127cc3f3ef5
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:49.298661Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:50.804517Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2db4f2a0-1053-4ace-8392-b1bd4c154a6e
+ - fe0ab6bd-cc26-42ec-b84d-1eb6564b11bd
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:49.298661Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:50.804517Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1df377f3-74fa-4b92-ab12-911bca5f0a2d
+ - 081dab19-f592-44dd-ae03-af6720815507
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmpNRTlHYjFoRVZFMTZUVlJGZUUxcVJYcE9WR013VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTM0JIQ2xOWVYzTm1Wak5TU3pSdk5XVjBkRWhoYlhreVRtaFBUVVJ2VEhWcWNpOUVTV1pvWlRWS2NFSnVRVUZFZDBaS2FHVjBWVzlaWWtZME56UkNZV3N3WVdNS1dtMUtjbTk1ZEhSbk1raElTRzl0UlZGNFdsRnlkWGR5VFZWWlZFTlZVbGhVWlN0TVJuTldiMUpzVGt4cGNXRlRlaXRVYzFSaGJtZ3paMHRUSzBReGJncHlSMjVNTW5CYU9EaENOVkFyUzBGVVRFZElSbVpsV1VSUlNYRXJUMEZXYkdGV1pHMXNNMVp2U0cxU0wxUktjbko1VjNaemQyMTNUSFIxUmtaVlUxTjFDa3c0Vm01M2MxSnlTbTFGTldKMk9IcDFNSFJNWnpBd0sxazViMDg0VXpZMk5XcHhTMjVtVDJwdGNrVlBTMW93WWxKRmVsQnRVemx6VTBKMk5XTkZXVXNLTlZrMU5GSm1abk0xY2xaRUwxWlpWR3B3Vm1jMFZscDVjRXBxWVRFMU4yVXdMelZaY2pCMFVUVk1TRFYxWmtWcVoxVXJjMDhyYjNOSFIwZFpSRXRYYUFwR2VpdDZTelkyZGxZME1IRmtRVUZRT1hwelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1VGQjJlVmh5TmpOS01teHVUWEJLT1ZKR2QwWnZVSGRaVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFZUQmtiMGxUVnpGc01YaEVTbEZuTlV3MmNUZ3lkM0J5UkhSR1ZGQnVOVEp6ZEV4c2EySTVXVmczWW5WU2JsaEhhQW93WkV0eldVdElLMUV6Y25seU9YY3phamxRY0hCT2RXTndhR05NUmt0SWVVTjFXRU13YUcxd05tNUJkRE5RWXpoU1lWaG5VRUprVTFKRFNWVnhUekpKQ205aWMwcHlVV05NSzBrdlZ6RmtOMlJsZUVkTmRGUjZLMUV6T0hZNWRrTjJVMnBzTDJsRWVGcGtMME5WUzNSUlkyUm1Na0k1WVZOS2JYWTBNRVo1WkhZS2R6TnVTMHBMUVU1cE1VSTJRa1pQUWpCVldVNXhaRGhPSzNKcVNHeEplbFJxYkhWb1lrdFFZa3RaTDAxd2JXSmpVMlJMZVhjMk5uTkdMM1JKU21oVlRRcElaMHBqUW1kVk0zZ3libWhZYkVvM2Jsa3pXbmxXUzJSQ1Mwa3hWMGRvYkZSWUwzRnhXV05sWW1KQlFrSklUM2w1V21wcmFHdEZXRFYwWVRSNmVXMHJDblJIYTFSR2JFaDJPV2g2Wm1WS2EybElkVEJuY1V0WmNYaEdabGhzV1dSVVdGcDFNZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWZiMTRiZWQtZTIyZC00Njk2LWIyYzctN2IzOGJiZmNiYzQ5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYWnhua0FyeHVPODdsU2RCNGw4NHhEdFNsZWZhWVFLaDdPc2o1bjBiN3padFpWZ05OaERQdWNxcQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJNVTFHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkV4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURGR2Q21RNGIzWnhUVVpyZWt4cFRtOHJNekZoVUVWVGNtNTBibXQyVTFkNldUQnhibk5RTjNsa1FURTJhak54VmpGcVZTOXJUVzA1TjNJNFZ6WlhOVTlvZERFS2NFcHFhRVkxUkRONVRrSk9UbTl6YVZwMlV6SmtNMWx2TURsVFl6YzJPRkYwTVdwQ1NVWnZhMFI0U1RCM1NGVnhkR3RtVmxKdU0xVnNOelpYVnpVclpncFhhR05DYmxkQk5GRldNMmgzVlhOQlFsRnpPR05XUmpKNU5UZGhSMXBYTVUxUlRYVm1hbVpOZEhGVVFVeFplbGNyTDJaS1pHOVdNREptZEM5NWVsSTNDbEZOUVRndmRWSjRWRVpDTUVWU2RFUkJObHBwTjB3Mk9IVXpSRzFHYzJGdUsySlhUbTlyZWl0MVIwWjRjVnBCYldsWlJrdEdaek5UZG5KWU9UbDFZV0lLVmtObVJXWjRNSE13WVVaU2JXSlJUWGM1VjNaQlRrVnRiMVp2WnpJMGJGbHpUR3hxV2pBMk4wMXdiWEI2WVVwc2Iwd3pTRFZJY201eGRVZ3dVbkZZWWdvelJ5OVJPSGhtWjJ4VGEyTXJkazlaWW5SelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1VscDZOV2RtT0VjNVpYTlpRWGRXVDNJdlUxQjRTMUZ1ZG5oTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ01pOVdUVkJDUTBjclIwRXZUSGRTVGxObmFGQTFlamxPYmk5T1Zta3pUMmRTTlRWWllUUmhZamhMUzA1eWNYaHpUQXAxY0dZMVkxbFRiMVJMT1VWbUwzaFZMMUIzYVRCck9ISTJTMDgxU21SM1QxQnZjU3RTTnpkRmNVdFdiM05MTld4WVpIcGhlRGhtYzFvck1rRnhTbkZ6Q2sweE1YaEdURFU1VlZWWVZFaFBhakZ1VXpkMlIxTjRTbGh3VlVOSlNVSnRXR0pDTkROcGVsQkZVRkYwTTNSVlpHeG1ZMmxUT1RaT2MyVjNPR0ZYTTBrS01HTndTa3AxYldwUGRHWjVkMmRTVHpkWGNIZHlRalF5VVhGUE1VcDJkemd6Y20xNVlrdDVVbUZPY2xKRWIzUlNiMDFaYlVzeUwydDJhR2hIVjB0c2FRcGxZbGRuVFVoWGVVbHplR0p6TlUxSFlVRlZZVVZqVjFKSloxQlpRVFI1YjNWNmVqQjNSVzAxYUhGU1NYUjVaV1JaVTFSR2JVZFZhVzVtZFVodFRXSmtDakJVYW5WNE1XOWxXQzlzY2s1bWJWVkpOVGwzV1VaaGExTkhUMlpPWVZGWFRrcEhXZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjFlYWFiYmQtY2UzZC00ZmZiLWFmYTYtMDE2ODc3ZDYwNzEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBcHRoRUlLZzE2RXd1YkFhVlVxMUFsOHpyYXJuQUlQWGJ3b3BQMm5TM3k5NlE2NkN6d3hzcFgxTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0d90e4e7-de05-481e-8e0a-ae2518085961
+ - 673c3b42-22b9-42b4-a765-068e36f1fc56
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:49.298661Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:50.804517Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 487d3a65-6c81-413d-b4a4-1922f15a03a2
+ - 4ef883e6-b818-415f-8149-7f41318ac832
status: 200 OK
code: 200
duration: ""
@@ -313,10 +313,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "720"
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,7 +335,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f5db680-8948-403e-b9de-f8c6bb968fdc
+ - cfe24813-2c7d-4d0e-8982-44befb7b2797
status: 200 OK
code: 200
duration: ""
@@ -346,10 +346,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:49.298661Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:50.804517Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -358,7 +358,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:52 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -368,7 +368,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f358f2f2-c462-40e3-b4fe-47122903588d
+ - 677668ca-1ed0-4b44-bf27-36ad8f8cda0f
status: 200 OK
code: 200
duration: ""
@@ -379,10 +379,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "720"
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:53 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -401,7 +401,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6af94bba-03af-433d-9e22-b5a826c4b3b5
+ - 11d6a21c-0d08-45f8-ada3-95f070018ef5
status: 200 OK
code: 200
duration: ""
@@ -412,10 +412,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:49.298661Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:50.804517Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -424,7 +424,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:53 GMT
+ - Fri, 08 Dec 2023 16:04:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -434,7 +434,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e5f0f6f2-249d-419f-861f-c2182eec9dbc
+ - da7842fd-0ecc-44c4-874e-180ad5a93e95
status: 200 OK
code: 200
duration: ""
@@ -445,10 +445,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmpNRTlHYjFoRVZFMTZUVlJGZUUxcVJYcE9WR013VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTM0JIQ2xOWVYzTm1Wak5TU3pSdk5XVjBkRWhoYlhreVRtaFBUVVJ2VEhWcWNpOUVTV1pvWlRWS2NFSnVRVUZFZDBaS2FHVjBWVzlaWWtZME56UkNZV3N3WVdNS1dtMUtjbTk1ZEhSbk1raElTRzl0UlZGNFdsRnlkWGR5VFZWWlZFTlZVbGhVWlN0TVJuTldiMUpzVGt4cGNXRlRlaXRVYzFSaGJtZ3paMHRUSzBReGJncHlSMjVNTW5CYU9EaENOVkFyUzBGVVRFZElSbVpsV1VSUlNYRXJUMEZXYkdGV1pHMXNNMVp2U0cxU0wxUktjbko1VjNaemQyMTNUSFIxUmtaVlUxTjFDa3c0Vm01M2MxSnlTbTFGTldKMk9IcDFNSFJNWnpBd0sxazViMDg0VXpZMk5XcHhTMjVtVDJwdGNrVlBTMW93WWxKRmVsQnRVemx6VTBKMk5XTkZXVXNLTlZrMU5GSm1abk0xY2xaRUwxWlpWR3B3Vm1jMFZscDVjRXBxWVRFMU4yVXdMelZaY2pCMFVUVk1TRFYxWmtWcVoxVXJjMDhyYjNOSFIwZFpSRXRYYUFwR2VpdDZTelkyZGxZME1IRmtRVUZRT1hwelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1VGQjJlVmh5TmpOS01teHVUWEJLT1ZKR2QwWnZVSGRaVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFZUQmtiMGxUVnpGc01YaEVTbEZuTlV3MmNUZ3lkM0J5UkhSR1ZGQnVOVEp6ZEV4c2EySTVXVmczWW5WU2JsaEhhQW93WkV0eldVdElLMUV6Y25seU9YY3phamxRY0hCT2RXTndhR05NUmt0SWVVTjFXRU13YUcxd05tNUJkRE5RWXpoU1lWaG5VRUprVTFKRFNWVnhUekpKQ205aWMwcHlVV05NSzBrdlZ6RmtOMlJsZUVkTmRGUjZLMUV6T0hZNWRrTjJVMnBzTDJsRWVGcGtMME5WUzNSUlkyUm1Na0k1WVZOS2JYWTBNRVo1WkhZS2R6TnVTMHBMUVU1cE1VSTJRa1pQUWpCVldVNXhaRGhPSzNKcVNHeEplbFJxYkhWb1lrdFFZa3RaTDAxd2JXSmpVMlJMZVhjMk5uTkdMM1JKU21oVlRRcElaMHBqUW1kVk0zZ3libWhZYkVvM2Jsa3pXbmxXUzJSQ1Mwa3hWMGRvYkZSWUwzRnhXV05sWW1KQlFrSklUM2w1V21wcmFHdEZXRFYwWVRSNmVXMHJDblJIYTFSR2JFaDJPV2g2Wm1WS2EybElkVEJuY1V0WmNYaEdabGhzV1dSVVdGcDFNZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWZiMTRiZWQtZTIyZC00Njk2LWIyYzctN2IzOGJiZmNiYzQ5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYWnhua0FyeHVPODdsU2RCNGw4NHhEdFNsZWZhWVFLaDdPc2o1bjBiN3padFpWZ05OaERQdWNxcQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJNVTFHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkV4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURGR2Q21RNGIzWnhUVVpyZWt4cFRtOHJNekZoVUVWVGNtNTBibXQyVTFkNldUQnhibk5RTjNsa1FURTJhak54VmpGcVZTOXJUVzA1TjNJNFZ6WlhOVTlvZERFS2NFcHFhRVkxUkRONVRrSk9UbTl6YVZwMlV6SmtNMWx2TURsVFl6YzJPRkYwTVdwQ1NVWnZhMFI0U1RCM1NGVnhkR3RtVmxKdU0xVnNOelpYVnpVclpncFhhR05DYmxkQk5GRldNMmgzVlhOQlFsRnpPR05XUmpKNU5UZGhSMXBYTVUxUlRYVm1hbVpOZEhGVVFVeFplbGNyTDJaS1pHOVdNREptZEM5NWVsSTNDbEZOUVRndmRWSjRWRVpDTUVWU2RFUkJObHBwTjB3Mk9IVXpSRzFHYzJGdUsySlhUbTlyZWl0MVIwWjRjVnBCYldsWlJrdEdaek5UZG5KWU9UbDFZV0lLVmtObVJXWjRNSE13WVVaU2JXSlJUWGM1VjNaQlRrVnRiMVp2WnpJMGJGbHpUR3hxV2pBMk4wMXdiWEI2WVVwc2Iwd3pTRFZJY201eGRVZ3dVbkZZWWdvelJ5OVJPSGhtWjJ4VGEyTXJkazlaWW5SelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1VscDZOV2RtT0VjNVpYTlpRWGRXVDNJdlUxQjRTMUZ1ZG5oTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ01pOVdUVkJDUTBjclIwRXZUSGRTVGxObmFGQTFlamxPYmk5T1Zta3pUMmRTTlRWWllUUmhZamhMUzA1eWNYaHpUQXAxY0dZMVkxbFRiMVJMT1VWbUwzaFZMMUIzYVRCck9ISTJTMDgxU21SM1QxQnZjU3RTTnpkRmNVdFdiM05MTld4WVpIcGhlRGhtYzFvck1rRnhTbkZ6Q2sweE1YaEdURFU1VlZWWVZFaFBhakZ1VXpkMlIxTjRTbGh3VlVOSlNVSnRXR0pDTkROcGVsQkZVRkYwTTNSVlpHeG1ZMmxUT1RaT2MyVjNPR0ZYTTBrS01HTndTa3AxYldwUGRHWjVkMmRTVHpkWGNIZHlRalF5VVhGUE1VcDJkemd6Y20xNVlrdDVVbUZPY2xKRWIzUlNiMDFaYlVzeUwydDJhR2hIVjB0c2FRcGxZbGRuVFVoWGVVbHplR0p6TlUxSFlVRlZZVVZqVjFKSloxQlpRVFI1YjNWNmVqQjNSVzAxYUhGU1NYUjVaV1JaVTFSR2JVZFZhVzVtZFVodFRXSmtDakJVYW5WNE1XOWxXQzlzY2s1bWJWVkpOVGwzV1VaaGExTkhUMlpPWVZGWFRrcEhXZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjFlYWFiYmQtY2UzZC00ZmZiLWFmYTYtMDE2ODc3ZDYwNzEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBcHRoRUlLZzE2RXd1YkFhVlVxMUFsOHpyYXJuQUlQWGJ3b3BQMm5TM3k5NlE2NkN6d3hzcFgxTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -457,7 +457,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:57 GMT
+ - Fri, 08 Dec 2023 16:04:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -467,7 +467,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69576e98-bce1-476c-b9c0-4ec89d9a8a81
+ - dd34a331-c8f5-42a9-960b-be356cb24c77
status: 200 OK
code: 200
duration: ""
@@ -478,10 +478,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "720"
@@ -490,7 +490,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:57 GMT
+ - Fri, 08 Dec 2023 16:04:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -500,7 +500,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f663a8fe-bec2-4b50-9ac7-0bd0b2626fc8
+ - 8ff5e483-b6dd-473f-98e4-3a0dae863805
status: 200 OK
code: 200
duration: ""
@@ -511,10 +511,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:49.298661Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:50.804517Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -523,7 +523,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:57 GMT
+ - Fri, 08 Dec 2023 16:04:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -533,7 +533,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d6897531-0d69-48dc-9b30-462446e08ae9
+ - 35037314-e8fb-4e0e-a7e6-6382494105f8
status: 200 OK
code: 200
duration: ""
@@ -544,10 +544,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUmpNRTlHYjFoRVZFMTZUVlJGZUUxcVJYcE9WR013VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTM0JIQ2xOWVYzTm1Wak5TU3pSdk5XVjBkRWhoYlhreVRtaFBUVVJ2VEhWcWNpOUVTV1pvWlRWS2NFSnVRVUZFZDBaS2FHVjBWVzlaWWtZME56UkNZV3N3WVdNS1dtMUtjbTk1ZEhSbk1raElTRzl0UlZGNFdsRnlkWGR5VFZWWlZFTlZVbGhVWlN0TVJuTldiMUpzVGt4cGNXRlRlaXRVYzFSaGJtZ3paMHRUSzBReGJncHlSMjVNTW5CYU9EaENOVkFyUzBGVVRFZElSbVpsV1VSUlNYRXJUMEZXYkdGV1pHMXNNMVp2U0cxU0wxUktjbko1VjNaemQyMTNUSFIxUmtaVlUxTjFDa3c0Vm01M2MxSnlTbTFGTldKMk9IcDFNSFJNWnpBd0sxazViMDg0VXpZMk5XcHhTMjVtVDJwdGNrVlBTMW93WWxKRmVsQnRVemx6VTBKMk5XTkZXVXNLTlZrMU5GSm1abk0xY2xaRUwxWlpWR3B3Vm1jMFZscDVjRXBxWVRFMU4yVXdMelZaY2pCMFVUVk1TRFYxWmtWcVoxVXJjMDhyYjNOSFIwZFpSRXRYYUFwR2VpdDZTelkyZGxZME1IRmtRVUZRT1hwelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaR1VGQjJlVmh5TmpOS01teHVUWEJLT1ZKR2QwWnZVSGRaVWpSTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFZUQmtiMGxUVnpGc01YaEVTbEZuTlV3MmNUZ3lkM0J5UkhSR1ZGQnVOVEp6ZEV4c2EySTVXVmczWW5WU2JsaEhhQW93WkV0eldVdElLMUV6Y25seU9YY3phamxRY0hCT2RXTndhR05NUmt0SWVVTjFXRU13YUcxd05tNUJkRE5RWXpoU1lWaG5VRUprVTFKRFNWVnhUekpKQ205aWMwcHlVV05NSzBrdlZ6RmtOMlJsZUVkTmRGUjZLMUV6T0hZNWRrTjJVMnBzTDJsRWVGcGtMME5WUzNSUlkyUm1Na0k1WVZOS2JYWTBNRVo1WkhZS2R6TnVTMHBMUVU1cE1VSTJRa1pQUWpCVldVNXhaRGhPSzNKcVNHeEplbFJxYkhWb1lrdFFZa3RaTDAxd2JXSmpVMlJMZVhjMk5uTkdMM1JKU21oVlRRcElaMHBqUW1kVk0zZ3libWhZYkVvM2Jsa3pXbmxXUzJSQ1Mwa3hWMGRvYkZSWUwzRnhXV05sWW1KQlFrSklUM2w1V21wcmFHdEZXRFYwWVRSNmVXMHJDblJIYTFSR2JFaDJPV2g2Wm1WS2EybElkVEJuY1V0WmNYaEdabGhzV1dSVVdGcDFNZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWZiMTRiZWQtZTIyZC00Njk2LWIyYzctN2IzOGJiZmNiYzQ5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYWnhua0FyeHVPODdsU2RCNGw4NHhEdFNsZWZhWVFLaDdPc2o1bjBiN3padFpWZ05OaERQdWNxcQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlJNVTFHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRkV4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURGR2Q21RNGIzWnhUVVpyZWt4cFRtOHJNekZoVUVWVGNtNTBibXQyVTFkNldUQnhibk5RTjNsa1FURTJhak54VmpGcVZTOXJUVzA1TjNJNFZ6WlhOVTlvZERFS2NFcHFhRVkxUkRONVRrSk9UbTl6YVZwMlV6SmtNMWx2TURsVFl6YzJPRkYwTVdwQ1NVWnZhMFI0U1RCM1NGVnhkR3RtVmxKdU0xVnNOelpYVnpVclpncFhhR05DYmxkQk5GRldNMmgzVlhOQlFsRnpPR05XUmpKNU5UZGhSMXBYTVUxUlRYVm1hbVpOZEhGVVFVeFplbGNyTDJaS1pHOVdNREptZEM5NWVsSTNDbEZOUVRndmRWSjRWRVpDTUVWU2RFUkJObHBwTjB3Mk9IVXpSRzFHYzJGdUsySlhUbTlyZWl0MVIwWjRjVnBCYldsWlJrdEdaek5UZG5KWU9UbDFZV0lLVmtObVJXWjRNSE13WVVaU2JXSlJUWGM1VjNaQlRrVnRiMVp2WnpJMGJGbHpUR3hxV2pBMk4wMXdiWEI2WVVwc2Iwd3pTRFZJY201eGRVZ3dVbkZZWWdvelJ5OVJPSGhtWjJ4VGEyTXJkazlaWW5SelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1VscDZOV2RtT0VjNVpYTlpRWGRXVDNJdlUxQjRTMUZ1ZG5oTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ01pOVdUVkJDUTBjclIwRXZUSGRTVGxObmFGQTFlamxPYmk5T1Zta3pUMmRTTlRWWllUUmhZamhMUzA1eWNYaHpUQXAxY0dZMVkxbFRiMVJMT1VWbUwzaFZMMUIzYVRCck9ISTJTMDgxU21SM1QxQnZjU3RTTnpkRmNVdFdiM05MTld4WVpIcGhlRGhtYzFvck1rRnhTbkZ6Q2sweE1YaEdURFU1VlZWWVZFaFBhakZ1VXpkMlIxTjRTbGh3VlVOSlNVSnRXR0pDTkROcGVsQkZVRkYwTTNSVlpHeG1ZMmxUT1RaT2MyVjNPR0ZYTTBrS01HTndTa3AxYldwUGRHWjVkMmRTVHpkWGNIZHlRalF5VVhGUE1VcDJkemd6Y20xNVlrdDVVbUZPY2xKRWIzUlNiMDFaYlVzeUwydDJhR2hIVjB0c2FRcGxZbGRuVFVoWGVVbHplR0p6TlUxSFlVRlZZVVZqVjFKSloxQlpRVFI1YjNWNmVqQjNSVzAxYUhGU1NYUjVaV1JaVTFSR2JVZFZhVzVtZFVodFRXSmtDakJVYW5WNE1XOWxXQzlzY2s1bWJWVkpOVGwzV1VaaGExTkhUMlpPWVZGWFRrcEhXZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYjFlYWFiYmQtY2UzZC00ZmZiLWFmYTYtMDE2ODc3ZDYwNzEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBcHRoRUlLZzE2RXd1YkFhVlVxMUFsOHpyYXJuQUlQWGJ3b3BQMm5TM3k5NlE2NkN6d3hzcFgxTA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -556,7 +556,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:58 GMT
+ - Fri, 08 Dec 2023 16:04:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -566,7 +566,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff9a576c-6259-401c-98f2-8ba491842fe6
+ - 3eee4d09-d678-42f3-925b-5fef50a58478
status: 200 OK
code: 200
duration: ""
@@ -577,10 +577,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49?with_additional_resources=false
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710?with_additional_resources=false
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:58.941572571Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:56.241413263Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -589,7 +589,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:59 GMT
+ - Fri, 08 Dec 2023 16:04:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -599,7 +599,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a7155e33-4ddb-43c3-8f5f-9b08d683a011
+ - 1201dca5-6c5a-474e-b350-9bd9d767e47a
status: 200 OK
code: 200
duration: ""
@@ -610,10 +610,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://efb14bed-e22d-4696-b2c7-7b38bbfcbc49.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:57:47.124885Z","created_at":"2023-11-13T13:57:47.124885Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.efb14bed-e22d-4696-b2c7-7b38bbfcbc49.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","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":"722a187e-ca86-4bad-95b8-6721702d8672","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-11-13T13:57:58.941573Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b1eaabbd-ce3d-4ffb-afa6-016877d60710.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:04:48.885331Z","created_at":"2023-12-08T16:04:48.885331Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b1eaabbd-ce3d-4ffb-afa6-016877d60710.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","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":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","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-12-08T16:04:56.241413Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1518"
@@ -622,7 +622,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:59 GMT
+ - Fri, 08 Dec 2023 16:04:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -632,7 +632,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0091257f-4f50-4264-a6f2-c8f53c43be2e
+ - 8100276a-a32c-4503-8757-ac7dc168a9a5
status: 200 OK
code: 200
duration: ""
@@ -643,10 +643,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/efb14bed-e22d-4696-b2c7-7b38bbfcbc49
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b1eaabbd-ce3d-4ffb-afa6-016877d60710
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"efb14bed-e22d-4696-b2c7-7b38bbfcbc49","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"b1eaabbd-ce3d-4ffb-afa6-016877d60710","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -655,7 +655,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:04 GMT
+ - Fri, 08 Dec 2023 16:05:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -665,7 +665,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9edf0573-644d-4d64-bd24-7c7649447293
+ - 254b894c-f863-46a3-b337-a00147eafca8
status: 404 Not Found
code: 404
duration: ""
@@ -681,7 +681,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:58:04.478063Z","dhcp_enabled":true,"id":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:58:04.478063Z","id":"cd178612-c9d7-4e8e-a510-e11abe61d591","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:58:04.478063Z"},{"created_at":"2023-11-13T13:58:04.478063Z","id":"a3d07c6e-a0ca-4dab-b21c-5477941bbf38","subnet":"fd63:256c:45f7:dfd5::/64","updated_at":"2023-11-13T13:58:04.478063Z"}],"tags":[],"updated_at":"2023-11-13T13:58:04.478063Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:05:01.420904Z","dhcp_enabled":true,"id":"726f347e-6460-49c7-bede-76307a4ec29b","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:05:01.420904Z","id":"9d9d0d58-c533-4775-b591-998952fc6096","subnet":"172.16.40.0/22","updated_at":"2023-12-08T16:05:01.420904Z"},{"created_at":"2023-12-08T16:05:01.420904Z","id":"dc01ed9d-ab77-4363-a871-1ab093cfb402","subnet":"fd63:256c:45f7:9bbf::/64","updated_at":"2023-12-08T16:05:01.420904Z"}],"tags":[],"updated_at":"2023-12-08T16:05:01.420904Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "722"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
+ - Fri, 08 Dec 2023 16:05:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a05be7b9-49a0-457e-9c1d-252305f80539
+ - 7125ef31-8ad5-42db-8875-f88f805ad41b
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c45f90a-c5a8-47e5-8856-e18c85bb870d
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/726f347e-6460-49c7-bede-76307a4ec29b
method: GET
response:
- body: '{"created_at":"2023-11-13T13:58:04.478063Z","dhcp_enabled":true,"id":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:58:04.478063Z","id":"cd178612-c9d7-4e8e-a510-e11abe61d591","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:58:04.478063Z"},{"created_at":"2023-11-13T13:58:04.478063Z","id":"a3d07c6e-a0ca-4dab-b21c-5477941bbf38","subnet":"fd63:256c:45f7:dfd5::/64","updated_at":"2023-11-13T13:58:04.478063Z"}],"tags":[],"updated_at":"2023-11-13T13:58:04.478063Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:05:01.420904Z","dhcp_enabled":true,"id":"726f347e-6460-49c7-bede-76307a4ec29b","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:05:01.420904Z","id":"9d9d0d58-c533-4775-b591-998952fc6096","subnet":"172.16.40.0/22","updated_at":"2023-12-08T16:05:01.420904Z"},{"created_at":"2023-12-08T16:05:01.420904Z","id":"dc01ed9d-ab77-4363-a871-1ab093cfb402","subnet":"fd63:256c:45f7:9bbf::/64","updated_at":"2023-12-08T16:05:01.420904Z"}],"tags":[],"updated_at":"2023-12-08T16:05:01.420904Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "722"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
+ - Fri, 08 Dec 2023 16:05:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,12 +733,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 41388831-2bda-4c3d-ae48-b58155638598
+ - 1802dd73-c7d2-43be-abe9-e9356f303278
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"7c45f90a-c5a8-47e5-8856-e18c85bb870d"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"726f347e-6460-49c7-bede-76307a4ec29b"}'
form: {}
headers:
Content-Type:
@@ -749,7 +749,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823947874Z","created_at":"2023-11-13T13:58:09.823947874Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:09.834238736Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674187Z","created_at":"2023-12-08T16:05:02.346674187Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:02.358480965Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1527"
@@ -758,7 +758,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:09 GMT
+ - Fri, 08 Dec 2023 16:05:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -768,7 +768,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3c296ab8-5c75-4fb8-aeaf-a4524434a8fd
+ - 5d49d940-aeb2-4e9e-9830-b6931f49dea6
status: 200 OK
code: 200
duration: ""
@@ -779,10 +779,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:09.834239Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:02.358481Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1518"
@@ -791,7 +791,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:10 GMT
+ - Fri, 08 Dec 2023 16:05:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -801,7 +801,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b65dfbdd-9b39-4bfe-a218-3bad6ebd8c12
+ - 850a8e81-de8c-495f-baa8-c7e15c4ccaf9
status: 200 OK
code: 200
duration: ""
@@ -812,10 +812,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:12.405943Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:04.408160Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -824,7 +824,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -834,7 +834,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a5d3080-d39f-4ce0-a9c9-037479a9cefc
+ - ba24c318-0733-45fc-872a-463ce21e9998
status: 200 OK
code: 200
duration: ""
@@ -845,10 +845,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:12.405943Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:04.408160Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -857,7 +857,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -867,7 +867,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 687f22f0-dc0d-4f15-b5b9-91bbbd229df0
+ - 0fb804d9-d8cb-47b6-8e32-71a2158e470e
status: 200 OK
code: 200
duration: ""
@@ -878,10 +878,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUm5lRTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WR2Q0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1EzQ21kR1N6SXdiMWRoVDFreFZIbDFPVTgxTHl0R1QwZHBSbHAxY1RWVU1VcExibWhuTjNJek4xVkxSMkZST1dGUWMwTnZXVkZvUVRCaFFWSm5RVVp0VXpVS2QyWmFXa3A2YkZRNVNDdDNXbFJUWnpGV1kyNWllSFZRZVZJMlFXdFBZamt2YkhSek1FeGFSRVozTlZvd2RWcEZNMVY1UmtWbGVWQkhWazh5T1dJMFN3cDBLMmhXTDNnM2RWaEhhMmh3Tlc5NFFsVktVRVJ4TjNOYU0yUm1iRkF5S3paVVptRk5TWFpuU21SVGNHMXZhMlpQYjBGbFdHUTJkR0pPSzFKNlpUVnlDazR5UjNJelNraFpjVTF6VjBzMWJVSlBiMUI0Y0VkTVEzbHJkamxZVkVsbGQzRldaVzlQV2xVNVdrVnVUMUZ4UXpKU01qTmxjVVJKVW5oa1YxWnNTMmdLWjI0emNWTmtSV3huYWtSR1JuaDZZMFJHTTNNMVExWnNWMnRNVDFGaVVtb3lTMGsxTUhWa1RpdFFTWFZwV205RVYzQkRWVzlCVkVzd1NURkRZVlpWTWdwb05pOXVlbEl3ZGpSclRsUk1jR2hUZWpSalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1VtdEtPRnBoY0hKU2VIcGFjVGxPVkRjM1JtNHlhbk5oY0dsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1UyTnFLekZhTVUxVlVIQlJaSEJ4VlZKQlRFRlhOVlozV21ObVJIcFlhMU5zTVROeGFYVjJRbXc0T1RsNlUwOTZNQXBEWjBjclFtcHVabXAxZVVaa2RFdDVjRFEzWVhwRldqRnFSRlp1VWtZdk9GRkxRbFl5VFZka2NraFFTMUZyZGtGd01uTlpORTR3U0dRNWVsRlZaMVJuQ210NlRHNVFZVVJwZEV0Qk5WVktTMFJNVjBnMk5HOUljM2xRWnpscE4waHdTbWxRTUUxcldVNDNWVzFpWVZOTU9YQlNOa2M1ZVhwRVNGTlJiR3hJSzNJS1JqTnRhbFJQU1dWRVdsQjVZeXRHYzNaV2JrRkNUR05pVm10cmEwUkJiSHB1YzFCd1dEQjBWVE5PVm5WTFQzcGFNbE5KTDBGalFraHhNbmd6TW1ONEt3cENTVVJSVVZGNVZXOUNOMDEzUTJocVEwWmtUazFPWkhGc2FIUlFSVEVyUWl0TVowOUhSMWxXYTFWSFdFb3pkM1JEYTNwb2NVcFVUVEZTTlhOSFRGbFZDa05XUmxOclFuZHFhVEZ6Vm1vek56Wk9aMUpzU0cxTWJsbDFPRkZvYkRrelkwWjBTZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDNhNGVlYWUtYmZkZC00NjNkLWE3YWUtZDE2MjY5NTA5NjVlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB5bmNUVndzVjJKZDE3b3Z5OUZxNlowTnlITGhDckFlNUZLbUhkVng2dzc2Q00yWTBqSlR5bGd0WA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlZkMDVHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRlYzVGtadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMmxWQ2xWTlIwWnBiWGRIYURKVGFFdFFPVThyU2t4a1dtbFlNekF2ZVUwclVsQjJUVlJYZDNrdmNUVnRZMWhEVUcxc2R6QXlXVEY0UVRZNVRHcDFOMjVyZFhjS1dWbFFSR2RaUVRKdllTdDJWbWx5VW5OWFYzUjVNVEZxWW1WdGFXSlpVR0prTkRCaE9IUlZTMHhMSzJSaU1qWXljRWcxYlhCMU1sRjZiMDVXUnpKMVN3cG9aMGxuYmtaVVl6QnlUVE0yWkM4M2NXaHBVVWhoZDJaUE5VNXhMekJQU0ZaM1lteGxkVmhzT1RRNFNtTlFjVGhOUjNaUVZtZERURUU0ZDJ4T2VXTlBDbkpXWmxWWFdITjFZbUo2WWtOdmNUTjNUV0YzU3pObGNIbE9LMnRRZDFJMFlYcFJjWEZoVlZkR1JIY3pTSGd5WVZkVk5HdDVRVkZWUWtkcVdFZFZhak1LV0RscVRqVkxPR3MwU0ZCRlVuYzFhWFJMUVhWS1EyNVRPV1JrUkhSS2VsQTRlREVyVlRScFIxUlpVRE54VlRkUlMwdHlVVkpMUjFsRWFEZFlVRE5UUXdwQmNVTkVibEZYU0c5eE4yOXZkMGhxTlRWVlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1NHbzJRalVyYTBwR1UxZEdkelJLUVhnek4xTkNUakpSU25STlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1drSXhNRXhUWkVVMWMxbzRUMk5YWmxwUFRrNUtZWEExZFVJMVEycG1ZUzh3T0V0M2RVZHFZbFpPSzB4RVRYcFhZUXBsZVZaYWJsbDZLMU5aTkdaWlJtWkhkRFJhVlVSUFJreFVhV1Z5ZFRWdGR5OTBRM0V2ZFZCMVIwSlZNelprVkd3NGFXRXJhRmRRTVVabVdUWlVVSE5hQ21vd05EVllVbTV6VVZsdFNWRk9SbTl2WkV0d1VYbDJkelpTZUU1VGF6VjZUVXBLVWsxV1JsTm1hVUpQVGpsdlVraFZSVFZaTTJaRlZuVTBlVkZLYlhvS1ZsbDJPVkJrTUVaS1lsTnRTVFp4VDNkMVNXWjZkVlZvUm5CMlVqWkZjbE0zVXpOcVNGUnlSVFpDWm1GMlZuTnhPRk5aUzFOWlRFVnFXRlV6WlhCRlV3cElWQzlNYWs1bmRVRkNhRUpPYkN0bU9FMTNSMmREUjBzMlpDOU1jRTl1UjFrMVNYRkVaVmQ1YldOVGFUQlJiVkJxVmpBNVVYQTNiVUZrY0d0WmFVNHlDa1pQUm1RM09XNXdLelJ5YVZkRFYzaDNlVXBWUkRSUGJFeFBUREp6UmpsRFEzQXlNQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYWUxMjA3YTctNzE5ZC00ZjU0LWIxZmItZDhjOGQ4ODk0OGU2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYZVpFTWxjU2gzdGZiSklNYktBd1pXSkVYWDg5TU9IWVY0T3ZDc0k3UXhYMDNvSEFMTEpmM2E0cA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -890,7 +890,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -900,7 +900,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9052d983-62cc-400a-a93c-367ecedd2812
+ - a8fdf1c1-3ef7-45f4-93d8-5fae2bff1ede
status: 200 OK
code: 200
duration: ""
@@ -911,10 +911,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:12.405943Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:04.408160Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -923,7 +923,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -933,7 +933,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e3542439-090f-446b-a5bb-d0b5160c3f6d
+ - 21985dc2-107a-43e5-93aa-9e7df2102902
status: 200 OK
code: 200
duration: ""
@@ -944,10 +944,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "720"
@@ -956,7 +956,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -966,7 +966,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 82e3f441-876a-4bff-bc6e-97b85a14bb55
+ - 9127999c-df19-45a3-b3d8-19a8fe1220eb
status: 200 OK
code: 200
duration: ""
@@ -977,10 +977,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c45f90a-c5a8-47e5-8856-e18c85bb870d
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/726f347e-6460-49c7-bede-76307a4ec29b
method: GET
response:
- body: '{"created_at":"2023-11-13T13:58:04.478063Z","dhcp_enabled":true,"id":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:58:04.478063Z","id":"cd178612-c9d7-4e8e-a510-e11abe61d591","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:58:04.478063Z"},{"created_at":"2023-11-13T13:58:04.478063Z","id":"a3d07c6e-a0ca-4dab-b21c-5477941bbf38","subnet":"fd63:256c:45f7:dfd5::/64","updated_at":"2023-11-13T13:58:04.478063Z"}],"tags":[],"updated_at":"2023-11-13T13:58:04.478063Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:05:01.420904Z","dhcp_enabled":true,"id":"726f347e-6460-49c7-bede-76307a4ec29b","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:05:01.420904Z","id":"9d9d0d58-c533-4775-b591-998952fc6096","subnet":"172.16.40.0/22","updated_at":"2023-12-08T16:05:01.420904Z"},{"created_at":"2023-12-08T16:05:01.420904Z","id":"dc01ed9d-ab77-4363-a871-1ab093cfb402","subnet":"fd63:256c:45f7:9bbf::/64","updated_at":"2023-12-08T16:05:01.420904Z"}],"tags":[],"updated_at":"2023-12-08T16:05:01.420904Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "722"
@@ -989,7 +989,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -999,7 +999,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8f2d0ec2-99bd-495d-a78f-c62cb65ef7ce
+ - 92fdefe1-12af-4356-bbbe-e1ab56ac75ff
status: 200 OK
code: 200
duration: ""
@@ -1010,10 +1010,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:12.405943Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:04.408160Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -1022,7 +1022,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1032,7 +1032,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f788bc7-0c8b-406c-99a4-ebe3107eafd0
+ - 111b1d2a-8373-4127-b3a5-cf6d029dcfcb
status: 200 OK
code: 200
duration: ""
@@ -1043,19 +1043,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/726f347e-6460-49c7-bede-76307a4ec29b
method: GET
response:
- body: '{"created_at":"2023-11-13T13:57:42.388792Z","dhcp_enabled":true,"id":"722a187e-ca86-4bad-95b8-6721702d8672","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:57:42.388792Z","id":"476fb5a2-f625-4717-a64e-f96edbc43b1c","subnet":"172.16.36.0/22","updated_at":"2023-11-13T13:57:42.388792Z"},{"created_at":"2023-11-13T13:57:42.388792Z","id":"75893f04-a64f-45ea-9ce7-e91f20986997","subnet":"fd63:256c:45f7:553b::/64","updated_at":"2023-11-13T13:57:42.388792Z"}],"tags":[],"updated_at":"2023-11-13T13:57:42.388792Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:05:01.420904Z","dhcp_enabled":true,"id":"726f347e-6460-49c7-bede-76307a4ec29b","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:05:01.420904Z","id":"9d9d0d58-c533-4775-b591-998952fc6096","subnet":"172.16.40.0/22","updated_at":"2023-12-08T16:05:01.420904Z"},{"created_at":"2023-12-08T16:05:01.420904Z","id":"dc01ed9d-ab77-4363-a871-1ab093cfb402","subnet":"fd63:256c:45f7:9bbf::/64","updated_at":"2023-12-08T16:05:01.420904Z"}],"tags":[],"updated_at":"2023-12-08T16:05:01.420904Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "720"
+ - "722"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1065,7 +1065,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a0057ed5-fbc5-4837-a385-242323c12721
+ - 8ca93697-1b1f-444a-b6ba-aa55237cad1e
status: 200 OK
code: 200
duration: ""
@@ -1076,19 +1076,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c45f90a-c5a8-47e5-8856-e18c85bb870d
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"created_at":"2023-11-13T13:58:04.478063Z","dhcp_enabled":true,"id":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:58:04.478063Z","id":"cd178612-c9d7-4e8e-a510-e11abe61d591","subnet":"172.16.52.0/22","updated_at":"2023-11-13T13:58:04.478063Z"},{"created_at":"2023-11-13T13:58:04.478063Z","id":"a3d07c6e-a0ca-4dab-b21c-5477941bbf38","subnet":"fd63:256c:45f7:dfd5::/64","updated_at":"2023-11-13T13:58:04.478063Z"}],"tags":[],"updated_at":"2023-11-13T13:58:04.478063Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T16:04:48.068360Z","dhcp_enabled":true,"id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T16:04:48.068360Z","id":"91aba438-0eee-4367-a9c2-b57ae8e468b0","subnet":"172.16.36.0/22","updated_at":"2023-12-08T16:04:48.068360Z"},{"created_at":"2023-12-08T16:04:48.068360Z","id":"63936005-6af3-4ac3-9b84-282c8fcce57f","subnet":"fd63:256c:45f7:4764::/64","updated_at":"2023-12-08T16:04:48.068360Z"}],"tags":[],"updated_at":"2023-12-08T16:04:48.068360Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "722"
+ - "720"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1098,7 +1098,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b04fe2c0-0ccd-4067-8049-1ea91dc216c8
+ - 35975850-ae82-415a-850a-376ae497027a
status: 200 OK
code: 200
duration: ""
@@ -1109,10 +1109,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:12.405943Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:04.408160Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1523"
@@ -1121,7 +1121,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1131,7 +1131,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 089adcf2-762d-4632-96f3-c2b54fa075cd
+ - 59388c17-7a0d-43ec-b8ab-f6c429152ba3
status: 200 OK
code: 200
duration: ""
@@ -1142,10 +1142,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVSWGhOYWtWNlRsUm5lRTFzYjFoRVZFMTZUVlJGZUUxcVJYcE9WR2Q0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUV1EzQ21kR1N6SXdiMWRoVDFreFZIbDFPVTgxTHl0R1QwZHBSbHAxY1RWVU1VcExibWhuTjNJek4xVkxSMkZST1dGUWMwTnZXVkZvUVRCaFFWSm5RVVp0VXpVS2QyWmFXa3A2YkZRNVNDdDNXbFJUWnpGV1kyNWllSFZRZVZJMlFXdFBZamt2YkhSek1FeGFSRVozTlZvd2RWcEZNMVY1UmtWbGVWQkhWazh5T1dJMFN3cDBLMmhXTDNnM2RWaEhhMmh3Tlc5NFFsVktVRVJ4TjNOYU0yUm1iRkF5S3paVVptRk5TWFpuU21SVGNHMXZhMlpQYjBGbFdHUTJkR0pPSzFKNlpUVnlDazR5UjNJelNraFpjVTF6VjBzMWJVSlBiMUI0Y0VkTVEzbHJkamxZVkVsbGQzRldaVzlQV2xVNVdrVnVUMUZ4UXpKU01qTmxjVVJKVW5oa1YxWnNTMmdLWjI0emNWTmtSV3huYWtSR1JuaDZZMFJHTTNNMVExWnNWMnRNVDFGaVVtb3lTMGsxTUhWa1RpdFFTWFZwV205RVYzQkRWVzlCVkVzd1NURkRZVlpWTWdwb05pOXVlbEl3ZGpSclRsUk1jR2hUZWpSalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1VtdEtPRnBoY0hKU2VIcGFjVGxPVkRjM1JtNHlhbk5oY0dsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1UyTnFLekZhTVUxVlVIQlJaSEJ4VlZKQlRFRlhOVlozV21ObVJIcFlhMU5zTVROeGFYVjJRbXc0T1RsNlUwOTZNQXBEWjBjclFtcHVabXAxZVVaa2RFdDVjRFEzWVhwRldqRnFSRlp1VWtZdk9GRkxRbFl5VFZka2NraFFTMUZyZGtGd01uTlpORTR3U0dRNWVsRlZaMVJuQ210NlRHNVFZVVJwZEV0Qk5WVktTMFJNVjBnMk5HOUljM2xRWnpscE4waHdTbWxRTUUxcldVNDNWVzFpWVZOTU9YQlNOa2M1ZVhwRVNGTlJiR3hJSzNJS1JqTnRhbFJQU1dWRVdsQjVZeXRHYzNaV2JrRkNUR05pVm10cmEwUkJiSHB1YzFCd1dEQjBWVE5PVm5WTFQzcGFNbE5KTDBGalFraHhNbmd6TW1ONEt3cENTVVJSVVZGNVZXOUNOMDEzUTJocVEwWmtUazFPWkhGc2FIUlFSVEVyUWl0TVowOUhSMWxXYTFWSFdFb3pkM1JEYTNwb2NVcFVUVEZTTlhOSFRGbFZDa05XUmxOclFuZHFhVEZ6Vm1vek56Wk9aMUpzU0cxTWJsbDFPRkZvYkRrelkwWjBTZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDNhNGVlYWUtYmZkZC00NjNkLWE3YWUtZDE2MjY5NTA5NjVlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB5bmNUVndzVjJKZDE3b3Z5OUZxNlowTnlITGhDckFlNUZLbUhkVng2dzc2Q00yWTBqSlR5bGd0WA==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVTWGRPZWtVeVRVUlZkMDVHYjFoRVZFMTZUVlJKZDA1NlJUSk5SRlYzVGtadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMmxWQ2xWTlIwWnBiWGRIYURKVGFFdFFPVThyU2t4a1dtbFlNekF2ZVUwclVsQjJUVlJYZDNrdmNUVnRZMWhEVUcxc2R6QXlXVEY0UVRZNVRHcDFOMjVyZFhjS1dWbFFSR2RaUVRKdllTdDJWbWx5VW5OWFYzUjVNVEZxWW1WdGFXSlpVR0prTkRCaE9IUlZTMHhMSzJSaU1qWXljRWcxYlhCMU1sRjZiMDVXUnpKMVN3cG9aMGxuYmtaVVl6QnlUVE0yWkM4M2NXaHBVVWhoZDJaUE5VNXhMekJQU0ZaM1lteGxkVmhzT1RRNFNtTlFjVGhOUjNaUVZtZERURUU0ZDJ4T2VXTlBDbkpXWmxWWFdITjFZbUo2WWtOdmNUTjNUV0YzU3pObGNIbE9LMnRRZDFJMFlYcFJjWEZoVlZkR1JIY3pTSGd5WVZkVk5HdDVRVkZWUWtkcVdFZFZhak1LV0RscVRqVkxPR3MwU0ZCRlVuYzFhWFJMUVhWS1EyNVRPV1JrUkhSS2VsQTRlREVyVlRScFIxUlpVRE54VlRkUlMwdHlVVkpMUjFsRWFEZFlVRE5UUXdwQmNVTkVibEZYU0c5eE4yOXZkMGhxTlRWVlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1NHbzJRalVyYTBwR1UxZEdkelJLUVhnek4xTkNUakpSU25STlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1drSXhNRXhUWkVVMWMxbzRUMk5YWmxwUFRrNUtZWEExZFVJMVEycG1ZUzh3T0V0M2RVZHFZbFpPSzB4RVRYcFhZUXBsZVZaYWJsbDZLMU5aTkdaWlJtWkhkRFJhVlVSUFJreFVhV1Z5ZFRWdGR5OTBRM0V2ZFZCMVIwSlZNelprVkd3NGFXRXJhRmRRTVVabVdUWlVVSE5hQ21vd05EVllVbTV6VVZsdFNWRk9SbTl2WkV0d1VYbDJkelpTZUU1VGF6VjZUVXBLVWsxV1JsTm1hVUpQVGpsdlVraFZSVFZaTTJaRlZuVTBlVkZLYlhvS1ZsbDJPVkJrTUVaS1lsTnRTVFp4VDNkMVNXWjZkVlZvUm5CMlVqWkZjbE0zVXpOcVNGUnlSVFpDWm1GMlZuTnhPRk5aUzFOWlRFVnFXRlV6WlhCRlV3cElWQzlNYWs1bmRVRkNhRUpPYkN0bU9FMTNSMmREUjBzMlpDOU1jRTl1UjFrMVNYRkVaVmQ1YldOVGFUQlJiVkJxVmpBNVVYQTNiVUZrY0d0WmFVNHlDa1pQUm1RM09XNXdLelJ5YVZkRFYzaDNlVXBWUkRSUGJFeFBUREp6UmpsRFEzQXlNQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYWUxMjA3YTctNzE5ZC00ZjU0LWIxZmItZDhjOGQ4ODk0OGU2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYZVpFTWxjU2gzdGZiSklNYktBd1pXSkVYWDg5TU9IWVY0T3ZDc0k3UXhYMDNvSEFMTEpmM2E0cA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2710"
@@ -1154,7 +1154,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:15 GMT
+ - Fri, 08 Dec 2023 16:05:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1164,7 +1164,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f4ba60c3-482a-4608-a8bc-e74f03c70277
+ - 75b06c90-392b-4171-b278-214e4d980779
status: 200 OK
code: 200
duration: ""
@@ -1175,10 +1175,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e?with_additional_resources=false
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6?with_additional_resources=false
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:16.618325530Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:09.719550585Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -1187,7 +1187,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:16 GMT
+ - Fri, 08 Dec 2023 16:05:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1197,7 +1197,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 753dec3d-aa9c-40cd-ae70-1177c0154277
+ - 7ed36725-5c74-4eb9-b337-2823fe930c53
status: 200 OK
code: 200
duration: ""
@@ -1208,10 +1208,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:16.618326Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ae1207a7-719d-4f54-b1fb-d8c8d88948e6.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-12-08T16:05:02.346674Z","created_at":"2023-12-08T16:05:02.346674Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ae1207a7-719d-4f54-b1fb-d8c8d88948e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","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":"726f347e-6460-49c7-bede-76307a4ec29b","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-12-08T16:05:09.719551Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1518"
@@ -1220,7 +1220,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:16 GMT
+ - Fri, 08 Dec 2023 16:05:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1230,7 +1230,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a64fefd5-cafd-480e-8ea6-cb0f2132ecae
+ - 7b0e20a7-098b-4c76-a79b-142af9bd5f44
status: 200 OK
code: 200
duration: ""
@@ -1241,7 +1241,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: DELETE
response:
body: ""
@@ -1251,7 +1251,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:17 GMT
+ - Fri, 08 Dec 2023 16:05:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1261,7 +1261,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3c48ba78-557e-475f-86a8-9d580a382555
+ - da2c5e0b-1401-42a2-a5d3-b64b7902f640
status: 204 No Content
code: 204
duration: ""
@@ -1272,43 +1272,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://43a4eeae-bfdd-463d-a7ae-d1626950965e.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-11-13T13:58:09.823948Z","created_at":"2023-11-13T13:58:09.823948Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.43a4eeae-bfdd-463d-a7ae-d1626950965e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","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":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","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-11-13T13:58:16.618326Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1518"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 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:
- - 8279e3b3-0fef-49d2-b347-adf2c9319cb8
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -1317,7 +1284,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:26 GMT
+ - Fri, 08 Dec 2023 16:05:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1327,7 +1294,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b580038-bbf7-467a-ac4e-d884c52bbad0
+ - 1d145b74-605f-4939-b9dc-de266b112a65
status: 404 Not Found
code: 404
duration: ""
@@ -1338,7 +1305,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c45f90a-c5a8-47e5-8856-e18c85bb870d
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/726f347e-6460-49c7-bede-76307a4ec29b
method: DELETE
response:
body: ""
@@ -1348,7 +1315,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:27 GMT
+ - Fri, 08 Dec 2023 16:05:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1358,7 +1325,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 930ea90a-cde4-443e-8db6-f495b02c0154
+ - 0810b88d-a198-4701-9a3d-31936420c9fa
status: 204 No Content
code: 204
duration: ""
@@ -1369,10 +1336,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/43a4eeae-bfdd-463d-a7ae-d1626950965e
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ae1207a7-719d-4f54-b1fb-d8c8d88948e6
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"43a4eeae-bfdd-463d-a7ae-d1626950965e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"ae1207a7-719d-4f54-b1fb-d8c8d88948e6","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -1381,7 +1348,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:27 GMT
+ - Fri, 08 Dec 2023 16:05:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1391,7 +1358,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e915dc8f-4a7b-424a-9a49-cd12543625e3
+ - cc521f94-87f9-4866-9ca9-c293c26d1bf6
status: 404 Not Found
code: 404
duration: ""
@@ -1402,10 +1369,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/722a187e-ca86-4bad-95b8-6721702d8672
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cf5943b1-575d-49c6-99e9-1c28b6276f2a
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"722a187e-ca86-4bad-95b8-6721702d8672","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"cf5943b1-575d-49c6-99e9-1c28b6276f2a","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -1414,7 +1381,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:27 GMT
+ - Fri, 08 Dec 2023 16:05:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1424,7 +1391,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f7638529-b7a0-4727-9e54-d476d8673b96
+ - 0d71a2de-9174-4c7e-bf96-3afdcb3e3cff
status: 404 Not Found
code: 404
duration: ""
@@ -1435,10 +1402,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c45f90a-c5a8-47e5-8856-e18c85bb870d
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/726f347e-6460-49c7-bede-76307a4ec29b
method: GET
response:
- body: '{"message":"resource is not found","resource":"private_network","resource_id":"7c45f90a-c5a8-47e5-8856-e18c85bb870d","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"private_network","resource_id":"726f347e-6460-49c7-bede-76307a4ec29b","type":"not_found"}'
headers:
Content-Length:
- "136"
@@ -1447,7 +1414,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:27 GMT
+ - Fri, 08 Dec 2023 16:05:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1457,7 +1424,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ef60f784-07fc-46f4-87a4-e3f47a65f2e1
+ - 30e7ceec-e51a-4e2b-b7f0-aba1d4a9dbf0
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/k8s-cluster-type-change.cassette.yaml b/scaleway/testdata/k8s-cluster-type-change.cassette.yaml
index 18c4a1a566..6b2e8d66b3 100644
--- a/scaleway/testdata/k8s-cluster-type-change.cassette.yaml
+++ b/scaleway/testdata/k8s-cluster-type-change.cassette.yaml
@@ -24,7 +24,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:51:09 GMT
+ - Fri, 08 Dec 2023 15:58:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -34,7 +34,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9441cb1f-7e29-4311-847a-e0dafac98987
+ - 46083c5b-299e-48a3-843c-1605fccf12f1
status: 200 OK
code: 200
duration: ""
@@ -50,7 +50,7 @@ interactions:
url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks
method: POST
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "717"
@@ -59,7 +59,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -69,7 +69,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3a9a9061-ac7d-4e9a-8d9d-d4d7d229f90b
+ - a1955ea6-a8c3-4bd6-8f39-c3933e3316e4
status: 200 OK
code: 200
duration: ""
@@ -80,10 +80,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "717"
@@ -92,7 +92,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -102,12 +102,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4de87161-1114-4627-955e-a49b6ea072b1
+ - 4a4fa162-baed-420b-9947-baebebb183e8
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78"}'
form: {}
headers:
Content-Type:
@@ -118,7 +118,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791496Z","created_at":"2023-11-13T13:57:00.723791496Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:00.735257903Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008132Z","created_at":"2023-12-08T15:58:32.828008132Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:32.837626588Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1512"
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -137,7 +137,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4d90c28d-fec6-408d-aa55-9507439615a0
+ - 2f165df4-0b9f-49f5-afc3-b690e4ec02dd
status: 200 OK
code: 200
duration: ""
@@ -148,10 +148,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:00.735258Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:32.837627Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1503"
@@ -160,7 +160,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:00 GMT
+ - Fri, 08 Dec 2023 15:58:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -170,7 +170,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e27129c8-628c-4cec-874b-b4ea6c7eab17
+ - b9081796-ff5a-4c70-8ef2-57fd54bc6248
status: 200 OK
code: 200
duration: ""
@@ -181,10 +181,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:02.515366Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.788856Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -193,7 +193,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 15:58:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -203,7 +203,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 205cdaf7-5b5e-4abe-8204-d4a1bb7f262c
+ - 787475f9-0a47-479b-bb37-774667a491b4
status: 200 OK
code: 200
duration: ""
@@ -214,10 +214,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:02.515366Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.788856Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -226,7 +226,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:05 GMT
+ - Fri, 08 Dec 2023 15:58:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -236,7 +236,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dbfb35c4-9dfc-47e0-aec9-19baa1c51242
+ - 7165786f-5000-4d1b-9fab-6b731188337d
status: 200 OK
code: 200
duration: ""
@@ -247,10 +247,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -259,7 +259,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:06 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -269,7 +269,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - efcfa99d-b87d-44f8-b6d2-7d5647f15a27
+ - e788f524-e880-42ca-8340-2ceab65d3fca
status: 200 OK
code: 200
duration: ""
@@ -280,10 +280,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:02.515366Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.788856Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -292,7 +292,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:06 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -302,7 +302,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f985b26b-11f3-45b6-9bf0-ad9dcccad3e8
+ - 75f3e292-59be-471c-8480-8abaf7285deb
status: 200 OK
code: 200
duration: ""
@@ -313,10 +313,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "717"
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:06 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -335,7 +335,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 994ab808-2894-47d8-ac9d-6c3f6ae22c44
+ - f097e86d-4d9b-41f1-bef6-faf4a7de1a15
status: 200 OK
code: 200
duration: ""
@@ -346,10 +346,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:02.515366Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.788856Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -358,7 +358,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:06 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -368,7 +368,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f53601d-2e83-4668-8d65-56e31f337ca0
+ - 99503462-0a82-4ee9-a357-07587fb4998a
status: 200 OK
code: 200
duration: ""
@@ -379,10 +379,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:07 GMT
+ - Fri, 08 Dec 2023 15:58:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -401,7 +401,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b6a8b482-79dd-4c11-a1c0-6051bac05252
+ - c63015b2-fc4c-4fa4-89ef-a4206e237b00
status: 200 OK
code: 200
duration: ""
@@ -412,10 +412,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "717"
@@ -424,7 +424,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:07 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -434,7 +434,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d7f15bca-6c09-4714-8e30-9ef33a69ffca
+ - 37e93cdd-0efd-40ab-b6c0-093d5fcab36b
status: 200 OK
code: 200
duration: ""
@@ -445,10 +445,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:02.515366Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.788856Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -457,7 +457,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:07 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -467,7 +467,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6abd102e-9c13-468a-900c-b449bbc2c5b5
+ - a27fffa0-c864-4a88-9153-ab0fb3ce6df8
status: 200 OK
code: 200
duration: ""
@@ -478,10 +478,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -490,7 +490,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:07 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -500,7 +500,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6bdf4436-24e8-4be5-bc29-8e52cdc34bcf
+ - 6fdbbd27-ab08-4f8c-a435-e264e0948d00
status: 200 OK
code: 200
duration: ""
@@ -511,7 +511,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
@@ -523,7 +523,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:08 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -533,7 +533,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 59274724-879a-4c85-bc9b-e4babf10dc94
+ - 58ca39a1-a470-4123-bce2-f205ace5693c
status: 200 OK
code: 200
duration: ""
@@ -544,7 +544,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
@@ -556,7 +556,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:08 GMT
+ - Fri, 08 Dec 2023 15:58:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -566,7 +566,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5058b0b-9fe8-4ead-90bd-f131b5cf9b10
+ - e0fdf6a6-9f81-4021-8537-128107715b42
status: 200 OK
code: 200
duration: ""
@@ -577,7 +577,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}'
@@ -589,7 +589,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:08 GMT
+ - Fri, 08 Dec 2023 15:58:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -599,7 +599,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ca566c1-4f4b-4c07-a67e-f82065fa7075
+ - db71fc3f-c98f-47b9-afb8-b6cab01d2774
status: 200 OK
code: 200
duration: ""
@@ -610,10 +610,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-13T13:57:00.723791Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-11-13T13:57:02.515366Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-08T15:58:32.828008Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-12-08T15:58:34.788856Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1508"
@@ -622,7 +622,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:09 GMT
+ - Fri, 08 Dec 2023 15:58:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -632,7 +632,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bc184019-a3b5-40e6-8fdf-87c7f7ef2868
+ - b2bc865d-57c8-40aa-8646-211384db888b
status: 200 OK
code: 200
duration: ""
@@ -645,10 +645,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/set-type
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/set-type
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604173Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535369Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318197830Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390536715Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1521"
@@ -657,7 +657,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:09 GMT
+ - Fri, 08 Dec 2023 15:58:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -667,7 +667,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 215ca2c1-1ee0-4397-8938-bb2293cca153
+ - 5e0074b2-9e71-45c4-9ba5-222992e8e68d
status: 200 OK
code: 200
duration: ""
@@ -678,10 +678,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -690,7 +690,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:10 GMT
+ - Fri, 08 Dec 2023 15:58:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -700,7 +700,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3aaa1902-24f3-494a-b966-7af6718a5255
+ - 125b45b6-6da6-4c77-8651-f6dc9a14e9c9
status: 200 OK
code: 200
duration: ""
@@ -711,10 +711,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -723,7 +723,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:15 GMT
+ - Fri, 08 Dec 2023 15:58:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -733,7 +733,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3df3a4b3-1ee5-458b-8e7a-1fc3ffa31125
+ - f687eccd-d0e8-448a-b3d0-801220ae3cf1
status: 200 OK
code: 200
duration: ""
@@ -744,10 +744,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -756,7 +756,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:20 GMT
+ - Fri, 08 Dec 2023 15:58:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -766,7 +766,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 720f6a7c-5cc2-40e7-98f4-8ba590131096
+ - 9e17003d-38c4-4daa-abd4-75cd47239ace
status: 200 OK
code: 200
duration: ""
@@ -777,10 +777,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -789,7 +789,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:25 GMT
+ - Fri, 08 Dec 2023 15:58:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -799,7 +799,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0737cad-6935-4f38-80cd-9f4a3c5e9221
+ - a5301d14-86bf-4b25-a876-30c40deca185
status: 200 OK
code: 200
duration: ""
@@ -810,10 +810,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -822,7 +822,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:30 GMT
+ - Fri, 08 Dec 2023 15:59:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -832,7 +832,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfc5cffc-6764-4b41-88a0-c5aa965ec05f
+ - 622b221c-9236-4836-8a13-4e6a0501bc0d
status: 200 OK
code: 200
duration: ""
@@ -843,10 +843,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -855,7 +855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:35 GMT
+ - Fri, 08 Dec 2023 15:59:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -865,7 +865,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e8f548c7-eb31-4e76-af52-cdaf813679a8
+ - 9c3fcb40-49a8-4b48-9793-3c33c8a01eb9
status: 200 OK
code: 200
duration: ""
@@ -876,10 +876,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -888,7 +888,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:40 GMT
+ - Fri, 08 Dec 2023 15:59:12 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -898,7 +898,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - be3b4a64-2936-4a3c-981d-8b6929058502
+ - ad7e47ab-d149-4d47-a722-c1731ad4e4ec
status: 200 OK
code: 200
duration: ""
@@ -909,10 +909,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -921,7 +921,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:45 GMT
+ - Fri, 08 Dec 2023 15:59:17 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -931,7 +931,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c43b3075-a57d-4bac-a2cc-ebc7b3a799a4
+ - cac89b84-942f-4a3c-ba18-e35797bc64b9
status: 200 OK
code: 200
duration: ""
@@ -942,10 +942,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -954,7 +954,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:50 GMT
+ - Fri, 08 Dec 2023 15:59:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -964,7 +964,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb6e38c1-0884-41cf-a152-41bfa21a78a6
+ - 3e073a64-ce7c-4723-8459-808c79cb02b4
status: 200 OK
code: 200
duration: ""
@@ -975,10 +975,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:57:09.968535Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -987,7 +987,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:57:56 GMT
+ - Fri, 08 Dec 2023 15:59:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -997,7 +997,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - af490dee-5c06-46e1-9745-2f5151239acf
+ - 70f12d6e-8757-4b4e-a625-77347210820a
status: 200 OK
code: 200
duration: ""
@@ -1008,19 +1008,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.087479Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1512"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:01 GMT
+ - Fri, 08 Dec 2023 15:59:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1030,32 +1030,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8452cf22-620a-4e00-9e6b-ad6c21df0f7f
+ - 7fb79f11-3053-4603-a299-9d7163d70401
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
- method: PATCH
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060257Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1518"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:01 GMT
+ - Fri, 08 Dec 2023 15:59:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1065,7 +1063,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d2743db6-1c19-49a0-af3d-601ee977637f
+ - 0833b3cc-d20f-4416-9f72-4b26460b3d9f
status: 200 OK
code: 200
duration: ""
@@ -1076,10 +1074,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -1088,7 +1086,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:01 GMT
+ - Fri, 08 Dec 2023 15:59:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1098,7 +1096,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a87bf6d-8ec1-4982-89ef-09632e6910a8
+ - ebf0d937-99f8-47f9-b95f-106e19d68d33
status: 200 OK
code: 200
duration: ""
@@ -1109,10 +1107,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -1121,7 +1119,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:06 GMT
+ - Fri, 08 Dec 2023 15:59:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1131,7 +1129,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e7e660b7-8312-4408-84e9-f2f0585882d9
+ - f21e6c7b-f042-4fe0-b960-b7ab3eb6ddcc
status: 200 OK
code: 200
duration: ""
@@ -1142,10 +1140,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:58:40.390537Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -1154,7 +1152,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:11 GMT
+ - Fri, 08 Dec 2023 15:59:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1164,7 +1162,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ab59808a-043a-49ca-9d59-64ba117da7e9
+ - e988ecd1-a39e-46a5-8e3b-3b732a66e323
status: 200 OK
code: 200
duration: ""
@@ -1175,19 +1173,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:59:54.814339Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:16 GMT
+ - Fri, 08 Dec 2023 15:59:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1197,30 +1195,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f7ebe89-ab59-42c2-a900-1383404d6678
+ - 1599ea16-dfbd-4ff4-9c8d-e23e2cffd8b2
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
+ method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:59:57.617428313Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1518"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:21 GMT
+ - Fri, 08 Dec 2023 15:59:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1230,7 +1230,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c76e8d55-c9c7-4e0d-9521-ed0c78f8f39d
+ - 236c5db2-3a12-44b0-a809-c020996346fd
status: 200 OK
code: 200
duration: ""
@@ -1241,10 +1241,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:59:57.617428Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -1253,7 +1253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:26 GMT
+ - Fri, 08 Dec 2023 15:59:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1263,7 +1263,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a851d6e8-c08e-49eb-80d3-4d8fc765a752
+ - 1c64acfc-4f48-4fa4-94fe-f9a1990daffe
status: 200 OK
code: 200
duration: ""
@@ -1274,10 +1274,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T15:59:57.617428Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -1286,7 +1286,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:31 GMT
+ - Fri, 08 Dec 2023 16:00:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1296,7 +1296,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3351f5b1-8d48-4157-b274-c9966d580fc7
+ - 9ce883b1-1ff8-4a55-a202-176b350f914e
status: 200 OK
code: 200
duration: ""
@@ -1307,19 +1307,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:01.533060Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T16:00:29.936001Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:37 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1329,7 +1329,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9967aed8-9bdd-4f12-b1db-0c64b228e3f9
+ - f66cf3ec-1e1e-48f6-87c6-ae1df669ded4
status: 200 OK
code: 200
duration: ""
@@ -1340,10 +1340,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:38.631745Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T16:00:29.936001Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1512"
@@ -1352,7 +1352,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:42 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1362,7 +1362,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0cbe716a-ceda-4eb9-943e-c89f404a49c9
+ - f1a18ae7-9bb8-4b91-b5dc-e54e7df9ee13
status: 200 OK
code: 200
duration: ""
@@ -1373,19 +1373,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:38.631745Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1512"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:42 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1395,7 +1395,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1736e848-28f2-448d-9a18-ef53dcccf396
+ - 851abc67-4787-4880-a836-b595f16db37a
status: 200 OK
code: 200
duration: ""
@@ -1406,19 +1406,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T16:00:29.936001Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2622"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:42 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1428,7 +1428,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2a3b29b6-d6bc-4ca3-8225-86dbf91d4641
+ - fc4fac56-6d71-450e-9e89-64fe36414b56
status: 200 OK
code: 200
duration: ""
@@ -1439,19 +1439,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:38.631745Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "1512"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:43 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1461,7 +1461,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 570b5ebd-c9f7-41fd-8402-a29b8abfb8b6
+ - 7e6d726b-e1fb-4a36-be49-d7efd0812f49
status: 200 OK
code: 200
duration: ""
@@ -1472,19 +1472,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T16:00:29.936001Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "717"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:43 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1494,7 +1494,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32732d40-e5c5-4cad-a98d-c1c215962855
+ - bedb4bfa-31f6-4566-9905-634ac82ed79b
status: 200 OK
code: 200
duration: ""
@@ -1505,19 +1505,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:38.631745Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1512"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:43 GMT
+ - Fri, 08 Dec 2023 16:00:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1527,7 +1527,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67ace241-7707-4df0-aaba-d6a19a005b8d
+ - ebc5e417-7c36-417c-95e9-e8f382a427be
status: 200 OK
code: 200
duration: ""
@@ -1538,19 +1538,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "2622"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:43 GMT
+ - Fri, 08 Dec 2023 16:00:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1560,7 +1560,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eea61e92-62d2-495e-a133-b1471a85690a
+ - 31becdfb-0b89-479e-b97f-b3383c8ffb2a
status: 200 OK
code: 200
duration: ""
@@ -1571,19 +1571,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T16:00:29.936001Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "717"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:00:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1593,7 +1593,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ee42e63-9856-440c-9a38-0cad73cc88e4
+ - 353ba682-cee5-461b-9cca-7fd6c9b6099a
status: 200 OK
code: 200
duration: ""
@@ -1604,19 +1604,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:38.631745Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1512"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:00:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1626,7 +1626,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bf04ef1e-1e04-4eae-982a-0e57ba213911
+ - 7efc4c82-1a3e-491d-9b2d-ea57f2fcbf2f
status: 200 OK
code: 200
duration: ""
@@ -1637,19 +1637,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
headers:
Content-Length:
- - "2622"
+ - "423"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:00:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1659,7 +1659,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 30414500-8eff-4ce3-865b-27d73919fa1e
+ - f0df79a1-4816-4e42-a8a9-34d0ef56cd21
status: 200 OK
code: 200
duration: ""
@@ -1670,7 +1670,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
@@ -1682,7 +1682,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:00:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1692,7 +1692,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff57fc2e-d7a8-4e4d-82e3-7b8c89f99770
+ - aaac16b6-dbc3-4ccc-a581-c57b52567f40
status: 200 OK
code: 200
duration: ""
@@ -1703,7 +1703,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
@@ -1715,7 +1715,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:44 GMT
+ - Fri, 08 Dec 2023 16:00:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1725,7 +1725,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 284ee501-0728-4e6a-b6d3-2327cd222b9a
+ - d760a783-19bc-41e7-bae6-bec2b634e11a
status: 200 OK
code: 200
duration: ""
@@ -1736,19 +1736,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T15:58:40.318198Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-12-08T16:00:29.936001Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "423"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:00:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1758,30 +1758,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea7f2235-4f18-4b9b-b632-788a438e8d87
+ - bb3e2cca-6221-4d3a-9ef7-0dd2882ef6a5
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"type":"kapsule-dedicated-16"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/set-type
+ method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:57:09.895604Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-11-13T13:58:38.631745Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445986823Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224028Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1512"
+ - "1522"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:00:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1791,32 +1793,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4eae11b-3967-45f2-a487-2f45dd6284f6
+ - c3d50b93-c83f-4d62-890a-0f82cc9a7ac4
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"type":"kapsule-dedicated-16"}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/set-type
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260382548Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062361Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1522"
+ - "1516"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:00:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1826,7 +1826,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ac6ed58-4d18-4aeb-a2c1-f033c2d25b8d
+ - b28ebc2a-00a8-4726-a1e9-75073e90b6ce
status: 200 OK
code: 200
duration: ""
@@ -1837,10 +1837,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -1849,7 +1849,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:45 GMT
+ - Fri, 08 Dec 2023 16:00:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1859,7 +1859,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fb53c017-2bda-41fb-a3d4-96b2c47006f3
+ - b6039cff-b24e-4b41-8181-93d54f40b2c9
status: 200 OK
code: 200
duration: ""
@@ -1870,10 +1870,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -1882,7 +1882,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:50 GMT
+ - Fri, 08 Dec 2023 16:00:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1892,7 +1892,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 647591e1-099f-4b56-a88f-e257d4408d87
+ - cbd08d4b-45e7-4945-b00a-173c2584747e
status: 200 OK
code: 200
duration: ""
@@ -1903,10 +1903,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -1915,7 +1915,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:58:55 GMT
+ - Fri, 08 Dec 2023 16:00:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1925,7 +1925,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9d24acd6-4e66-4996-aa66-b00a815798b0
+ - 3144fa3e-e45c-4c74-b8bd-4a77e63a2cf2
status: 200 OK
code: 200
duration: ""
@@ -1936,10 +1936,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -1948,7 +1948,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:00 GMT
+ - Fri, 08 Dec 2023 16:00:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1958,7 +1958,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 71816044-456f-4651-8816-bda227b713ab
+ - 37e774f6-2b7b-452c-a0af-4031a3389c0c
status: 200 OK
code: 200
duration: ""
@@ -1969,10 +1969,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -1981,7 +1981,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:05 GMT
+ - Fri, 08 Dec 2023 16:01:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -1991,7 +1991,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b9666696-069d-47c2-8783-dbc4b56be4f6
+ - 1fe6a98b-a69e-4082-99d0-6ba579ef1b39
status: 200 OK
code: 200
duration: ""
@@ -2002,10 +2002,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2014,7 +2014,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:10 GMT
+ - Fri, 08 Dec 2023 16:01:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2024,7 +2024,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 08571dad-e0e5-48f7-9419-18e1a571c686
+ - 9e79af84-90c8-4994-8057-16882985d1e8
status: 200 OK
code: 200
duration: ""
@@ -2035,10 +2035,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2047,7 +2047,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:15 GMT
+ - Fri, 08 Dec 2023 16:01:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2057,7 +2057,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b18f6bd8-7186-489b-b2ff-e0bdbdd42517
+ - 4aaebe45-d68d-459a-9054-f5e88d71318b
status: 200 OK
code: 200
duration: ""
@@ -2068,10 +2068,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2080,7 +2080,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:20 GMT
+ - Fri, 08 Dec 2023 16:01:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2090,7 +2090,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b0ef6be-6472-4612-8064-85972ae0a3e6
+ - d7fdda59-e232-434f-a33f-b8aa27bf1419
status: 200 OK
code: 200
duration: ""
@@ -2101,10 +2101,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2113,7 +2113,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:25 GMT
+ - Fri, 08 Dec 2023 16:01:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2123,7 +2123,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fa3afe7c-0739-4ac8-9a54-478e9e03148d
+ - 1c543abc-4dbf-4c8d-a7ec-c6bd2648858a
status: 200 OK
code: 200
duration: ""
@@ -2134,10 +2134,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2146,7 +2146,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:30 GMT
+ - Fri, 08 Dec 2023 16:01:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2156,7 +2156,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6f06f18-096e-4099-b7bf-b796de361f1e
+ - 9bffdf85-fe1a-4951-86cb-8a5928023333
status: 200 OK
code: 200
duration: ""
@@ -2167,10 +2167,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2179,7 +2179,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:36 GMT
+ - Fri, 08 Dec 2023 16:01:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2189,7 +2189,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26ded4f5-bbca-4272-bdca-44497681703d
+ - 3d50ff5b-1051-4a17-9621-f2d7af27c4e0
status: 200 OK
code: 200
duration: ""
@@ -2200,10 +2200,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2212,7 +2212,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:41 GMT
+ - Fri, 08 Dec 2023 16:01:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2222,7 +2222,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 98066cd5-406f-426e-b218-b0c512b33419
+ - 624fba57-7aa9-48b1-8a00-d9ebdb56af06
status: 200 OK
code: 200
duration: ""
@@ -2233,10 +2233,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:58:45.331062Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:00:37.811224Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2245,7 +2245,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:46 GMT
+ - Fri, 08 Dec 2023 16:01:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2255,7 +2255,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dedeffcf-967d-480b-9e7d-8802036bf66a
+ - fd1ff1ef-0650-4677-be9e-53f7318095bb
status: 200 OK
code: 200
duration: ""
@@ -2266,10 +2266,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:50.295244Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:48.057801Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2278,7 +2278,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:51 GMT
+ - Fri, 08 Dec 2023 16:01:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2288,7 +2288,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 602cd85f-3ab4-4492-a2c3-ef5e4716e554
+ - b5efd118-d5e2-4ed7-ad4b-a708ac63cfd3
status: 200 OK
code: 200
duration: ""
@@ -2301,10 +2301,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893654988Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381452Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1519"
@@ -2313,7 +2313,40 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:52 GMT
+ - Fri, 08 Dec 2023 16:01:49 GMT
+ Server:
+ - Scaleway API-Gateway
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 1e0aac4d-2c99-4bbd-8a06-e581e94107bd
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
+ terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
+ method: GET
+ response:
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
+ headers:
+ Content-Length:
+ - "1516"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 08 Dec 2023 16:01:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2323,7 +2356,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b18930f3-85f0-45f3-9426-580d603de8e9
+ - 8de2bf4d-a722-43f6-ac29-d45a25fbeb40
status: 200 OK
code: 200
duration: ""
@@ -2334,10 +2367,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2346,7 +2379,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:52 GMT
+ - Fri, 08 Dec 2023 16:01:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2356,7 +2389,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 40606e30-a65b-4ccb-b8f9-396011554cf0
+ - 302a4d42-1cd2-4381-84a2-43c2b1d81347
status: 200 OK
code: 200
duration: ""
@@ -2367,10 +2400,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2379,7 +2412,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 13:59:57 GMT
+ - Fri, 08 Dec 2023 16:01:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2389,7 +2422,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 76e09ef9-3722-420a-8ad0-7f91256b4ae2
+ - 3a399951-66b5-4174-926e-00611e6f687f
status: 200 OK
code: 200
duration: ""
@@ -2400,10 +2433,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2412,7 +2445,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:02 GMT
+ - Fri, 08 Dec 2023 16:02:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2422,7 +2455,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b9ee7c57-afda-4638-a754-63cff434f938
+ - 37bf81a8-25ff-4a03-9d4f-5fddde15de7d
status: 200 OK
code: 200
duration: ""
@@ -2433,10 +2466,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2445,7 +2478,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:07 GMT
+ - Fri, 08 Dec 2023 16:02:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2455,7 +2488,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 860af148-4587-4981-b3fc-2f3018ca82e9
+ - 3f4138a7-6dfa-4708-9d54-5745f228feee
status: 200 OK
code: 200
duration: ""
@@ -2466,10 +2499,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2478,7 +2511,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:12 GMT
+ - Fri, 08 Dec 2023 16:02:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2488,7 +2521,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07862474-8f43-408d-8f91-94e0cb1a862e
+ - 350f8229-6384-40ce-8c5c-de6b1e14ac68
status: 200 OK
code: 200
duration: ""
@@ -2499,10 +2532,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2511,7 +2544,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:17 GMT
+ - Fri, 08 Dec 2023 16:02:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2521,7 +2554,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5829fadd-c33d-4868-a843-bc43465f5264
+ - 800e4b27-cddf-4bca-91e3-07b0e81c74d0
status: 200 OK
code: 200
duration: ""
@@ -2532,10 +2565,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2544,7 +2577,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:22 GMT
+ - Fri, 08 Dec 2023 16:02:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2554,7 +2587,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3dd55580-c8fa-47f5-a384-3d0525ab4186
+ - 72ace50d-41ee-47d9-9570-52ee0329e37a
status: 200 OK
code: 200
duration: ""
@@ -2565,10 +2598,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2577,7 +2610,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:28 GMT
+ - Fri, 08 Dec 2023 16:02:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2587,7 +2620,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8f566f7f-6b69-4226-85e2-14cf90463369
+ - 50199971-9742-42ca-80a9-43a59536d241
status: 200 OK
code: 200
duration: ""
@@ -2598,10 +2631,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T13:59:51.893655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:01:49.216381Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -2610,7 +2643,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:33 GMT
+ - Fri, 08 Dec 2023 16:02:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2620,7 +2653,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cfea0de7-6ce3-4fba-abaa-940e5816b135
+ - 540636fe-33f0-44bd-bdc4-a6d630ff7eb8
status: 200 OK
code: 200
duration: ""
@@ -2631,10 +2664,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:35.703145Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:35.921472Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2643,7 +2676,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:38 GMT
+ - Fri, 08 Dec 2023 16:02:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2653,7 +2686,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 763a0e2c-3baf-40b0-94dc-6966f9b27fb1
+ - 8ffc86f3-05f4-4fbb-bbd6-8f59b59099f4
status: 200 OK
code: 200
duration: ""
@@ -2664,10 +2697,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:35.703145Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:35.921472Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2676,7 +2709,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:38 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2686,7 +2719,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - db39636d-bb82-405b-b51d-e04225928245
+ - c57a78c7-47bd-4ade-8f6e-c1900c8ece0b
status: 200 OK
code: 200
duration: ""
@@ -2697,10 +2730,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -2709,7 +2742,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:38 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2719,7 +2752,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1b55bc8-50fe-494d-8e0b-866c3b1c7a61
+ - 37cd23a7-8d11-4842-bab3-eb71f70b6ce4
status: 200 OK
code: 200
duration: ""
@@ -2730,10 +2763,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:35.703145Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:35.921472Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2742,7 +2775,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:38 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2752,7 +2785,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 151dad46-e156-4e73-b2f2-c12b9c097b7e
+ - ef48a98c-8eab-4cc0-9159-8d3dfd464294
status: 200 OK
code: 200
duration: ""
@@ -2763,10 +2796,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "717"
@@ -2775,7 +2808,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2785,7 +2818,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 68310f14-6953-4134-9e50-685ba4f3e1a1
+ - f397c5c2-1e50-4df4-bbd7-64bab334edfb
status: 200 OK
code: 200
duration: ""
@@ -2796,10 +2829,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:35.703145Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:35.921472Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2808,7 +2841,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2818,7 +2851,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92f71e1a-b87e-4795-acc3-933e4e18f0f5
+ - 2d318342-8b5f-4919-b60d-1816cbaaf2df
status: 200 OK
code: 200
duration: ""
@@ -2829,10 +2862,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -2841,7 +2874,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:02:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2851,7 +2884,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 518424de-c917-428c-a020-ffecbeea2aad
+ - 2801a629-51d0-48fa-b53b-450a344279c5
status: 200 OK
code: 200
duration: ""
@@ -2862,10 +2895,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- "717"
@@ -2874,7 +2907,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:02:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2884,7 +2917,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b5fb40c-d7db-47da-bab8-885bef8f68ca
+ - 5db6a692-2b22-4d35-a2b9-b27a98a806af
status: 200 OK
code: 200
duration: ""
@@ -2895,10 +2928,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:35.703145Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:35.921472Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1513"
@@ -2907,7 +2940,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:02:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2917,7 +2950,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9b120c36-d50c-4e7f-81e0-becc7390b0f7
+ - 735133c1-6dea-4ab9-942b-5b4ddd2f97ef
status: 200 OK
code: 200
duration: ""
@@ -2928,10 +2961,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVjZUbFJqZDAxc2IxaEVWRTE2VFZSRmVFMXFSWHBPVkdOM1RXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUc0M0NuQnlOV2huYm5odVVFRjRWVnBIU2t0UlRFWTNhMk5ZTXpOMFNuWjBkVFUyY21nM1pYVXpVVkZCVDB4c05GWndla0pOY0VReWIyVm5TRTlyZEd3MkwxSUtUMEZEV1M5U2IzcE9PVGgzTTFSM05TODVaa3hYZUZaV1V6Wk1SR3gyY2l0U2VUZFVZamxwYzFwRldIZHJNa2w2ZFV4WmEzVnFjMjFXZDBselFYcDRTQXB3V0dGa1UxQmhWa2N6TUZaNlFYSTFWbGh5ZURob0syUXpjRmR2T0VaMGJ6VlZRbmxHTkN0eGNrZDNjMHhEZW5saGNEWmljazVRU1U5cVVWQklZblpMQ25KNGVVSktiVWxIY0dwUVpqWkxZVmN4VDIxSFIxRTBWMDVOVjFKVFZsRTBkMW94ZEhaaFNVSnNMMW93Y0RKR1JsZ3hhamd6VVZONldURlJZbGx6WTBvS1ZtNWlabTFUYVV4UmMwMWhZMmx2UXpSRVZYWnphME5tZEVRNGRuQkZOemxLWTBKS1ZXZFNkelJNU0ZsRlNtSm1RM2hxUTFCRk9WaEJZMHBqUWtGb1J3cFZVWE51ZEhGRlIyWTFOMFYxWmxsME5rZFZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkhiV3RLVHpONWJWbDNVSFpuTHk5aVoyeEdhak5pWlZWeVZHZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaRE00YTBSb1ZtSTVja2RVV1RSYWVteEhSRGRwWlhoMGVtdEZiMDhyZFhGdVJGSmtiazA1VlZkbGFFeDBMelZhVmdwMGVVUnROMlpEYlhkNksya3ZURU55V2tVMU1TczJja0Z5YTI1b05HMXhNVXRWYjBKbVpscFFWM2hXV21OcGVETjNjemhsVlZoTmN6ZzJTSGRvUjFkcUNqRm1OMnd3YjBRd01UQlpWRzR4VjBvNWFFOXJRV05ITTJwSE4xUmlla3BsZUVsSWRHbG1PRWxFUjJsSmIwbDNUVFJsTjJFeUwzaDJhRzFtV25WNGJqZ0tNM2RHUmxCRU1HTk5TblpQTDFaWldFUnBOeTlNZFRRNWNtZDFXazEzVkRrMlpWRjVlREkwUjA4M1QxRTJiak40YmxrM01VSlViWEJ5TTBOR1kxVklNUXB6Uld4V2MwRXZNRmczYmpsNVprOHlhVlJIZEZBMWFWSlBXbEZ4UVM5elIwUmFWRVUzVUdkR1RHRkhTRmcxTTNSSlkwSlVkRVYwUkVoUmVEazVTR2xDQ2tOUU1sVm1SM1JRWW5SYVpXbG5LMjVoUWtKVFJrNXpVVGN4Ynl0cmNubE5iekJ6UndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzJhODc1M2YyLTg4MDctNGQwMS1iZDYwLTk4NjNlZWMyNDNmMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB2dEpoeGVKT2E1cVdHenlTaTBucWNOUjlnQzdIdFhhaTlCcHNUelhXWlZWS2VFMFYxT3pSaG53Vg==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXhUbFJuZWs1R2IxaEVWRTE2VFZSSmQwNTZSVEZPVkdkNlRrWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFZaRkNqZ3hjSFU0T0dKVkwwaFRUall5Vms5aWFUbHNWMFJKZFRWaWJVODJRekpXTDBkbFFXRnlLMngwYUN0VmNYWllUMFZPVEZBMFQyVk5WakpsSzNKcFZVOEtMMFZWTlVKYVJWUnpPSEZ6U25Bck4xaFdXV3hOYWxONk1tRjFOa0ZwTUZRM1FrdzFOSEJqTUhWWk1GTTJUbTVJTVc5VVdUQnFjVFJqTmtaM1ZrcHVjUXBuV0hORFVUVmhabmxHYTJNMGRDOTNVWFZ1ZFhkQlFVb3dXWFZwVlRseVRuWnZjREo2TWs1MWFXTmpOVlZNZWs0dlpVWTFVVWg1TkVGdlZtRkVlbGx0Q2xSaU4xRXpOR05wVUdFeEwzWlFiRXhWYlhoNGNFcGtVR3BYVG0xNmEwTnljR3BMVEROeFFYWkNPVFJ0VGtsTmJYZDJPVEF4TkRGclprWnVXSFZ5UTNRS1EwTmlUVmMyUVhSbWFVSTNWMnRWZEVWTGRIaGFjRzg1VVZadE1XbDZNVGxJTVRKUU0wcHhiWGc1TnprNFpWbFlRWEpGUW5aVGNWSnhLMUZWYmpSNmRRb3lLMUpFYzFwalNrUkJXRU5zUm5GdlVYcEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVXRFJLZDNOSFlrRTJhSGhhZUdoM1EzVlVhVEE1Y2pBNU9XMU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRUVUp2Ym1Fdk1HcFRaM3B1TnpWVVJFbFhWR000VFV4ME1YSkRhbTFqWTIxck5td3JUWGd6TWtSaGRERllTVWhLYVFwSmNFbG9RMWMyZVVSRk5UZFRlRmcxYVZJcmREQmFXVEZJUzFKWlRXTXhialZhY3paTU9XOUJaa2RFYVcwNWFYbzBhbVV6T1VNMFdrbE5iVEEzY2pKa0NuVnlRa2RTVXpSV1dXbFRXazl0UmpoRFNtaFJUSFY2WWxsUGVtcGlNMFlyWld4TmVWY3dkMllyU1VKR1ZHRlRXa3RIU2xjeFdFOHhRak5FZGxKMFFYb0tObGQxVGxsbFlYbHJlVEl3S3l0WVkwTkZZVFpNVjBaTVMwcGpaRlJXUm1kblQyeDNRekU1YWpsWE1uVlhlVlF4V1RsWVZtSm9PVU5TU214Tk9UTm9kUW94ZUV0U1FpODRNRGt6VGprd2NuaE9iVU5yZWxGRlVrUTNlbGhKVjBGVVQwaGtTWEUyUzNoemRYTk9hMWs1WkUxaVQxaDBSekUzYld4WVVVRkdPSG8zQ2pGbGMxVTRVakJHZUUxd2VHbFpORlZKYlZJclJraFlZVXd3U210VFFscFNUek0yVGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2IwMzUxNzU2LWRjYjItNDg4NS1iN2U5LTkyMzg5OGVkZGM3Mi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBrblgyb3FpTG9xNXMxYTh2M1ZHMDdUcVFVcFBrMURQbExOSlV5a2J6UUFsU2ZYeGRkVFpnVnlvUA==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -2940,7 +2973,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:39 GMT
+ - Fri, 08 Dec 2023 16:02:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2950,7 +2983,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 568d1686-15fc-4c03-8289-8885a168137c
+ - e7fc1155-91e3-45d7-b8d5-43b0ae6f87f7
status: 200 OK
code: 200
duration: ""
@@ -2961,7 +2994,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[],"total_count":0}'
@@ -2973,7 +3006,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:40 GMT
+ - Fri, 08 Dec 2023 16:02:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -2983,7 +3016,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f6f9c035-5a53-4fdd-bd77-a15816b93a81
+ - 1e7ee05f-4a7b-4ae7-9cf6-3b79ed5aa1bc
status: 200 OK
code: 200
duration: ""
@@ -2994,7 +3027,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72/available-types
method: GET
response:
body: '{"cluster_types":[],"total_count":0}'
@@ -3006,7 +3039,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:40 GMT
+ - Fri, 08 Dec 2023 16:02:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3016,7 +3049,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 62e2ef81-7e42-4ccb-9a78-3decd0d4296f
+ - 74e66635-46b9-48ad-9b94-97d70a72b3f5
status: 200 OK
code: 200
duration: ""
@@ -3027,10 +3060,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1?with_additional_resources=false
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72?with_additional_resources=false
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:41.832962531Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:42.164272876Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1519"
@@ -3039,7 +3072,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:41 GMT
+ - Fri, 08 Dec 2023 16:02:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3049,7 +3082,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 563efb33-7fc1-4498-adbc-2b5dedf08a69
+ - 9d888d85-c697-4d2e-91ae-464094603eec
status: 200 OK
code: 200
duration: ""
@@ -3060,10 +3093,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:41.832963Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:42.164273Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -3072,7 +3105,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:41 GMT
+ - Fri, 08 Dec 2023 16:02:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3082,7 +3115,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d5094787-25fc-45fa-8ab3-9039aec1aa90
+ - bfd667e8-1783-40e2-a4b5-05f2fd0c8072
status: 200 OK
code: 200
duration: ""
@@ -3093,10 +3126,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2a8753f2-8807-4d01-bd60-9863eec243f1.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T13:58:45.260383Z","created_at":"2023-11-13T13:57:00.723791Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2a8753f2-8807-4d01-bd60-9863eec243f1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2a8753f2-8807-4d01-bd60-9863eec243f1","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-11-13T14:00:41.832963Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b0351756-dcb2-4885-b7e9-923898eddc72.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:00:37.445987Z","created_at":"2023-12-08T15:58:32.828008Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b0351756-dcb2-4885-b7e9-923898eddc72.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b0351756-dcb2-4885-b7e9-923898eddc72","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-12-08T16:02:42.164273Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1516"
@@ -3105,7 +3138,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:47 GMT
+ - Fri, 08 Dec 2023 16:02:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3115,7 +3148,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4ec833bd-0468-416f-b690-539e23252b6c
+ - c58bfbeb-acc4-41d0-a470-3672753d69e2
status: 200 OK
code: 200
duration: ""
@@ -3126,10 +3159,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2a8753f2-8807-4d01-bd60-9863eec243f1
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b0351756-dcb2-4885-b7e9-923898eddc72
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"2a8753f2-8807-4d01-bd60-9863eec243f1","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"b0351756-dcb2-4885-b7e9-923898eddc72","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -3138,7 +3171,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:52 GMT
+ - Fri, 08 Dec 2023 16:02:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3148,12 +3181,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ca1404df-49b7-4a58-8566-42b1a402879e
+ - 69ee19df-e891-4cd7-9269-12ee6b3167c7
status: 404 Not Found
code: 404
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule-dedicated-8","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd"}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule-dedicated-8","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null,"private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78"}'
form: {}
headers:
Content-Type:
@@ -3164,7 +3197,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586043Z","created_at":"2023-11-13T14:00:52.342586043Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906441Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533982553Z","created_at":"2023-12-08T16:02:52.533982553Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457370Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1524"
@@ -3173,7 +3206,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:52 GMT
+ - Fri, 08 Dec 2023 16:02:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3183,7 +3216,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86071fd6-0f9c-4b86-a2c1-5062b5e5cf22
+ - 0a18dc68-cce3-40b6-91c8-216117e1e75c
status: 200 OK
code: 200
duration: ""
@@ -3194,10 +3227,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3206,7 +3239,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:52 GMT
+ - Fri, 08 Dec 2023 16:02:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3216,7 +3249,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1972f000-7c2b-4bf8-bc81-d648e0916e38
+ - 459b69f9-2f59-4eaf-9ebe-9d7573dda655
status: 200 OK
code: 200
duration: ""
@@ -3227,10 +3260,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3239,7 +3272,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:00:57 GMT
+ - Fri, 08 Dec 2023 16:02:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3249,7 +3282,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 86c94443-cec9-412a-b0d1-e821e1e5a5d9
+ - 6a6d8bdc-93ab-44c7-a838-9e4901253177
status: 200 OK
code: 200
duration: ""
@@ -3260,10 +3293,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3272,7 +3305,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:02 GMT
+ - Fri, 08 Dec 2023 16:03:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3282,7 +3315,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f2387073-a6ca-48b0-b1a3-f51a6576467f
+ - 88368a35-9b46-459a-a404-3eb3d6840ccf
status: 200 OK
code: 200
duration: ""
@@ -3293,10 +3326,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3305,7 +3338,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:07 GMT
+ - Fri, 08 Dec 2023 16:03:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3315,7 +3348,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fe02c1e7-42e7-4057-a5e6-d2fc44cafab1
+ - 74477483-10b3-4571-a2e7-851c0b89e32a
status: 200 OK
code: 200
duration: ""
@@ -3326,10 +3359,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3338,7 +3371,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:12 GMT
+ - Fri, 08 Dec 2023 16:03:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3348,7 +3381,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 39da2c0e-7772-4b12-bb28-91057e0a0390
+ - 827c8ca3-e425-4cc3-a771-ac82fae8fb55
status: 200 OK
code: 200
duration: ""
@@ -3359,10 +3392,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3371,7 +3404,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:17 GMT
+ - Fri, 08 Dec 2023 16:03:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3381,7 +3414,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3c1de1f1-51d8-480f-bbb9-552572814986
+ - 6afc2388-cdda-4d5b-b7c3-b53d1d28c4d5
status: 200 OK
code: 200
duration: ""
@@ -3392,10 +3425,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3404,7 +3437,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:22 GMT
+ - Fri, 08 Dec 2023 16:03:23 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3414,7 +3447,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 49f283e1-35dd-41ce-bb8e-db5f9e4d74f7
+ - 38933483-234f-4947-b05d-bb16424c924a
status: 200 OK
code: 200
duration: ""
@@ -3425,10 +3458,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3437,7 +3470,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:27 GMT
+ - Fri, 08 Dec 2023 16:03:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3447,7 +3480,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6ee3c49e-f992-426b-9730-fbf0e82784ac
+ - 671d1b38-f965-4d2c-8f1a-a7b23b5a7d09
status: 200 OK
code: 200
duration: ""
@@ -3458,10 +3491,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3470,7 +3503,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:32 GMT
+ - Fri, 08 Dec 2023 16:03:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3480,7 +3513,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b0093d40-0b48-48d0-9908-01e2e078e512
+ - 5b820aae-3139-4563-89ff-032edd422bc8
status: 200 OK
code: 200
duration: ""
@@ -3491,10 +3524,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3503,7 +3536,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:38 GMT
+ - Fri, 08 Dec 2023 16:03:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3513,7 +3546,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a75839bf-3f23-4f39-87cf-1900e1eb654c
+ - 9824cd18-e7b4-41f5-8dff-68f0880930a9
status: 200 OK
code: 200
duration: ""
@@ -3524,10 +3557,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3536,7 +3569,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:43 GMT
+ - Fri, 08 Dec 2023 16:03:43 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3546,7 +3579,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 53a5cbd2-4ab2-4f52-ac02-2e4135042202
+ - 2b429d93-dfc8-4758-8e01-1cce0f0ab4f0
status: 200 OK
code: 200
duration: ""
@@ -3557,10 +3590,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3569,7 +3602,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:48 GMT
+ - Fri, 08 Dec 2023 16:03:48 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3579,7 +3612,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d9d94667-e55f-490f-8acc-b41967a9c707
+ - 61f22ff8-6a9b-448f-8124-02a718deff16
status: 200 OK
code: 200
duration: ""
@@ -3590,10 +3623,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3602,7 +3635,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:53 GMT
+ - Fri, 08 Dec 2023 16:03:53 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3612,7 +3645,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - af364831-f17c-4510-b0b3-66350b6b6ba7
+ - d6d3bd9d-d511-463d-ab82-9288439065f6
status: 200 OK
code: 200
duration: ""
@@ -3623,10 +3656,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3635,7 +3668,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:01:58 GMT
+ - Fri, 08 Dec 2023 16:03:58 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3645,7 +3678,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a2d1a98a-efae-4efd-8434-611db50a4867
+ - 6bec37ef-6737-466f-a7d2-66faed77b9f9
status: 200 OK
code: 200
duration: ""
@@ -3656,10 +3689,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:02:52.553457Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1515"
@@ -3668,7 +3701,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:03 GMT
+ - Fri, 08 Dec 2023 16:04:03 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3678,7 +3711,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4201569e-87e1-4efe-aedf-e228ebc452db
+ - 661c7955-0597-48e0-b1b7-c5ec18323526
status: 200 OK
code: 200
duration: ""
@@ -3689,19 +3722,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:05.516774Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:08 GMT
+ - Fri, 08 Dec 2023 16:04:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3711,7 +3744,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48bf6963-71a8-4b9c-a456-688214d97029
+ - e1de8bb0-dde8-4ffc-aad8-a43dc8354b6e
status: 200 OK
code: 200
duration: ""
@@ -3722,19 +3755,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:05.516774Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:13 GMT
+ - Fri, 08 Dec 2023 16:04:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3744,7 +3777,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 678c7861-3b38-4b89-92bd-02b034a4717a
+ - 99aff531-95dc-45c4-8a79-dddbd65f57b8
status: 200 OK
code: 200
duration: ""
@@ -3755,19 +3788,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJKTVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkVreFRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEhOaENrUkVOM2RFWkd4cGRUbHVUR2QzTkUxbkwwVlZObWhUUlZaeVpWWTNWamxqTWpsUFRtWnVLMHRDTHpSeVRYQmFhVlV4VDBsVVpYaExhRU5UY1hwTU1uQUtibE5vVjA5dlEwMXpVM1YzSzFOa1VVZzBPQ3RaZUZkSVEwdGFRMnRSUW1ZdlUyczBabFI0YWs1WlIxVjBkWGxYVmxGb2FHWjRXVkZPY21KeGEzUk9XUXBwVUhwSGRHeHdiVXhrY0ZobWNVeHdPVE5zY0ZZeFREUXdaMGhCZVV0Qk1GZGFUR295VUVsMFNWVXZWRVk1TkM5dE5VZFFUSEpsVkdReVFrdERURlpEQ2xBeFFVd3JNR1J0VmtsUFdUaEdZblZ2Ym5aMGFWSnJaRmhRUnk4NVF6SlVVbTh2SzA5T1QwUkZPV2gzU3paRVRYVkhTMnBMV0V0elpHUjNkRFprSzJZS2FFVjVWakUxVlVOaFdGcEJkRGhxY21GeVVFczRSRVpRT1VNeE9HdFVjSEJqTTNSUlZHTmliVE5yWkZSS1JFbHpObGxUVUc5TWJVa3pSRUlyUlc5bVZRcHhTR2huZUZCR2JFUXhaazUwUmxKT2EyeEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkpjbHBuY204eWRGWkNVVmRFTURaMWQwUjFVR1ZXZDJWQ1ltSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRhSGhCYW5WQlZteHlUV1ZQZEdGbFFXcDZaeXQwTW1zclZGSmtTbWRRUzFkM1YyeHJUMmRrUkZvd1dGZE5PWEJxY0FwWFVXWnNWVGRTUVhSd00weDNTbGhKT0M5V09VcGpOamh2UlhCVWIxYzBZMGNyVEdKRlVucEhZWG9yWm1oMWJIZHlTelJqV2xGUlRsQnNRM28xTlV4cUNpdEVNVWxXYW5CNWFDdGxjR2gwY3pVM2F6QkJNa0pDV0RFNVFtRXliRU53VGpncmJrSkZabE5FVTFCUE1tcG1PREZaWWtWTGFWZGhSemw1U2xSSE5FTUtPVTAwYzJRdlJuSnRVa1pZZDJGelMyVmxaVXh1WlRsNVdYSjNTVTVuUldNelRXNVZRa1ZyZDJsWk15OVJWRkpWYlZSSFdsZEdja0pTWTNOWVpEWnROQXBSVTFVd05FUlpNVGMwU1VGNVpXMU5SSFZQZUZSRFlWaGtRa1Z2WWxoSmR5czNhVEl2ZGpGbldYbHlLemxxTDNabGJucElSbWx1UTBOUmFtTlVURXhQQ2poNlMwaFNRblE1UzJSaFNraGpOMHBrT0dWRlJEQkllWEJPYW5OUE5tSnZOVTVoYXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E4YzEwMDgwLTU0ZjAtNGZjMy05OThjLTAxMGYwYTBlM2FlNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqYkhPMW44WlQybTk4M2w3bENMS21NUUxzd1p2TklzdU80Qm5FTkkwNldSSzc1NXdpSkczUnBjRQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1515"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:18 GMT
+ - Fri, 08 Dec 2023 16:04:08 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3777,7 +3810,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 77d56859-92f4-4617-8162-9d4738f81f6e
+ - 957ee67c-3227-4a64-8c7c-5206a0d7652d
status: 200 OK
code: 200
duration: ""
@@ -3788,19 +3821,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:05.516774Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:23 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3810,7 +3843,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 65d42ac7-eb84-48ee-930a-8f62c866cac9
+ - dd456274-13f0-4684-8f1a-985a1fe9e313
status: 200 OK
code: 200
duration: ""
@@ -3821,19 +3854,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "1515"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:28 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3843,7 +3876,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 96306268-4521-4d9b-bd9c-6f803ef2b36f
+ - 036df431-d56b-4e30-8f84-cd23b19a9419
status: 200 OK
code: 200
duration: ""
@@ -3854,19 +3887,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:05.516774Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:33 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3876,7 +3909,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29f6bf0f-4699-453c-8f02-c73543f9bbc8
+ - 75741c65-b66b-416b-9e94-cb246da13fc4
status: 200 OK
code: 200
duration: ""
@@ -3887,19 +3920,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJKTVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkVreFRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEhOaENrUkVOM2RFWkd4cGRUbHVUR2QzTkUxbkwwVlZObWhUUlZaeVpWWTNWamxqTWpsUFRtWnVLMHRDTHpSeVRYQmFhVlV4VDBsVVpYaExhRU5UY1hwTU1uQUtibE5vVjA5dlEwMXpVM1YzSzFOa1VVZzBPQ3RaZUZkSVEwdGFRMnRSUW1ZdlUyczBabFI0YWs1WlIxVjBkWGxYVmxGb2FHWjRXVkZPY21KeGEzUk9XUXBwVUhwSGRHeHdiVXhrY0ZobWNVeHdPVE5zY0ZZeFREUXdaMGhCZVV0Qk1GZGFUR295VUVsMFNWVXZWRVk1TkM5dE5VZFFUSEpsVkdReVFrdERURlpEQ2xBeFFVd3JNR1J0VmtsUFdUaEdZblZ2Ym5aMGFWSnJaRmhRUnk4NVF6SlVVbTh2SzA5T1QwUkZPV2gzU3paRVRYVkhTMnBMV0V0elpHUjNkRFprSzJZS2FFVjVWakUxVlVOaFdGcEJkRGhxY21GeVVFczRSRVpRT1VNeE9HdFVjSEJqTTNSUlZHTmliVE5yWkZSS1JFbHpObGxUVUc5TWJVa3pSRUlyUlc5bVZRcHhTR2huZUZCR2JFUXhaazUwUmxKT2EyeEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkpjbHBuY204eWRGWkNVVmRFTURaMWQwUjFVR1ZXZDJWQ1ltSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRhSGhCYW5WQlZteHlUV1ZQZEdGbFFXcDZaeXQwTW1zclZGSmtTbWRRUzFkM1YyeHJUMmRrUkZvd1dGZE5PWEJxY0FwWFVXWnNWVGRTUVhSd00weDNTbGhKT0M5V09VcGpOamh2UlhCVWIxYzBZMGNyVEdKRlVucEhZWG9yWm1oMWJIZHlTelJqV2xGUlRsQnNRM28xTlV4cUNpdEVNVWxXYW5CNWFDdGxjR2gwY3pVM2F6QkJNa0pDV0RFNVFtRXliRU53VGpncmJrSkZabE5FVTFCUE1tcG1PREZaWWtWTGFWZGhSemw1U2xSSE5FTUtPVTAwYzJRdlJuSnRVa1pZZDJGelMyVmxaVXh1WlRsNVdYSjNTVTVuUldNelRXNVZRa1ZyZDJsWk15OVJWRkpWYlZSSFdsZEdja0pTWTNOWVpEWnROQXBSVTFVd05FUlpNVGMwU1VGNVpXMU5SSFZQZUZSRFlWaGtRa1Z2WWxoSmR5czNhVEl2ZGpGbldYbHlLemxxTDNabGJucElSbWx1UTBOUmFtTlVURXhQQ2poNlMwaFNRblE1UzJSaFNraGpOMHBrT0dWRlJEQkllWEJPYW5OUE5tSnZOVTVoYXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E4YzEwMDgwLTU0ZjAtNGZjMy05OThjLTAxMGYwYTBlM2FlNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqYkhPMW44WlQybTk4M2w3bENMS21NUUxzd1p2TklzdU80Qm5FTkkwNldSSzc1NXdpSkczUnBjRQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1515"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:38 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3909,7 +3942,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6271c504-6520-4d01-bb20-343ae11ab4d0
+ - 255c07b4-d776-4b9b-8d24-a15b79d68907
status: 200 OK
code: 200
duration: ""
@@ -3920,19 +3953,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"created_at":"2023-12-08T15:58:31.746271Z","dhcp_enabled":true,"id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-12-08T15:58:31.746271Z","id":"f97b8a20-7461-4b84-b761-66033e59a91d","subnet":"172.16.24.0/22","updated_at":"2023-12-08T15:58:31.746271Z"},{"created_at":"2023-12-08T15:58:31.746271Z","id":"c042060b-c296-4423-98f2-b8faf6ee0ddd","subnet":"fd63:256c:45f7:ff9f::/64","updated_at":"2023-12-08T15:58:31.746271Z"}],"tags":[],"updated_at":"2023-12-08T15:58:31.746271Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
headers:
Content-Length:
- - "1515"
+ - "717"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:43 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3942,7 +3975,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8c186a2f-7cdb-4db3-a656-4beded0b7cf9
+ - a5b91308-57fe-488b-bef5-221206f58926
status: 200 OK
code: 200
duration: ""
@@ -3953,19 +3986,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:05.516774Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1512"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:48 GMT
+ - Fri, 08 Dec 2023 16:04:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -3975,7 +4008,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e0cd5fdc-89f1-46fb-b2f4-581f1093e424
+ - 2167e42c-5503-424e-9bc9-7703c7d5f72a
status: 200 OK
code: 200
duration: ""
@@ -3986,19 +4019,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:00:52.364906Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJKTVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkVreFRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEhOaENrUkVOM2RFWkd4cGRUbHVUR2QzTkUxbkwwVlZObWhUUlZaeVpWWTNWamxqTWpsUFRtWnVLMHRDTHpSeVRYQmFhVlV4VDBsVVpYaExhRU5UY1hwTU1uQUtibE5vVjA5dlEwMXpVM1YzSzFOa1VVZzBPQ3RaZUZkSVEwdGFRMnRSUW1ZdlUyczBabFI0YWs1WlIxVjBkWGxYVmxGb2FHWjRXVkZPY21KeGEzUk9XUXBwVUhwSGRHeHdiVXhrY0ZobWNVeHdPVE5zY0ZZeFREUXdaMGhCZVV0Qk1GZGFUR295VUVsMFNWVXZWRVk1TkM5dE5VZFFUSEpsVkdReVFrdERURlpEQ2xBeFFVd3JNR1J0VmtsUFdUaEdZblZ2Ym5aMGFWSnJaRmhRUnk4NVF6SlVVbTh2SzA5T1QwUkZPV2gzU3paRVRYVkhTMnBMV0V0elpHUjNkRFprSzJZS2FFVjVWakUxVlVOaFdGcEJkRGhxY21GeVVFczRSRVpRT1VNeE9HdFVjSEJqTTNSUlZHTmliVE5yWkZSS1JFbHpObGxUVUc5TWJVa3pSRUlyUlc5bVZRcHhTR2huZUZCR2JFUXhaazUwUmxKT2EyeEZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkpjbHBuY204eWRGWkNVVmRFTURaMWQwUjFVR1ZXZDJWQ1ltSk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRhSGhCYW5WQlZteHlUV1ZQZEdGbFFXcDZaeXQwTW1zclZGSmtTbWRRUzFkM1YyeHJUMmRrUkZvd1dGZE5PWEJxY0FwWFVXWnNWVGRTUVhSd00weDNTbGhKT0M5V09VcGpOamh2UlhCVWIxYzBZMGNyVEdKRlVucEhZWG9yWm1oMWJIZHlTelJqV2xGUlRsQnNRM28xTlV4cUNpdEVNVWxXYW5CNWFDdGxjR2gwY3pVM2F6QkJNa0pDV0RFNVFtRXliRU53VGpncmJrSkZabE5FVTFCUE1tcG1PREZaWWtWTGFWZGhSemw1U2xSSE5FTUtPVTAwYzJRdlJuSnRVa1pZZDJGelMyVmxaVXh1WlRsNVdYSjNTVTVuUldNelRXNVZRa1ZyZDJsWk15OVJWRkpWYlZSSFdsZEdja0pTWTNOWVpEWnROQXBSVTFVd05FUlpNVGMwU1VGNVpXMU5SSFZQZUZSRFlWaGtRa1Z2WWxoSmR5czNhVEl2ZGpGbldYbHlLemxxTDNabGJucElSbWx1UTBOUmFtTlVURXhQQ2poNlMwaFNRblE1UzJSaFNraGpOMHBrT0dWRlJEQkllWEJPYW5OUE5tSnZOVTVoYXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E4YzEwMDgwLTU0ZjAtNGZjMy05OThjLTAxMGYwYTBlM2FlNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBqYkhPMW44WlQybTk4M2w3bENMS21NUUxzd1p2TklzdU80Qm5FTkkwNldSSzc1NXdpSkczUnBjRQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1515"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:53 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4008,7 +4041,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ef54910e-8b35-4574-8525-5729cd55fd97
+ - 346785c9-4d89-42fd-8d2d-7099733891a6
status: 200 OK
code: 200
duration: ""
@@ -4019,19 +4052,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:02:55.843356Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}'
headers:
Content-Length:
- - "1512"
+ - "230"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:58 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4041,7 +4074,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5549060d-2d55-46a8-8f0e-890f65d46626
+ - 702d9a1c-3ca5-4366-b9bb-d9f03c4f82bd
status: 200 OK
code: 200
duration: ""
@@ -4052,19 +4085,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:02:55.843356Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}'
headers:
Content-Length:
- - "1512"
+ - "230"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:02:58 GMT
+ - Fri, 08 Dec 2023 16:04:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4074,7 +4107,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2af8eb4-1ef1-4fc8-816e-cf89992374ea
+ - e0aa25ee-fc0d-48ff-8fe0-bfe8a7c067a4
status: 200 OK
code: 200
duration: ""
@@ -4085,19 +4118,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c/kubeconfig
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4?with_additional_resources=false
+ method: DELETE
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJCTVUweGIxaEVWRTE2VFZSRmVFMXFSVEJOUkVFeFRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFVWMkNtcGhiVTl1YjNZckwwaHpZbUZrWTBJNFpHaHJTVWRyVjJKVGVUTmpWbTlRVjFWcE5tSnVNbEYwVkhsM1lqbHRNVzF6Wm10c1FYTkdkU3RXY1dwSWQyTUtlRFZKYkZOMmNuSkJhM2wyZEd0a2JVaFFOakJMVFZkcGJIWkJjbHBOZGt0TGFrOWpPUzlOWXpSRWVUTjBObWMzVFc5Ull6RmxTbEpUTDBSU1VFRkpSUXBHY2pNNVp6SjVWMHB6VmxkUlkzTnRXbU42VFZwNVRFTkdRMDFWU0RkalNGWnZaMkl4V21FdmEydzVVbmxoVlZSamFWbHpVRUZvYmtOVlduZHhjV1JIQ25kdVptTnpRWFpVUWtWQ1lsaHZWVWM1TUZNMFdGbENLMDVZU2s1TVRXWlFWVE12VDNjeVRqTkZlREpxWkU1aWVrcHlaVkptUm1OcWNsTTJkMDl4ZEc4S2VYQmlOVzlPUjJOUWFpdE1ZM0JaZVhFMFIxZ3pNVGhPZEdrNGJtSkpaRk01VDNkNmVrTnJZbVY2VEZwSk1VNVljMVl4T0hsREwyVnVXa1ZxUlhVeFZ3cHJjalZuVVM5RE1HMXhlbTVGVms1UVJGTXdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk5ORFF2YjBRNFFVdFVjVkZHZEZWNE9XMDJjakpTU0UxQmRIQk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTMjh6Y1VOck5tazBXWEY2ZW5SR1VIWjVLelJRTlZCUVVWTmhjakpIVVN0dVFTdFBjalppUlN0eFVtZGtVVEpvU3dwcGFFRXJRMGRDVVV0bGMyeFJTRUZ3VmtkVlZYY3JNV05HU1M5WVYxSnphalZzYWxKNVVESTFNM2w2SzNaclEwUndVVnBCVkZkU1NWUXpOR1JsYkRKSUNtMWxkVEJLV1ZSeGJUTlZVRkJ6WTBjM2MyNHdlRTVNVkZaWmF6azFaWFZTWmxWMlR5czFhWEp5ZG5weVJrZEdSVEJGZWxVd2FtbG1TMFJtTWtOVGNFY0tVVkF3VVVab1NFaEpZVnBUYlZoTmFuUmxkWGRuZUROdFpUZHJORTFRTjBGNldsZHJWbU5YYzNKUFoyUkVlbWR1V1c4eWRIVldiekUyVjJGd2NVSnFTQXByY1RoS01YSm9VVE4wVFdsWFVVZHBUV1V4VlRWaFpXOXZabWxRV1dKS05XOHlOa00wT0RKclZucDBlVzl0VG5oaVJERnJhSGRFU0ZJM1ltRjJSSEJYQ2s5QlUyUXdVM0JYTDJZd1RWYzBXalpXYW1KbFIzUmpaRE01V21jeFpUbDBXbkV2THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2QxZDhiYTA3LTY0ZTYtNDNmMC1iMWVjLWU3OTRiYzY3YWU3Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKV01xaHA0eTFmeDJXYk1qR2RHU1F5OXRQNjIzSlZtRVRsdFBrYm14Y2VMY2k2amMwNVh2ZXhZNQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:10.992006912Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2622"
+ - "1518"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:01 GMT
+ - Fri, 08 Dec 2023 16:04:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4107,7 +4140,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 96ca1f27-d238-4a95-8aa6-49bc013d4cec
+ - 6a73999f-7b69-4d31-ba1c-419cf0445e3e
status: 200 OK
code: 200
duration: ""
@@ -4118,19 +4151,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:02:55.843356Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:10.992007Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1512"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:02 GMT
+ - Fri, 08 Dec 2023 16:04:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4140,7 +4173,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9720e9e1-0db3-456b-b96a-5ce3bdeb844d
+ - 5ab81a72-d496-4441-96b8-d50b5809fa5b
status: 200 OK
code: 200
duration: ""
@@ -4151,19 +4184,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a8c10080-54f0-4fc3-998c-010f0a0e3ae4.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2024-01-07T16:02:52.533983Z","created_at":"2023-12-08T16:02:52.533983Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a8c10080-54f0-4fc3-998c-010f0a0e3ae4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-12-08T16:04:10.992007Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "717"
+ - "1515"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:02 GMT
+ - Fri, 08 Dec 2023 16:04:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4173,7 +4206,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9570c4c4-12fc-474d-8e3e-accaacc93ab9
+ - 1c5ff21b-923e-4c61-9bb1-fe79220e54a6
status: 200 OK
code: 200
duration: ""
@@ -4184,19 +4217,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a8c10080-54f0-4fc3-998c-010f0a0e3ae4
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:02:55.843356Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"a8c10080-54f0-4fc3-998c-010f0a0e3ae4","type":"not_found"}'
headers:
Content-Length:
- - "1512"
+ - "128"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:02 GMT
+ - Fri, 08 Dec 2023 16:04:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4206,9 +4239,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 51913cd7-7599-47c2-a303-842247783982
- status: 200 OK
- code: 200
+ - 03d22edf-5004-4a78-8b1d-bf3d38bf57a5
+ status: 404 Not Found
+ code: 404
duration: ""
- request:
body: ""
@@ -4217,19 +4250,17 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c/kubeconfig
- method: GET
+ url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ddd0d3cb-e5d1-4a85-9eb8-8bc5d02c0d78
+ method: DELETE
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJCTVUweGIxaEVWRTE2VFZSRmVFMXFSVEJOUkVFeFRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFVWMkNtcGhiVTl1YjNZckwwaHpZbUZrWTBJNFpHaHJTVWRyVjJKVGVUTmpWbTlRVjFWcE5tSnVNbEYwVkhsM1lqbHRNVzF6Wm10c1FYTkdkU3RXY1dwSWQyTUtlRFZKYkZOMmNuSkJhM2wyZEd0a2JVaFFOakJMVFZkcGJIWkJjbHBOZGt0TGFrOWpPUzlOWXpSRWVUTjBObWMzVFc5Ull6RmxTbEpUTDBSU1VFRkpSUXBHY2pNNVp6SjVWMHB6VmxkUlkzTnRXbU42VFZwNVRFTkdRMDFWU0RkalNGWnZaMkl4V21FdmEydzVVbmxoVlZSamFWbHpVRUZvYmtOVlduZHhjV1JIQ25kdVptTnpRWFpVUWtWQ1lsaHZWVWM1TUZNMFdGbENLMDVZU2s1TVRXWlFWVE12VDNjeVRqTkZlREpxWkU1aWVrcHlaVkptUm1OcWNsTTJkMDl4ZEc4S2VYQmlOVzlPUjJOUWFpdE1ZM0JaZVhFMFIxZ3pNVGhPZEdrNGJtSkpaRk01VDNkNmVrTnJZbVY2VEZwSk1VNVljMVl4T0hsREwyVnVXa1ZxUlhVeFZ3cHJjalZuVVM5RE1HMXhlbTVGVms1UVJGTXdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk5ORFF2YjBRNFFVdFVjVkZHZEZWNE9XMDJjakpTU0UxQmRIQk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTMjh6Y1VOck5tazBXWEY2ZW5SR1VIWjVLelJRTlZCUVVWTmhjakpIVVN0dVFTdFBjalppUlN0eFVtZGtVVEpvU3dwcGFFRXJRMGRDVVV0bGMyeFJTRUZ3VmtkVlZYY3JNV05HU1M5WVYxSnphalZzYWxKNVVESTFNM2w2SzNaclEwUndVVnBCVkZkU1NWUXpOR1JsYkRKSUNtMWxkVEJLV1ZSeGJUTlZVRkJ6WTBjM2MyNHdlRTVNVkZaWmF6azFaWFZTWmxWMlR5czFhWEp5ZG5weVJrZEdSVEJGZWxVd2FtbG1TMFJtTWtOVGNFY0tVVkF3VVVab1NFaEpZVnBUYlZoTmFuUmxkWGRuZUROdFpUZHJORTFRTjBGNldsZHJWbU5YYzNKUFoyUkVlbWR1V1c4eWRIVldiekUyVjJGd2NVSnFTQXByY1RoS01YSm9VVE4wVFdsWFVVZHBUV1V4VlRWaFpXOXZabWxRV1dKS05XOHlOa00wT0RKclZucDBlVzl0VG5oaVJERnJhSGRFU0ZJM1ltRjJSSEJYQ2s5QlUyUXdVM0JYTDJZd1RWYzBXalpXYW1KbFIzUmpaRE01V21jeFpUbDBXbkV2THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2QxZDhiYTA3LTY0ZTYtNDNmMC1iMWVjLWU3OTRiYzY3YWU3Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKV01xaHA0eTFmeDJXYk1qR2RHU1F5OXRQNjIzSlZtRVRsdFBrYm14Y2VMY2k2amMwNVh2ZXhZNQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: ""
headers:
- Content-Length:
- - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:02 GMT
+ - Fri, 08 Dec 2023 16:04:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4239,30 +4270,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67b2f8f4-d03c-400b-ad35-48f69383dfe9
- status: 200 OK
- code: 200
+ - 1ca992c3-a371-48c1-97ca-89924f205d04
+ status: 204 No Content
+ code: 204
duration: ""
- request:
- body: ""
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud-dedicated-4","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
+ method: POST
response:
- body: '{"created_at":"2023-11-13T13:56:59.589895Z","dhcp_enabled":true,"id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-11-13T13:56:59.589895Z","id":"7a77031e-2d81-4829-93ae-94df87978ef8","subnet":"172.16.40.0/22","updated_at":"2023-11-13T13:56:59.589895Z"},{"created_at":"2023-11-13T13:56:59.589895Z","id":"5ac956e8-e2da-4c52-acc2-c7479f856231","subnet":"fd63:256c:45f7:4861::/64","updated_at":"2023-11-13T13:56:59.589895Z"}],"tags":[],"updated_at":"2023-11-13T13:56:59.589895Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649120Z","created_at":"2023-12-08T16:04:22.014649120Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368097Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "717"
+ - "1491"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4272,7 +4305,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 210e12d0-cf2e-4802-989b-fca1184e9c9b
+ - caef4d38-a1cf-4999-b258-8a9c16f88e1a
status: 200 OK
code: 200
duration: ""
@@ -4283,19 +4316,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:02:55.843356Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1512"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:04:22 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4305,7 +4338,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8878853-1abb-4a57-93f4-30986d434630
+ - d687c1ae-9b7f-46c8-937d-93ef01b1f63b
status: 200 OK
code: 200
duration: ""
@@ -4316,19 +4349,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJCTVUweGIxaEVWRTE2VFZSRmVFMXFSVEJOUkVFeFRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFVWMkNtcGhiVTl1YjNZckwwaHpZbUZrWTBJNFpHaHJTVWRyVjJKVGVUTmpWbTlRVjFWcE5tSnVNbEYwVkhsM1lqbHRNVzF6Wm10c1FYTkdkU3RXY1dwSWQyTUtlRFZKYkZOMmNuSkJhM2wyZEd0a2JVaFFOakJMVFZkcGJIWkJjbHBOZGt0TGFrOWpPUzlOWXpSRWVUTjBObWMzVFc5Ull6RmxTbEpUTDBSU1VFRkpSUXBHY2pNNVp6SjVWMHB6VmxkUlkzTnRXbU42VFZwNVRFTkdRMDFWU0RkalNGWnZaMkl4V21FdmEydzVVbmxoVlZSamFWbHpVRUZvYmtOVlduZHhjV1JIQ25kdVptTnpRWFpVUWtWQ1lsaHZWVWM1TUZNMFdGbENLMDVZU2s1TVRXWlFWVE12VDNjeVRqTkZlREpxWkU1aWVrcHlaVkptUm1OcWNsTTJkMDl4ZEc4S2VYQmlOVzlPUjJOUWFpdE1ZM0JaZVhFMFIxZ3pNVGhPZEdrNGJtSkpaRk01VDNkNmVrTnJZbVY2VEZwSk1VNVljMVl4T0hsREwyVnVXa1ZxUlhVeFZ3cHJjalZuVVM5RE1HMXhlbTVGVms1UVJGTXdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk5ORFF2YjBRNFFVdFVjVkZHZEZWNE9XMDJjakpTU0UxQmRIQk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTMjh6Y1VOck5tazBXWEY2ZW5SR1VIWjVLelJRTlZCUVVWTmhjakpIVVN0dVFTdFBjalppUlN0eFVtZGtVVEpvU3dwcGFFRXJRMGRDVVV0bGMyeFJTRUZ3VmtkVlZYY3JNV05HU1M5WVYxSnphalZzYWxKNVVESTFNM2w2SzNaclEwUndVVnBCVkZkU1NWUXpOR1JsYkRKSUNtMWxkVEJLV1ZSeGJUTlZVRkJ6WTBjM2MyNHdlRTVNVkZaWmF6azFaWFZTWmxWMlR5czFhWEp5ZG5weVJrZEdSVEJGZWxVd2FtbG1TMFJtTWtOVGNFY0tVVkF3VVVab1NFaEpZVnBUYlZoTmFuUmxkWGRuZUROdFpUZHJORTFRTjBGNldsZHJWbU5YYzNKUFoyUkVlbWR1V1c4eWRIVldiekUyVjJGd2NVSnFTQXByY1RoS01YSm9VVE4wVFdsWFVVZHBUV1V4VlRWaFpXOXZabWxRV1dKS05XOHlOa00wT0RKclZucDBlVzl0VG5oaVJERnJhSGRFU0ZJM1ltRjJSSEJYQ2s5QlUyUXdVM0JYTDJZd1RWYzBXalpXYW1KbFIzUmpaRE01V21jeFpUbDBXbkV2THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2QxZDhiYTA3LTY0ZTYtNDNmMC1iMWVjLWU3OTRiYzY3YWU3Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKV01xaHA0eTFmeDJXYk1qR2RHU1F5OXRQNjIzSlZtRVRsdFBrYm14Y2VMY2k2amMwNVh2ZXhZNQ==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2622"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:04:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4338,7 +4371,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 06e1343f-aa91-474f-ad3f-90460b1f0b24
+ - 84b8916c-574b-4b64-8ccc-8adf0c7f2b4f
status: 200 OK
code: 200
duration: ""
@@ -4349,19 +4382,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "230"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:04:32 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4371,7 +4404,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 75c93892-1779-48c7-b960-458a4a2b4074
+ - 5f733b71-25cf-484d-ad2a-95e11b629b4c
status: 200 OK
code: 200
duration: ""
@@ -4382,19 +4415,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "230"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:03 GMT
+ - Fri, 08 Dec 2023 16:04:37 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4404,7 +4437,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dc6b47fa-b3ab-4eb4-8c44-c51d81f8bc5a
+ - 7691e464-2ec7-473f-85c0-5b1162677e99
status: 200 OK
code: 200
duration: ""
@@ -4415,19 +4448,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c?with_additional_resources=false
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:03:04.086654565Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1518"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:04 GMT
+ - Fri, 08 Dec 2023 16:04:42 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4437,7 +4470,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 61338b2b-5c95-433c-9a0b-b58ee98fafcf
+ - 7a6d3f46-dc35-44c1-bdbd-13e4e5248b58
status: 200 OK
code: 200
duration: ""
@@ -4448,19 +4481,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:03:04.086655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:04 GMT
+ - Fri, 08 Dec 2023 16:04:47 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4470,7 +4503,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74fc363e-1335-40f9-ba2a-cc1075ccfbc3
+ - d843b430-3d87-4451-a38c-79e2e8ea3375
status: 200 OK
code: 200
duration: ""
@@ -4481,19 +4514,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-12-13T14:00:52.342586Z","created_at":"2023-11-13T14:00:52.342586Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-11-13T14:03:04.086655Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1515"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:09 GMT
+ - Fri, 08 Dec 2023 16:04:52 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4503,7 +4536,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a4e3a05-9554-45ec-a1c5-d4c7913ba3e8
+ - 2cf2d97d-a4ce-4ab3-887f-44edad4b766b
status: 200 OK
code: 200
duration: ""
@@ -4514,19 +4547,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"d1d8ba07-64e6-43f0-b1ec-e794bc67ae7c","type":"not_found"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "128"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:14 GMT
+ - Fri, 08 Dec 2023 16:04:57 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4536,9 +4569,9 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 14649177-d6e2-40b2-b2b9-810b29b73037
- status: 404 Not Found
- code: 404
+ - a5bef03b-4b66-4a6e-9c13-5c07e90e2830
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -4547,17 +4580,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c7b367a2-b98a-4471-8fc4-8ed9cf4b84bd
- method: DELETE
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
+ method: GET
response:
- body: ""
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
+ Content-Length:
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:14 GMT
+ - Fri, 08 Dec 2023 16:05:02 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4567,32 +4602,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1db70aab-87bf-46cf-ad3c-74fcbe850be3
- status: 204 No Content
- code: 204
+ - 650a8ef5-7d3e-41a6-8280-ac9956abcc87
+ status: 200 OK
+ code: 200
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud-dedicated-4","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312333Z","created_at":"2023-11-13T14:03:15.115312333Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118166Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1491"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:15 GMT
+ - Fri, 08 Dec 2023 16:05:07 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4602,7 +4635,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 84bcf04f-e1af-46c2-a9b6-6159dea2d66a
+ - d63639f8-c9c3-430a-9e61-65fac79368ec
status: 200 OK
code: 200
duration: ""
@@ -4613,10 +4646,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:04:22.029368Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -4625,7 +4658,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:15 GMT
+ - Fri, 08 Dec 2023 16:05:13 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4635,7 +4668,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec940f5c-df16-4bc2-a975-1d5f61dc01ae
+ - 5e43ce33-ddf5-4495-9a12-d48705df1bde
status: 200 OK
code: 200
duration: ""
@@ -4646,19 +4679,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:05:15.587406Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1479"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:20 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4668,7 +4701,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a125072d-3b54-46ae-a62b-e717e83b6068
+ - e81b8ace-a92b-4f1d-bd20-1e379449d72d
status: 200 OK
code: 200
duration: ""
@@ -4679,19 +4712,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:05:15.587406Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1479"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:25 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4701,7 +4734,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f616261a-8cdd-4ad8-ba2b-b98d73453338
+ - 5f6e9cfd-bd3f-4338-a2e3-529d09e16f0b
status: 200 OK
code: 200
duration: ""
@@ -4712,19 +4745,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJSZVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkZGNVRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU2k4d0NuZFhTM1UyWlhSbEsyaHFWRTE1ZGxnNGJFbERPR0U0YjJOTVJWbEVNVWhqVUd4bGVtaEtNbWw2ZDB0Ukx6WllNRU5PWjJ4emF6WnJVWEk0V0hSTWIxa0tjV0ZyY2pnNFdqaDZLMDV0VWxOVE1YWkRTbTFSV1ZSTlExbFNVbFJPUnpGQlJWQmhPRWhSYlc4MGF5OVNiQ3R0YWpkMU5qTjBXa1JMYmtkdlFYUnBad3ByZERORVVtTjFjeTgwYW5ONWFFeGFjVU54YVZZME5VSjFZbVoxVmpsUWFIUnNWSFJLUVRnd1FXMWpOeTlSWTBzNWVIbDFUakF4UjFGQmVscFFlVTVsQ2psRFNIWm9WR1pwY3poelpsaG9iRXRDY3poTVJrMWlRVFpzTlhwaVVHeG9VREZ0VVVRMldUaHRSbVIyYkVKV01WSkdReTlKTURkRGRVVlhORGxHZFRrS01qSTViMEUwY1d0Rk4wWnVSVFo0WmtSdGVTdDVUbGd6U0ZOYWJqa3dXV2cwTm5WWVNEWk5iMUozV0hWd1dEWnplazAwWlVFMlNWWlZhVEUzUlhWNlZncFViREFyVkdsblN6ZGFkakJwTWtOeFYxZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFOR1kzTDBJMVMyTXZTRGQwUjA5bWRrOXJRemsxTVRSa2IwaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZV3hzUkd0bWFERXJhM05EVUVJelUxUldOekphU0RVeVIyRnZWRk5pT1RCTFJDOTVRVGhvZVVKR1ptRTFWMnR0Undvdk0yNDJTbWhVUnpOSmNDOU5NRzE0V0ZaSU1XaGhUbVIyVDJVNVZtdHlhbk5rZDI5dE1TODNVVlEzU0N0cWFVWXZSR0ZSYzNock9WbDJPR3hMTVZSRkNuY3hibEpGSzNVMVRVc3dNWGxhVEdKMk1sUjZNak5MVWsxdFJDdDBRemRhUkhodVRub3dZalZGTmxaME5tSjNhSGx6V1ZkWUwyUlVTa2xhTDAweWJIWUtPRzloWlZwa00wOXNPREJIUWtKeWRWbGxaV3NyWVhoblVWVm1RMDkxWW5OeFQyUkpiV1JXWWtaeVRYaExSWFJKVlcwcmVtMTRhM1Z4WVZKRWFDdENSQXBJYzJOa05tRmxlaXNyT0c4eWJTdDZOemwyUTB4bWVVWm5ZVkp1WkVOcWJHNXZNME4zTTJWUUsyOVhZMDlHVkc0d2NpOUdOa001Y2poVGVVeGhiRGRKQ25OV2JVTTRhVlF3UVZGMFVYaEJMMFpVTWxoUk1UVmtUWFZQYVdWVmJ6bE1TakJVUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzZkYWVmMzlhLTBmZmItNGUxZS05NzE4LWRmNzkwYTkxNWEyZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIeVJlVFhEMHVENUM4R1B5NjlYSlJzU2lFRm1WSm12TzhCRFM3cTdtODVSS2tydjJaTWh1aU92aw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1482"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:30 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4734,7 +4767,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5ab6e15-8859-4a21-9932-c9c12f4f2b7d
+ - 6abdcb89-2342-4864-a3ec-e6b606983205
status: 200 OK
code: 200
duration: ""
@@ -4745,19 +4778,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:05:15.587406Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1479"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:35 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4767,7 +4800,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ce54390-cf61-43e1-9409-3c14279bd55a
+ - 4417dbf7-a5c8-4aa1-ba77-f0157dd69cf6
status: 200 OK
code: 200
duration: ""
@@ -4778,19 +4811,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:05:15.587406Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1479"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:40 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4800,7 +4833,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7de59017-19fd-46f7-9723-7657c88a3ea4
+ - 6431febb-869e-42ed-9a84-92a1f8256cf6
status: 200 OK
code: 200
duration: ""
@@ -4811,19 +4844,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJSZVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkZGNVRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU2k4d0NuZFhTM1UyWlhSbEsyaHFWRTE1ZGxnNGJFbERPR0U0YjJOTVJWbEVNVWhqVUd4bGVtaEtNbWw2ZDB0Ukx6WllNRU5PWjJ4emF6WnJVWEk0V0hSTWIxa0tjV0ZyY2pnNFdqaDZLMDV0VWxOVE1YWkRTbTFSV1ZSTlExbFNVbFJPUnpGQlJWQmhPRWhSYlc4MGF5OVNiQ3R0YWpkMU5qTjBXa1JMYmtkdlFYUnBad3ByZERORVVtTjFjeTgwYW5ONWFFeGFjVU54YVZZME5VSjFZbVoxVmpsUWFIUnNWSFJLUVRnd1FXMWpOeTlSWTBzNWVIbDFUakF4UjFGQmVscFFlVTVsQ2psRFNIWm9WR1pwY3poelpsaG9iRXRDY3poTVJrMWlRVFpzTlhwaVVHeG9VREZ0VVVRMldUaHRSbVIyYkVKV01WSkdReTlKTURkRGRVVlhORGxHZFRrS01qSTViMEUwY1d0Rk4wWnVSVFo0WmtSdGVTdDVUbGd6U0ZOYWJqa3dXV2cwTm5WWVNEWk5iMUozV0hWd1dEWnplazAwWlVFMlNWWlZhVEUzUlhWNlZncFViREFyVkdsblN6ZGFkakJwTWtOeFYxZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFOR1kzTDBJMVMyTXZTRGQwUjA5bWRrOXJRemsxTVRSa2IwaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZV3hzUkd0bWFERXJhM05EVUVJelUxUldOekphU0RVeVIyRnZWRk5pT1RCTFJDOTVRVGhvZVVKR1ptRTFWMnR0Undvdk0yNDJTbWhVUnpOSmNDOU5NRzE0V0ZaSU1XaGhUbVIyVDJVNVZtdHlhbk5rZDI5dE1TODNVVlEzU0N0cWFVWXZSR0ZSYzNock9WbDJPR3hMTVZSRkNuY3hibEpGSzNVMVRVc3dNWGxhVEdKMk1sUjZNak5MVWsxdFJDdDBRemRhUkhodVRub3dZalZGTmxaME5tSjNhSGx6V1ZkWUwyUlVTa2xhTDAweWJIWUtPRzloWlZwa00wOXNPREJIUWtKeWRWbGxaV3NyWVhoblVWVm1RMDkxWW5OeFQyUkpiV1JXWWtaeVRYaExSWFJKVlcwcmVtMTRhM1Z4WVZKRWFDdENSQXBJYzJOa05tRmxlaXNyT0c4eWJTdDZOemwyUTB4bWVVWm5ZVkp1WkVOcWJHNXZNME4zTTJWUUsyOVhZMDlHVkc0d2NpOUdOa001Y2poVGVVeGhiRGRKQ25OV2JVTTRhVlF3UVZGMFVYaEJMMFpVTWxoUk1UVmtUWFZQYVdWVmJ6bE1TakJVUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzZkYWVmMzlhLTBmZmItNGUxZS05NzE4LWRmNzkwYTkxNWEyZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIeVJlVFhEMHVENUM4R1B5NjlYSlJzU2lFRm1WSm12TzhCRFM3cTdtODVSS2tydjJaTWh1aU92aw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1482"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:45 GMT
+ - Fri, 08 Dec 2023 16:05:18 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4833,7 +4866,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2363078b-31f0-4920-9265-c2075b9a60c6
+ - 798bbfad-6f17-446b-8eae-74ff7e691153
status: 200 OK
code: 200
duration: ""
@@ -4844,19 +4877,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:05:15.587406Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1479"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:50 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4866,7 +4899,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b256d0f-8b11-496a-b553-a100912e057a
+ - f563d355-d075-4538-aa5b-9acadd378ae8
status: 200 OK
code: 200
duration: ""
@@ -4877,19 +4910,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJSZVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkZGNVRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU2k4d0NuZFhTM1UyWlhSbEsyaHFWRTE1ZGxnNGJFbERPR0U0YjJOTVJWbEVNVWhqVUd4bGVtaEtNbWw2ZDB0Ukx6WllNRU5PWjJ4emF6WnJVWEk0V0hSTWIxa0tjV0ZyY2pnNFdqaDZLMDV0VWxOVE1YWkRTbTFSV1ZSTlExbFNVbFJPUnpGQlJWQmhPRWhSYlc4MGF5OVNiQ3R0YWpkMU5qTjBXa1JMYmtkdlFYUnBad3ByZERORVVtTjFjeTgwYW5ONWFFeGFjVU54YVZZME5VSjFZbVoxVmpsUWFIUnNWSFJLUVRnd1FXMWpOeTlSWTBzNWVIbDFUakF4UjFGQmVscFFlVTVsQ2psRFNIWm9WR1pwY3poelpsaG9iRXRDY3poTVJrMWlRVFpzTlhwaVVHeG9VREZ0VVVRMldUaHRSbVIyYkVKV01WSkdReTlKTURkRGRVVlhORGxHZFRrS01qSTViMEUwY1d0Rk4wWnVSVFo0WmtSdGVTdDVUbGd6U0ZOYWJqa3dXV2cwTm5WWVNEWk5iMUozV0hWd1dEWnplazAwWlVFMlNWWlZhVEUzUlhWNlZncFViREFyVkdsblN6ZGFkakJwTWtOeFYxZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFOR1kzTDBJMVMyTXZTRGQwUjA5bWRrOXJRemsxTVRSa2IwaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZV3hzUkd0bWFERXJhM05EVUVJelUxUldOekphU0RVeVIyRnZWRk5pT1RCTFJDOTVRVGhvZVVKR1ptRTFWMnR0Undvdk0yNDJTbWhVUnpOSmNDOU5NRzE0V0ZaSU1XaGhUbVIyVDJVNVZtdHlhbk5rZDI5dE1TODNVVlEzU0N0cWFVWXZSR0ZSYzNock9WbDJPR3hMTVZSRkNuY3hibEpGSzNVMVRVc3dNWGxhVEdKMk1sUjZNak5MVWsxdFJDdDBRemRhUkhodVRub3dZalZGTmxaME5tSjNhSGx6V1ZkWUwyUlVTa2xhTDAweWJIWUtPRzloWlZwa00wOXNPREJIUWtKeWRWbGxaV3NyWVhoblVWVm1RMDkxWW5OeFQyUkpiV1JXWWtaeVRYaExSWFJKVlcwcmVtMTRhM1Z4WVZKRWFDdENSQXBJYzJOa05tRmxlaXNyT0c4eWJTdDZOemwyUTB4bWVVWm5ZVkp1WkVOcWJHNXZNME4zTTJWUUsyOVhZMDlHVkc0d2NpOUdOa001Y2poVGVVeGhiRGRKQ25OV2JVTTRhVlF3UVZGMFVYaEJMMFpVTWxoUk1UVmtUWFZQYVdWVmJ6bE1TakJVUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzZkYWVmMzlhLTBmZmItNGUxZS05NzE4LWRmNzkwYTkxNWEyZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIeVJlVFhEMHVENUM4R1B5NjlYSlJzU2lFRm1WSm12TzhCRFM3cTdtODVSS2tydjJaTWh1aU92aw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1482"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:03:56 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4899,7 +4932,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a1348119-4818-44d4-b37b-759cb6c84b70
+ - 5c2be208-0d69-4ca1-a6f2-532bb4f8444c
status: 200 OK
code: 200
duration: ""
@@ -4910,19 +4943,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
headers:
Content-Length:
- - "1482"
+ - "429"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:01 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4932,7 +4965,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec51473b-e5c0-45da-aeea-b3901b04354a
+ - 1d55df13-3b52-4140-bfcf-d1c20833672d
status: 200 OK
code: 200
duration: ""
@@ -4943,19 +4976,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
headers:
Content-Length:
- - "1482"
+ - "429"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:06 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4965,7 +4998,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b324caca-9513-461f-bc08-923f81e09ceb
+ - 2a4ac7df-d2de-4fd6-abe7-76c77a93775c
status: 200 OK
code: 200
duration: ""
@@ -4976,19 +5009,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/available-types
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
headers:
Content-Length:
- - "1482"
+ - "429"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:11 GMT
+ - Fri, 08 Dec 2023 16:05:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -4998,7 +5031,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb4725c5-643e-44fe-a40c-425423182909
+ - ad0e64e8-39c1-4297-9fbe-4d7edcb0fd67
status: 200 OK
code: 200
duration: ""
@@ -5009,19 +5042,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:04:22.014649Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-12-08T16:05:15.587406Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1479"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:16 GMT
+ - Fri, 08 Dec 2023 16:05:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5031,30 +5064,32 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6c04b88-8624-4230-91ef-837082e5c462
+ - e87f4f2a-253c-4d28-b45e-29564641fb08
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"type":"multicloud-dedicated-8"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/set-type
+ method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305112Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186819784Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1482"
+ - "1488"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:21 GMT
+ - Fri, 08 Dec 2023 16:05:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5064,7 +5099,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9bda90ab-23df-4a50-b90c-2521bff2eba3
+ - 31ebc9f4-5bc3-42eb-8b27-233ce5355b77
status: 200 OK
code: 200
duration: ""
@@ -5075,10 +5110,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -5087,7 +5122,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:26 GMT
+ - Fri, 08 Dec 2023 16:05:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5097,7 +5132,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 088a79b4-62d1-4460-a8c8-43d728f8e3af
+ - b2fe7790-e117-4ccd-b90d-e738380c6184
status: 200 OK
code: 200
duration: ""
@@ -5108,10 +5143,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:03:15.126118Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -5120,7 +5155,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:31 GMT
+ - Fri, 08 Dec 2023 16:05:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5130,7 +5165,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f34643e-80b5-40b2-b277-3f751bc3f837
+ - 6baa3163-1488-41be-9193-626ba8fe3ee1
status: 200 OK
code: 200
duration: ""
@@ -5141,19 +5176,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:04:35.358499Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1479"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:36 GMT
+ - Fri, 08 Dec 2023 16:05:30 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5163,7 +5198,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7ed63f58-6021-4f14-931b-ac5535f7f6b4
+ - 4d2d30ef-9dbb-4de5-b684-344d4ec5c799
status: 200 OK
code: 200
duration: ""
@@ -5174,19 +5209,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:04:35.358499Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1479"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:36 GMT
+ - Fri, 08 Dec 2023 16:05:35 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5196,7 +5231,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 35023c37-56ba-45ac-851c-32325df8b060
+ - 4ffacd78-532c-48e8-8b84-bf1e89ae5ec6
status: 200 OK
code: 200
duration: ""
@@ -5207,19 +5242,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJOZUU1c2IxaEVWRTE2VFZSRmVFMXFSVEJOUkUxNFRteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGxGeUNrVktUSE5vVTJSdFRuTnhjVzE0TUdKbGIxZ3dRVkkyUnk5TVVVWmpTMHAzYkVJNU5UTjZlRzFsT1VoVFptVjBabEY1UzJabVZESnVNVk5DWTFwbFExSUtiakJLTDB0bFJEUmFSMk5GY2xoWFN6ZHhXVkZJVlhBMVZXeEhkMkp3YWxGaVdWRnplWGxqY1VSQ1dHdFlOR1VyVVZZck9EZGFURk5wVjJsbWVVTlJTQXBDU3pCU2VVNU1LMEprVkhac2Rua3hPVUY0TUZZclFuRXJTRnBqVGt4aWVsQlRhV3RJUkdvNE5VRnpkR3M1UWsxd09UZFVkbTV1V21SREsycHZOa2RwQ2tabGMyTm9jV2hNTVhrNWNrRXdUM0J1UVhjMWMwMXhTMmt2VkdKSk1HTkJWa0Z0WnpoS1JtbFVNV1kzUjNGeGRDdHBZVWxHUldwM2Vrd3lZbmQ0UTBvS2FuaHdObGQ1ZDJJM2JIbDVZV3RuUkhWbU1WRnRZa3RpUlV4a1FrMDFWR1JoYWtZNFZrcFNTbmRQYTFoRFEzRmhWek0xZVhabWRDdHdZelZPVGxabk1Rb3dWWFIxZW1aUmRrZEJPRmRCVkcxRmNFNXpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9NazFNUnpaWVExSkJRVmRVZWtoTmNYQXpkRVU1U0cxVlNsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaR3BVYlhKSlMyeERNbGxHT0doNWVrbzBXbWd6VkZGMGRXdHFPVzVtVlRSM2NucFJVR1k0U25CelJsbEJPRlJsV2dweFZWUjBMelVyT1ZsRWVIbEpOSGszV0dKWlJqVjFjakkwYkVobVVrMDBlVlEzWlVWbE9GcGxUM0o2VkZWdWEybzBWRmhRV0dacWJHWnFiV3BvYm10WkNtUnNiblJSTjFOdk5uaGlkWEJHYUVZek5sSldSSHBuTVRCWloxUTJRblF5Tld0WGVsQlJVblExYTFFeFpYTnlaR1ZhSzNkd1EzZHVWSFJDUzBGaFZ6QUtVblY2VEhkMVNtdFRhRE5JUmpoVmVETTNUVkI2Tmpad2RVNVNUV0pHWmtWWFIzQnVPVWs0TWpRM2RVVldTMU53ZWxoWmRreHRja2xXT1hnM2JrbHNWd3AyWkVaclIzRktRMmxQYlhSMFREYzVNbTg1UW5Oa1MycDRTVWxEVTBrd2NUVTRUa2x3WkZsVFpFVldNVWhCV1RodmMyZGtXbEZMYjNSblFVWlhaU3QzQ2xrM2QybE5TelpWV1dkMmFVSjBUM3AwT0V4WFpFVmtlbG92UjFkclJ5OVFabXA2TUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE3ZTAyNjQ2LTFmNDYtNGYwNS04YzhkLWE0MDJmODAyZGU1Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbWxSWVZ2ZzhQbW1rZ1MzbWRZUWJiTnkwYXM3M0gycVVNcGJpbXVyQVRxNktIMm9EMkV3NGRPTw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2622"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:36 GMT
+ - Fri, 08 Dec 2023 16:05:40 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5229,7 +5264,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f69ae27-d7dd-4b3e-bbb3-7db03f14bfce
+ - 86531137-ce23-48a7-a9f1-f88291698a85
status: 200 OK
code: 200
duration: ""
@@ -5240,19 +5275,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:04:35.358499Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1479"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:36 GMT
+ - Fri, 08 Dec 2023 16:05:45 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5262,7 +5297,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a53eb19-0c1d-454f-af76-c85efc8e1974
+ - b8984018-1cd8-4098-8377-5c49a6ebfcb6
status: 200 OK
code: 200
duration: ""
@@ -5273,19 +5308,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:04:35.358499Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1479"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:36 GMT
+ - Fri, 08 Dec 2023 16:05:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5295,7 +5330,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c939dc8d-c930-4c6e-9029-e71b9185d3d1
+ - c8a74765-798c-4cf8-a5fc-2e16dbb3db28
status: 200 OK
code: 200
duration: ""
@@ -5306,19 +5341,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJOZUU1c2IxaEVWRTE2VFZSRmVFMXFSVEJOUkUxNFRteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGxGeUNrVktUSE5vVTJSdFRuTnhjVzE0TUdKbGIxZ3dRVkkyUnk5TVVVWmpTMHAzYkVJNU5UTjZlRzFsT1VoVFptVjBabEY1UzJabVZESnVNVk5DWTFwbFExSUtiakJLTDB0bFJEUmFSMk5GY2xoWFN6ZHhXVkZJVlhBMVZXeEhkMkp3YWxGaVdWRnplWGxqY1VSQ1dHdFlOR1VyVVZZck9EZGFURk5wVjJsbWVVTlJTQXBDU3pCU2VVNU1LMEprVkhac2Rua3hPVUY0TUZZclFuRXJTRnBqVGt4aWVsQlRhV3RJUkdvNE5VRnpkR3M1UWsxd09UZFVkbTV1V21SREsycHZOa2RwQ2tabGMyTm9jV2hNTVhrNWNrRXdUM0J1UVhjMWMwMXhTMmt2VkdKSk1HTkJWa0Z0WnpoS1JtbFVNV1kzUjNGeGRDdHBZVWxHUldwM2Vrd3lZbmQ0UTBvS2FuaHdObGQ1ZDJJM2JIbDVZV3RuUkhWbU1WRnRZa3RpUlV4a1FrMDFWR1JoYWtZNFZrcFNTbmRQYTFoRFEzRmhWek0xZVhabWRDdHdZelZPVGxabk1Rb3dWWFIxZW1aUmRrZEJPRmRCVkcxRmNFNXpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9NazFNUnpaWVExSkJRVmRVZWtoTmNYQXpkRVU1U0cxVlNsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaR3BVYlhKSlMyeERNbGxHT0doNWVrbzBXbWd6VkZGMGRXdHFPVzVtVlRSM2NucFJVR1k0U25CelJsbEJPRlJsV2dweFZWUjBMelVyT1ZsRWVIbEpOSGszV0dKWlJqVjFjakkwYkVobVVrMDBlVlEzWlVWbE9GcGxUM0o2VkZWdWEybzBWRmhRV0dacWJHWnFiV3BvYm10WkNtUnNiblJSTjFOdk5uaGlkWEJHYUVZek5sSldSSHBuTVRCWloxUTJRblF5Tld0WGVsQlJVblExYTFFeFpYTnlaR1ZhSzNkd1EzZHVWSFJDUzBGaFZ6QUtVblY2VEhkMVNtdFRhRE5JUmpoVmVETTNUVkI2Tmpad2RVNVNUV0pHWmtWWFIzQnVPVWs0TWpRM2RVVldTMU53ZWxoWmRreHRja2xXT1hnM2JrbHNWd3AyWkVaclIzRktRMmxQYlhSMFREYzVNbTg1UW5Oa1MycDRTVWxEVTBrd2NUVTRUa2x3WkZsVFpFVldNVWhCV1RodmMyZGtXbEZMYjNSblFVWlhaU3QzQ2xrM2QybE5TelpWV1dkMmFVSjBUM3AwT0V4WFpFVmtlbG92UjFkclJ5OVFabXA2TUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE3ZTAyNjQ2LTFmNDYtNGYwNS04YzhkLWE0MDJmODAyZGU1Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbWxSWVZ2ZzhQbW1rZ1MzbWRZUWJiTnkwYXM3M0gycVVNcGJpbXVyQVRxNktIMm9EMkV3NGRPTw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2622"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:05:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5328,7 +5363,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bb2bc63b-7dda-4d7f-b584-b2aacad5dc8e
+ - a8d8bf0d-12a1-49f2-892c-670481ef2b2e
status: 200 OK
code: 200
duration: ""
@@ -5339,19 +5374,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:04:35.358499Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1479"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:06:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5361,7 +5396,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d59a7219-b86b-4b91-95ee-220eaec098d0
+ - 8257522a-cd13-4591-9804-4f39f33920c5
status: 200 OK
code: 200
duration: ""
@@ -5372,19 +5407,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJOZUU1c2IxaEVWRTE2VFZSRmVFMXFSVEJOUkUxNFRteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGxGeUNrVktUSE5vVTJSdFRuTnhjVzE0TUdKbGIxZ3dRVkkyUnk5TVVVWmpTMHAzYkVJNU5UTjZlRzFsT1VoVFptVjBabEY1UzJabVZESnVNVk5DWTFwbFExSUtiakJLTDB0bFJEUmFSMk5GY2xoWFN6ZHhXVkZJVlhBMVZXeEhkMkp3YWxGaVdWRnplWGxqY1VSQ1dHdFlOR1VyVVZZck9EZGFURk5wVjJsbWVVTlJTQXBDU3pCU2VVNU1LMEprVkhac2Rua3hPVUY0TUZZclFuRXJTRnBqVGt4aWVsQlRhV3RJUkdvNE5VRnpkR3M1UWsxd09UZFVkbTV1V21SREsycHZOa2RwQ2tabGMyTm9jV2hNTVhrNWNrRXdUM0J1UVhjMWMwMXhTMmt2VkdKSk1HTkJWa0Z0WnpoS1JtbFVNV1kzUjNGeGRDdHBZVWxHUldwM2Vrd3lZbmQ0UTBvS2FuaHdObGQ1ZDJJM2JIbDVZV3RuUkhWbU1WRnRZa3RpUlV4a1FrMDFWR1JoYWtZNFZrcFNTbmRQYTFoRFEzRmhWek0xZVhabWRDdHdZelZPVGxabk1Rb3dWWFIxZW1aUmRrZEJPRmRCVkcxRmNFNXpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9NazFNUnpaWVExSkJRVmRVZWtoTmNYQXpkRVU1U0cxVlNsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaR3BVYlhKSlMyeERNbGxHT0doNWVrbzBXbWd6VkZGMGRXdHFPVzVtVlRSM2NucFJVR1k0U25CelJsbEJPRlJsV2dweFZWUjBMelVyT1ZsRWVIbEpOSGszV0dKWlJqVjFjakkwYkVobVVrMDBlVlEzWlVWbE9GcGxUM0o2VkZWdWEybzBWRmhRV0dacWJHWnFiV3BvYm10WkNtUnNiblJSTjFOdk5uaGlkWEJHYUVZek5sSldSSHBuTVRCWloxUTJRblF5Tld0WGVsQlJVblExYTFFeFpYTnlaR1ZhSzNkd1EzZHVWSFJDUzBGaFZ6QUtVblY2VEhkMVNtdFRhRE5JUmpoVmVETTNUVkI2Tmpad2RVNVNUV0pHWmtWWFIzQnVPVWs0TWpRM2RVVldTMU53ZWxoWmRreHRja2xXT1hnM2JrbHNWd3AyWkVaclIzRktRMmxQYlhSMFREYzVNbTg1UW5Oa1MycDRTVWxEVTBrd2NUVTRUa2x3WkZsVFpFVldNVWhCV1RodmMyZGtXbEZMYjNSblFVWlhaU3QzQ2xrM2QybE5TelpWV1dkMmFVSjBUM3AwT0V4WFpFVmtlbG92UjFkclJ5OVFabXA2TUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE3ZTAyNjQ2LTFmNDYtNGYwNS04YzhkLWE0MDJmODAyZGU1Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbWxSWVZ2ZzhQbW1rZ1MzbWRZUWJiTnkwYXM3M0gycVVNcGJpbXVyQVRxNktIMm9EMkV3NGRPTw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "2622"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:06:05 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5394,7 +5429,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e2b98b6c-9d5d-40ed-89ce-4786b01c2056
+ - 72de16e3-5cbf-4849-b357-5ae5d39ffe81
status: 200 OK
code: 200
duration: ""
@@ -5405,19 +5440,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "429"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:06:10 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5427,7 +5462,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56408680-5b86-4dc5-afac-5931a8b42e42
+ - c1dab776-f7f0-40a5-a0a2-b35f109aa99e
status: 200 OK
code: 200
duration: ""
@@ -5438,19 +5473,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "429"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:37 GMT
+ - Fri, 08 Dec 2023 16:06:15 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5460,7 +5495,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29c5460b-5661-4590-8bc9-d6eea0f98169
+ - d59fc4c0-67b7-442c-a131-a182c2914a0b
status: 200 OK
code: 200
duration: ""
@@ -5471,19 +5506,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "429"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:38 GMT
+ - Fri, 08 Dec 2023 16:06:20 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5493,7 +5528,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ac36aec1-4f4d-4d18-b9d7-684ab251d3a7
+ - 72a0195d-53ab-40f9-a628-ee71c28fb14f
status: 200 OK
code: 200
duration: ""
@@ -5504,19 +5539,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:03:15.115312Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-11-13T14:04:35.358499Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1479"
+ - "1482"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:04:38 GMT
+ - Fri, 08 Dec 2023 16:06:25 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -5526,584 +5561,21 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9abf347f-a33f-4910-959d-cda4ee25bee5
+ - e88f58f4-0798-425f-b1bf-54f1769f11c3
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"type":"multicloud-dedicated-8"}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/set-type
- method: POST
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
+ method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300948981Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391483723Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1488"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:38 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0ef630fe-e80f-4959-9b90-831c422f8050
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:38 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 987c5522-b83a-4330-9639-07c19d1dbf1c
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:43 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e262ceb8-7e7b-4585-a1bb-5f615bb75902
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:48 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ec4e7c41-b859-4d6a-b77e-2c4deca8ec1a
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:53 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b10c2423-53ae-4c17-862c-1786e0b84ff1
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:04:58 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6c7cce4c-000f-4277-81de-e7e6b79fcc09
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:03 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d6831083-7256-4625-af6d-db196ccdbdf5
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:08 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - aff59dd4-e9f0-45f7-b9b5-6864bb1f1b33
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:13 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a40d37a1-5cd8-4525-adc8-d5fc6b338381
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:18 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c8f03d95-4a0e-4aeb-9f1f-90e1c87a37cc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:23 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a9a86e3b-52ca-4838-bd4d-21a763c7d56f
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:28 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f8ef0299-9c35-43fa-b16c-546c826d7624
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:34 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fa46d222-e06a-4a4e-b63d-2b8290dfeccc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:39 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 634295d4-3421-4fde-a249-aa9bbdd07ac2
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:44 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1075ca5e-76df-4b43-9eb8-575508eb8658
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:49 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 347b34f7-2752-4fb1-b3d6-6e1c0a63aebc
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:05:55 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f817873e-7789-4f19-94eb-b016e0ca3528
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6112,7 +5584,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:00 GMT
+ - Fri, 08 Dec 2023 16:06:31 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6122,7 +5594,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1cbde80a-f200-4a58-a299-9d7b6b9519d8
+ - 96f11572-1508-4e9a-8473-819a0da8c3e1
status: 200 OK
code: 200
duration: ""
@@ -6133,10 +5605,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6145,7 +5617,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:05 GMT
+ - Fri, 08 Dec 2023 16:06:36 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6155,7 +5627,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbcb3022-3ac0-4903-92bf-543a00cfc6dc
+ - 0a1c789f-16ef-4995-b945-b37885e2f380
status: 200 OK
code: 200
duration: ""
@@ -6166,10 +5638,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6178,7 +5650,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:10 GMT
+ - Fri, 08 Dec 2023 16:06:41 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6188,7 +5660,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8e91ba49-08ab-43ef-945b-10563695d676
+ - 270aa687-ed88-4921-b4b7-008498d7c50a
status: 200 OK
code: 200
duration: ""
@@ -6199,10 +5671,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6211,7 +5683,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:15 GMT
+ - Fri, 08 Dec 2023 16:06:46 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6221,7 +5693,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66d945bf-1577-42e6-afe4-fc5c4ceb708b
+ - 7a348088-2092-4cc1-aca4-050ac3e88488
status: 200 OK
code: 200
duration: ""
@@ -6232,10 +5704,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:04:38.391484Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:05:20.186820Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6244,7 +5716,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:20 GMT
+ - Fri, 08 Dec 2023 16:06:51 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6254,7 +5726,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7d450fe4-9bb6-4d8a-a218-b0500e6d47b1
+ - 863ec422-baa3-4923-a33d-a8c69237962a
status: 200 OK
code: 200
duration: ""
@@ -6265,10 +5737,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:24.389433Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:53.177472Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -6277,7 +5749,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
+ - Fri, 08 Dec 2023 16:06:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6287,7 +5759,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dee6edf8-be7f-497a-b7aa-5c7ac29a91fd
+ - c11bbbf7-b6a5-400e-85b4-a5e6092ab290
status: 200 OK
code: 200
duration: ""
@@ -6300,10 +5772,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: PATCH
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942311Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987153Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1485"
@@ -6312,40 +5784,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 38700877-00c5-4cc2-ba66-8f4ad883625d
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:06:25 GMT
+ - Fri, 08 Dec 2023 16:06:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6355,7 +5794,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 725a05f6-01ca-4163-a5fe-b95d043d1620
+ - 058848a2-c0be-4cb4-9936-4e172e9dc394
status: 200 OK
code: 200
duration: ""
@@ -6366,10 +5805,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6378,7 +5817,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:30 GMT
+ - Fri, 08 Dec 2023 16:06:56 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6388,7 +5827,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 27015a84-79f9-42ed-af53-85539db6cada
+ - c62aeaa5-dc79-4884-98ec-6285923cf7f9
status: 200 OK
code: 200
duration: ""
@@ -6399,10 +5838,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6411,7 +5850,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:35 GMT
+ - Fri, 08 Dec 2023 16:07:01 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6421,7 +5860,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 28383f1e-3083-44a0-af1e-44ee20161964
+ - 3f012923-1753-4d9b-8edc-51c60cb33e67
status: 200 OK
code: 200
duration: ""
@@ -6432,10 +5871,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6444,7 +5883,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:40 GMT
+ - Fri, 08 Dec 2023 16:07:06 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6454,7 +5893,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 98db794d-feae-438f-8600-7463f3232160
+ - cc623278-c2e3-4825-adc1-b0fb5b3e1d4f
status: 200 OK
code: 200
duration: ""
@@ -6465,10 +5904,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6477,7 +5916,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:45 GMT
+ - Fri, 08 Dec 2023 16:07:11 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6487,7 +5926,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea6e04b6-ed85-4ad8-9343-73f9cc2f14a7
+ - bd588176-5036-465b-bf22-a2402fcec36d
status: 200 OK
code: 200
duration: ""
@@ -6498,10 +5937,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6510,7 +5949,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:51 GMT
+ - Fri, 08 Dec 2023 16:07:16 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6520,7 +5959,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b78517a-8e61-4c2b-b158-328138278426
+ - c789603a-becb-4e62-8063-e427c2e4873f
status: 200 OK
code: 200
duration: ""
@@ -6531,10 +5970,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:06:56.342987Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6543,7 +5982,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:06:56 GMT
+ - Fri, 08 Dec 2023 16:07:21 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6553,7 +5992,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2a146918-7d98-4d87-ad53-495303319add
+ - 601329b3-7ac8-4bcb-b0ac-427c74847f17
status: 200 OK
code: 200
duration: ""
@@ -6564,43 +6003,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:06:25.588942Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1482"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:07:01 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5a1cbc40-2981-4ceb-8bec-41225d071ee2
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:03.471202Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:23.704124Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -6609,7 +6015,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:07:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6619,7 +6025,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 39a33ee1-c354-41d2-ad75-8a028f7cbedb
+ - 3998decc-f14d-4a08-8f0b-fc583f23a07a
status: 200 OK
code: 200
duration: ""
@@ -6630,10 +6036,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:03.471202Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:23.704124Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -6642,7 +6048,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:07:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6652,7 +6058,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 093ad5b5-7d97-4a1a-9146-477ed8cb59f4
+ - db6ba3c6-51f2-469c-91a0-47499700a155
status: 200 OK
code: 200
duration: ""
@@ -6663,10 +6069,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJOZUU1c2IxaEVWRTE2VFZSRmVFMXFSVEJOUkUxNFRteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGxGeUNrVktUSE5vVTJSdFRuTnhjVzE0TUdKbGIxZ3dRVkkyUnk5TVVVWmpTMHAzYkVJNU5UTjZlRzFsT1VoVFptVjBabEY1UzJabVZESnVNVk5DWTFwbFExSUtiakJLTDB0bFJEUmFSMk5GY2xoWFN6ZHhXVkZJVlhBMVZXeEhkMkp3YWxGaVdWRnplWGxqY1VSQ1dHdFlOR1VyVVZZck9EZGFURk5wVjJsbWVVTlJTQXBDU3pCU2VVNU1LMEprVkhac2Rua3hPVUY0TUZZclFuRXJTRnBqVGt4aWVsQlRhV3RJUkdvNE5VRnpkR3M1UWsxd09UZFVkbTV1V21SREsycHZOa2RwQ2tabGMyTm9jV2hNTVhrNWNrRXdUM0J1UVhjMWMwMXhTMmt2VkdKSk1HTkJWa0Z0WnpoS1JtbFVNV1kzUjNGeGRDdHBZVWxHUldwM2Vrd3lZbmQ0UTBvS2FuaHdObGQ1ZDJJM2JIbDVZV3RuUkhWbU1WRnRZa3RpUlV4a1FrMDFWR1JoYWtZNFZrcFNTbmRQYTFoRFEzRmhWek0xZVhabWRDdHdZelZPVGxabk1Rb3dWWFIxZW1aUmRrZEJPRmRCVkcxRmNFNXpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9NazFNUnpaWVExSkJRVmRVZWtoTmNYQXpkRVU1U0cxVlNsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaR3BVYlhKSlMyeERNbGxHT0doNWVrbzBXbWd6VkZGMGRXdHFPVzVtVlRSM2NucFJVR1k0U25CelJsbEJPRlJsV2dweFZWUjBMelVyT1ZsRWVIbEpOSGszV0dKWlJqVjFjakkwYkVobVVrMDBlVlEzWlVWbE9GcGxUM0o2VkZWdWEybzBWRmhRV0dacWJHWnFiV3BvYm10WkNtUnNiblJSTjFOdk5uaGlkWEJHYUVZek5sSldSSHBuTVRCWloxUTJRblF5Tld0WGVsQlJVblExYTFFeFpYTnlaR1ZhSzNkd1EzZHVWSFJDUzBGaFZ6QUtVblY2VEhkMVNtdFRhRE5JUmpoVmVETTNUVkI2Tmpad2RVNVNUV0pHWmtWWFIzQnVPVWs0TWpRM2RVVldTMU53ZWxoWmRreHRja2xXT1hnM2JrbHNWd3AyWkVaclIzRktRMmxQYlhSMFREYzVNbTg1UW5Oa1MycDRTVWxEVTBrd2NUVTRUa2x3WkZsVFpFVldNVWhCV1RodmMyZGtXbEZMYjNSblFVWlhaU3QzQ2xrM2QybE5TelpWV1dkMmFVSjBUM3AwT0V4WFpFVmtlbG92UjFkclJ5OVFabXA2TUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE3ZTAyNjQ2LTFmNDYtNGYwNS04YzhkLWE0MDJmODAyZGU1Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbWxSWVZ2ZzhQbW1rZ1MzbWRZUWJiTnkwYXM3M0gycVVNcGJpbXVyQVRxNktIMm9EMkV3NGRPTw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJSZVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkZGNVRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU2k4d0NuZFhTM1UyWlhSbEsyaHFWRTE1ZGxnNGJFbERPR0U0YjJOTVJWbEVNVWhqVUd4bGVtaEtNbWw2ZDB0Ukx6WllNRU5PWjJ4emF6WnJVWEk0V0hSTWIxa0tjV0ZyY2pnNFdqaDZLMDV0VWxOVE1YWkRTbTFSV1ZSTlExbFNVbFJPUnpGQlJWQmhPRWhSYlc4MGF5OVNiQ3R0YWpkMU5qTjBXa1JMYmtkdlFYUnBad3ByZERORVVtTjFjeTgwYW5ONWFFeGFjVU54YVZZME5VSjFZbVoxVmpsUWFIUnNWSFJLUVRnd1FXMWpOeTlSWTBzNWVIbDFUakF4UjFGQmVscFFlVTVsQ2psRFNIWm9WR1pwY3poelpsaG9iRXRDY3poTVJrMWlRVFpzTlhwaVVHeG9VREZ0VVVRMldUaHRSbVIyYkVKV01WSkdReTlKTURkRGRVVlhORGxHZFRrS01qSTViMEUwY1d0Rk4wWnVSVFo0WmtSdGVTdDVUbGd6U0ZOYWJqa3dXV2cwTm5WWVNEWk5iMUozV0hWd1dEWnplazAwWlVFMlNWWlZhVEUzUlhWNlZncFViREFyVkdsblN6ZGFkakJwTWtOeFYxZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFOR1kzTDBJMVMyTXZTRGQwUjA5bWRrOXJRemsxTVRSa2IwaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZV3hzUkd0bWFERXJhM05EVUVJelUxUldOekphU0RVeVIyRnZWRk5pT1RCTFJDOTVRVGhvZVVKR1ptRTFWMnR0Undvdk0yNDJTbWhVUnpOSmNDOU5NRzE0V0ZaSU1XaGhUbVIyVDJVNVZtdHlhbk5rZDI5dE1TODNVVlEzU0N0cWFVWXZSR0ZSYzNock9WbDJPR3hMTVZSRkNuY3hibEpGSzNVMVRVc3dNWGxhVEdKMk1sUjZNak5MVWsxdFJDdDBRemRhUkhodVRub3dZalZGTmxaME5tSjNhSGx6V1ZkWUwyUlVTa2xhTDAweWJIWUtPRzloWlZwa00wOXNPREJIUWtKeWRWbGxaV3NyWVhoblVWVm1RMDkxWW5OeFQyUkpiV1JXWWtaeVRYaExSWFJKVlcwcmVtMTRhM1Z4WVZKRWFDdENSQXBJYzJOa05tRmxlaXNyT0c4eWJTdDZOemwyUTB4bWVVWm5ZVkp1WkVOcWJHNXZNME4zTTJWUUsyOVhZMDlHVkc0d2NpOUdOa001Y2poVGVVeGhiRGRKQ25OV2JVTTRhVlF3UVZGMFVYaEJMMFpVTWxoUk1UVmtUWFZQYVdWVmJ6bE1TakJVUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzZkYWVmMzlhLTBmZmItNGUxZS05NzE4LWRmNzkwYTkxNWEyZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIeVJlVFhEMHVENUM4R1B5NjlYSlJzU2lFRm1WSm12TzhCRFM3cTdtODVSS2tydjJaTWh1aU92aw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -6675,7 +6081,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:07:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6685,7 +6091,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74825584-de8c-43e5-acc8-0db78fe0fb1a
+ - b2eb19a5-28f6-4f6f-9088-2dd5daec0746
status: 200 OK
code: 200
duration: ""
@@ -6696,10 +6102,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:03.471202Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:23.704124Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -6708,7 +6114,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:07:26 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6718,7 +6124,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a46b3bb0-5490-4622-a867-8531f52280ce
+ - 07e08c43-70fd-4f68-881b-7635323b0873
status: 200 OK
code: 200
duration: ""
@@ -6729,10 +6135,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:03.471202Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:23.704124Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -6741,7 +6147,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6751,7 +6157,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1d62757b-2b27-482e-a669-e8bf76e22fa8
+ - b1c57eb6-e173-4376-949f-7d60220a4423
status: 200 OK
code: 200
duration: ""
@@ -6762,10 +6168,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJOZUU1c2IxaEVWRTE2VFZSRmVFMXFSVEJOUkUxNFRteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGxGeUNrVktUSE5vVTJSdFRuTnhjVzE0TUdKbGIxZ3dRVkkyUnk5TVVVWmpTMHAzYkVJNU5UTjZlRzFsT1VoVFptVjBabEY1UzJabVZESnVNVk5DWTFwbFExSUtiakJLTDB0bFJEUmFSMk5GY2xoWFN6ZHhXVkZJVlhBMVZXeEhkMkp3YWxGaVdWRnplWGxqY1VSQ1dHdFlOR1VyVVZZck9EZGFURk5wVjJsbWVVTlJTQXBDU3pCU2VVNU1LMEprVkhac2Rua3hPVUY0TUZZclFuRXJTRnBqVGt4aWVsQlRhV3RJUkdvNE5VRnpkR3M1UWsxd09UZFVkbTV1V21SREsycHZOa2RwQ2tabGMyTm9jV2hNTVhrNWNrRXdUM0J1UVhjMWMwMXhTMmt2VkdKSk1HTkJWa0Z0WnpoS1JtbFVNV1kzUjNGeGRDdHBZVWxHUldwM2Vrd3lZbmQ0UTBvS2FuaHdObGQ1ZDJJM2JIbDVZV3RuUkhWbU1WRnRZa3RpUlV4a1FrMDFWR1JoYWtZNFZrcFNTbmRQYTFoRFEzRmhWek0xZVhabWRDdHdZelZPVGxabk1Rb3dWWFIxZW1aUmRrZEJPRmRCVkcxRmNFNXpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9NazFNUnpaWVExSkJRVmRVZWtoTmNYQXpkRVU1U0cxVlNsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaR3BVYlhKSlMyeERNbGxHT0doNWVrbzBXbWd6VkZGMGRXdHFPVzVtVlRSM2NucFJVR1k0U25CelJsbEJPRlJsV2dweFZWUjBMelVyT1ZsRWVIbEpOSGszV0dKWlJqVjFjakkwYkVobVVrMDBlVlEzWlVWbE9GcGxUM0o2VkZWdWEybzBWRmhRV0dacWJHWnFiV3BvYm10WkNtUnNiblJSTjFOdk5uaGlkWEJHYUVZek5sSldSSHBuTVRCWloxUTJRblF5Tld0WGVsQlJVblExYTFFeFpYTnlaR1ZhSzNkd1EzZHVWSFJDUzBGaFZ6QUtVblY2VEhkMVNtdFRhRE5JUmpoVmVETTNUVkI2Tmpad2RVNVNUV0pHWmtWWFIzQnVPVWs0TWpRM2RVVldTMU53ZWxoWmRreHRja2xXT1hnM2JrbHNWd3AyWkVaclIzRktRMmxQYlhSMFREYzVNbTg1UW5Oa1MycDRTVWxEVTBrd2NUVTRUa2x3WkZsVFpFVldNVWhCV1RodmMyZGtXbEZMYjNSblFVWlhaU3QzQ2xrM2QybE5TelpWV1dkMmFVSjBUM3AwT0V4WFpFVmtlbG92UjFkclJ5OVFabXA2TUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE3ZTAyNjQ2LTFmNDYtNGYwNS04YzhkLWE0MDJmODAyZGU1Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbWxSWVZ2ZzhQbW1rZ1MzbWRZUWJiTnkwYXM3M0gycVVNcGJpbXVyQVRxNktIMm9EMkV3NGRPTw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJSZVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkZGNVRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU2k4d0NuZFhTM1UyWlhSbEsyaHFWRTE1ZGxnNGJFbERPR0U0YjJOTVJWbEVNVWhqVUd4bGVtaEtNbWw2ZDB0Ukx6WllNRU5PWjJ4emF6WnJVWEk0V0hSTWIxa0tjV0ZyY2pnNFdqaDZLMDV0VWxOVE1YWkRTbTFSV1ZSTlExbFNVbFJPUnpGQlJWQmhPRWhSYlc4MGF5OVNiQ3R0YWpkMU5qTjBXa1JMYmtkdlFYUnBad3ByZERORVVtTjFjeTgwYW5ONWFFeGFjVU54YVZZME5VSjFZbVoxVmpsUWFIUnNWSFJLUVRnd1FXMWpOeTlSWTBzNWVIbDFUakF4UjFGQmVscFFlVTVsQ2psRFNIWm9WR1pwY3poelpsaG9iRXRDY3poTVJrMWlRVFpzTlhwaVVHeG9VREZ0VVVRMldUaHRSbVIyYkVKV01WSkdReTlKTURkRGRVVlhORGxHZFRrS01qSTViMEUwY1d0Rk4wWnVSVFo0WmtSdGVTdDVUbGd6U0ZOYWJqa3dXV2cwTm5WWVNEWk5iMUozV0hWd1dEWnplazAwWlVFMlNWWlZhVEUzUlhWNlZncFViREFyVkdsblN6ZGFkakJwTWtOeFYxZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFOR1kzTDBJMVMyTXZTRGQwUjA5bWRrOXJRemsxTVRSa2IwaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZV3hzUkd0bWFERXJhM05EVUVJelUxUldOekphU0RVeVIyRnZWRk5pT1RCTFJDOTVRVGhvZVVKR1ptRTFWMnR0Undvdk0yNDJTbWhVUnpOSmNDOU5NRzE0V0ZaSU1XaGhUbVIyVDJVNVZtdHlhbk5rZDI5dE1TODNVVlEzU0N0cWFVWXZSR0ZSYzNock9WbDJPR3hMTVZSRkNuY3hibEpGSzNVMVRVc3dNWGxhVEdKMk1sUjZNak5MVWsxdFJDdDBRemRhUkhodVRub3dZalZGTmxaME5tSjNhSGx6V1ZkWUwyUlVTa2xhTDAweWJIWUtPRzloWlZwa00wOXNPREJIUWtKeWRWbGxaV3NyWVhoblVWVm1RMDkxWW5OeFQyUkpiV1JXWWtaeVRYaExSWFJKVlcwcmVtMTRhM1Z4WVZKRWFDdENSQXBJYzJOa05tRmxlaXNyT0c4eWJTdDZOemwyUTB4bWVVWm5ZVkp1WkVOcWJHNXZNME4zTTJWUUsyOVhZMDlHVkc0d2NpOUdOa001Y2poVGVVeGhiRGRKQ25OV2JVTTRhVlF3UVZGMFVYaEJMMFpVTWxoUk1UVmtUWFZQYVdWVmJ6bE1TakJVUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzZkYWVmMzlhLTBmZmItNGUxZS05NzE4LWRmNzkwYTkxNWEyZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIeVJlVFhEMHVENUM4R1B5NjlYSlJzU2lFRm1WSm12TzhCRFM3cTdtODVSS2tydjJaTWh1aU92aw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -6774,7 +6180,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:06 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6784,7 +6190,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2d4eaa12-4d4b-407c-9f3d-ca254d927496
+ - 0e5c256b-444f-4382-91aa-7ef28a33fc1c
status: 200 OK
code: 200
duration: ""
@@ -6795,10 +6201,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:03.471202Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:23.704124Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -6807,7 +6213,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:07 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6817,7 +6223,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 561f3e72-3904-4734-a5c7-305144e960f2
+ - 1dd97512-0abb-404a-b1f6-ea6722a5e268
status: 200 OK
code: 200
duration: ""
@@ -6828,10 +6234,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJOZUU1c2IxaEVWRTE2VFZSRmVFMXFSVEJOUkUxNFRteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGxGeUNrVktUSE5vVTJSdFRuTnhjVzE0TUdKbGIxZ3dRVkkyUnk5TVVVWmpTMHAzYkVJNU5UTjZlRzFsT1VoVFptVjBabEY1UzJabVZESnVNVk5DWTFwbFExSUtiakJLTDB0bFJEUmFSMk5GY2xoWFN6ZHhXVkZJVlhBMVZXeEhkMkp3YWxGaVdWRnplWGxqY1VSQ1dHdFlOR1VyVVZZck9EZGFURk5wVjJsbWVVTlJTQXBDU3pCU2VVNU1LMEprVkhac2Rua3hPVUY0TUZZclFuRXJTRnBqVGt4aWVsQlRhV3RJUkdvNE5VRnpkR3M1UWsxd09UZFVkbTV1V21SREsycHZOa2RwQ2tabGMyTm9jV2hNTVhrNWNrRXdUM0J1UVhjMWMwMXhTMmt2VkdKSk1HTkJWa0Z0WnpoS1JtbFVNV1kzUjNGeGRDdHBZVWxHUldwM2Vrd3lZbmQ0UTBvS2FuaHdObGQ1ZDJJM2JIbDVZV3RuUkhWbU1WRnRZa3RpUlV4a1FrMDFWR1JoYWtZNFZrcFNTbmRQYTFoRFEzRmhWek0xZVhabWRDdHdZelZPVGxabk1Rb3dWWFIxZW1aUmRrZEJPRmRCVkcxRmNFNXpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9NazFNUnpaWVExSkJRVmRVZWtoTmNYQXpkRVU1U0cxVlNsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNaR3BVYlhKSlMyeERNbGxHT0doNWVrbzBXbWd6VkZGMGRXdHFPVzVtVlRSM2NucFJVR1k0U25CelJsbEJPRlJsV2dweFZWUjBMelVyT1ZsRWVIbEpOSGszV0dKWlJqVjFjakkwYkVobVVrMDBlVlEzWlVWbE9GcGxUM0o2VkZWdWEybzBWRmhRV0dacWJHWnFiV3BvYm10WkNtUnNiblJSTjFOdk5uaGlkWEJHYUVZek5sSldSSHBuTVRCWloxUTJRblF5Tld0WGVsQlJVblExYTFFeFpYTnlaR1ZhSzNkd1EzZHVWSFJDUzBGaFZ6QUtVblY2VEhkMVNtdFRhRE5JUmpoVmVETTNUVkI2Tmpad2RVNVNUV0pHWmtWWFIzQnVPVWs0TWpRM2RVVldTMU53ZWxoWmRreHRja2xXT1hnM2JrbHNWd3AyWkVaclIzRktRMmxQYlhSMFREYzVNbTg1UW5Oa1MycDRTVWxEVTBrd2NUVTRUa2x3WkZsVFpFVldNVWhCV1RodmMyZGtXbEZMYjNSblFVWlhaU3QzQ2xrM2QybE5TelpWV1dkMmFVSjBUM3AwT0V4WFpFVmtlbG92UjFkclJ5OVFabXA2TUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE3ZTAyNjQ2LTFmNDYtNGYwNS04YzhkLWE0MDJmODAyZGU1Yy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBnbWxSWVZ2ZzhQbW1rZ1MzbWRZUWJiTnkwYXM3M0gycVVNcGJpbXVyQVRxNktIMm9EMkV3NGRPTw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJSZVUweGIxaEVWRTE2VFZSSmQwNTZSVEpOUkZGNVRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU2k4d0NuZFhTM1UyWlhSbEsyaHFWRTE1ZGxnNGJFbERPR0U0YjJOTVJWbEVNVWhqVUd4bGVtaEtNbWw2ZDB0Ukx6WllNRU5PWjJ4emF6WnJVWEk0V0hSTWIxa0tjV0ZyY2pnNFdqaDZLMDV0VWxOVE1YWkRTbTFSV1ZSTlExbFNVbFJPUnpGQlJWQmhPRWhSYlc4MGF5OVNiQ3R0YWpkMU5qTjBXa1JMYmtkdlFYUnBad3ByZERORVVtTjFjeTgwYW5ONWFFeGFjVU54YVZZME5VSjFZbVoxVmpsUWFIUnNWSFJLUVRnd1FXMWpOeTlSWTBzNWVIbDFUakF4UjFGQmVscFFlVTVsQ2psRFNIWm9WR1pwY3poelpsaG9iRXRDY3poTVJrMWlRVFpzTlhwaVVHeG9VREZ0VVVRMldUaHRSbVIyYkVKV01WSkdReTlKTURkRGRVVlhORGxHZFRrS01qSTViMEUwY1d0Rk4wWnVSVFo0WmtSdGVTdDVUbGd6U0ZOYWJqa3dXV2cwTm5WWVNEWk5iMUozV0hWd1dEWnplazAwWlVFMlNWWlZhVEUzUlhWNlZncFViREFyVkdsblN6ZGFkakJwTWtOeFYxZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlFOR1kzTDBJMVMyTXZTRGQwUjA5bWRrOXJRemsxTVRSa2IwaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZV3hzUkd0bWFERXJhM05EVUVJelUxUldOekphU0RVeVIyRnZWRk5pT1RCTFJDOTVRVGhvZVVKR1ptRTFWMnR0Undvdk0yNDJTbWhVUnpOSmNDOU5NRzE0V0ZaSU1XaGhUbVIyVDJVNVZtdHlhbk5rZDI5dE1TODNVVlEzU0N0cWFVWXZSR0ZSYzNock9WbDJPR3hMTVZSRkNuY3hibEpGSzNVMVRVc3dNWGxhVEdKMk1sUjZNak5MVWsxdFJDdDBRemRhUkhodVRub3dZalZGTmxaME5tSjNhSGx6V1ZkWUwyUlVTa2xhTDAweWJIWUtPRzloWlZwa00wOXNPREJIUWtKeWRWbGxaV3NyWVhoblVWVm1RMDkxWW5OeFQyUkpiV1JXWWtaeVRYaExSWFJKVlcwcmVtMTRhM1Z4WVZKRWFDdENSQXBJYzJOa05tRmxlaXNyT0c4eWJTdDZOemwyUTB4bWVVWm5ZVkp1WkVOcWJHNXZNME4zTTJWUUsyOVhZMDlHVkc0d2NpOUdOa001Y2poVGVVeGhiRGRKQ25OV2JVTTRhVlF3UVZGMFVYaEJMMFpVTWxoUk1UVmtUWFZQYVdWVmJ6bE1TakJVUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzZkYWVmMzlhLTBmZmItNGUxZS05NzE4LWRmNzkwYTkxNWEyZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIeVJlVFhEMHVENUM4R1B5NjlYSlJzU2lFRm1WSm12TzhCRFM3cTdtODVSS2tydjJaTWh1aU92aw==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -6840,7 +6246,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:07 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6850,7 +6256,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec3a54e9-29ae-4152-abad-f70c90bbc129
+ - b3c2d4d4-5042-4953-8e11-b3098465dabf
status: 200 OK
code: 200
duration: ""
@@ -6861,7 +6267,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}'
@@ -6873,7 +6279,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:07 GMT
+ - Fri, 08 Dec 2023 16:07:27 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6883,7 +6289,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 58480115-dbff-4ca9-82e1-c49eb46061f7
+ - ec3a3bd9-553f-4fad-9872-d17d4cab315d
status: 200 OK
code: 200
duration: ""
@@ -6894,7 +6300,7 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c/available-types
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d/available-types
method: GET
response:
body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}'
@@ -6906,7 +6312,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:07 GMT
+ - Fri, 08 Dec 2023 16:07:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6916,7 +6322,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7bec1df7-0bf2-4791-8a1f-49fe7765a837
+ - 06b42e98-68a0-4419-bf34-a9ffd2ec781d
status: 200 OK
code: 200
duration: ""
@@ -6927,10 +6333,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c?with_additional_resources=false
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d?with_additional_resources=false
method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:07.981228434Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:28.375399006Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1485"
@@ -6939,7 +6345,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:08 GMT
+ - Fri, 08 Dec 2023 16:07:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6949,7 +6355,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c776250-bb17-47a9-b484-f11043ceccf6
+ - 7dee644e-0e5a-4c9e-9e27-1a7e01652078
status: 200 OK
code: 200
duration: ""
@@ -6960,10 +6366,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:07.981228Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:28.375399Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -6972,7 +6378,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:08 GMT
+ - Fri, 08 Dec 2023 16:07:28 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -6982,7 +6388,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9b51e565-625b-4e8c-b4e6-d07ab59437e7
+ - fac2cbfb-6f32-421f-b44b-ee1c38920728
status: 200 OK
code: 200
duration: ""
@@ -6993,10 +6399,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://17e02646-1f46-4f05-8c8d-a402f802de5c.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-13T14:04:38.300949Z","created_at":"2023-11-13T14:03:15.115312Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.17e02646-1f46-4f05-8c8d-a402f802de5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"17e02646-1f46-4f05-8c8d-a402f802de5c","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-11-13T14:07:07.981228Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6daef39a-0ffb-4e1e-9718-df790a915a2d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2024-01-07T16:05:20.128305Z","created_at":"2023-12-08T16:04:22.014649Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6daef39a-0ffb-4e1e-9718-df790a915a2d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-12-08T16:07:28.375399Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1482"
@@ -7005,7 +6411,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:13 GMT
+ - Fri, 08 Dec 2023 16:07:33 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7015,7 +6421,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c1b640ab-a71c-4805-a46a-3059d6d81a07
+ - c7913501-0ac1-49e4-9d3f-d6a5e130a2eb
status: 200 OK
code: 200
duration: ""
@@ -7026,10 +6432,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/17e02646-1f46-4f05-8c8d-a402f802de5c
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6daef39a-0ffb-4e1e-9718-df790a915a2d
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"17e02646-1f46-4f05-8c8d-a402f802de5c","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"6daef39a-0ffb-4e1e-9718-df790a915a2d","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7038,7 +6444,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:18 GMT
+ - Fri, 08 Dec 2023 16:07:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7048,12 +6454,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a6eb8683-6aa6-41c4-a266-94a05e1a0166
+ - d752d531-51a6-4917-81d9-2e815f07e764
status: 404 Not Found
code: 404
duration: ""
- request:
- body: '{"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
+ body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":null,"admission_plugins":null,"apiserver_cert_sans":null}'
form: {}
headers:
Content-Type:
@@ -7064,7 +6470,7 @@ interactions:
url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters
method: POST
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362294Z","created_at":"2023-11-13T14:07:18.292362294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305064791Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261383Z","created_at":"2023-12-08T16:07:38.724261383Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734566748Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1479"
@@ -7073,40 +6479,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:18 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 845a9b6a-a103-43fa-85f1-d88b32ba2dd9
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1470"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:07:19 GMT
+ - Fri, 08 Dec 2023 16:07:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7116,7 +6489,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 96b54321-ae79-4d96-81b3-b4bfc331828e
+ - 89d53a62-57df-4cd1-86b7-95abd8f2bdb3
status: 200 OK
code: 200
duration: ""
@@ -7127,10 +6500,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7139,7 +6512,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:24 GMT
+ - Fri, 08 Dec 2023 16:07:38 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7149,7 +6522,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 27d7bc73-d254-4333-9de4-f6cea23505cc
+ - b089b1a5-faca-4b3d-b7d4-973ad19473d6
status: 200 OK
code: 200
duration: ""
@@ -7160,10 +6533,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7172,7 +6545,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:29 GMT
+ - Fri, 08 Dec 2023 16:07:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7182,7 +6555,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0c10e4a6-472d-46e1-bdc3-3f0f4631e638
+ - 440267aa-3e8c-40a9-bfbc-9acc2119f294
status: 200 OK
code: 200
duration: ""
@@ -7193,10 +6566,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7205,7 +6578,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:34 GMT
+ - Fri, 08 Dec 2023 16:07:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7215,7 +6588,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df3bfe56-7251-4402-803a-19b084002ced
+ - 160efd1f-30b7-466d-a569-0ceb0e066387
status: 200 OK
code: 200
duration: ""
@@ -7226,10 +6599,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7238,7 +6611,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:39 GMT
+ - Fri, 08 Dec 2023 16:07:54 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7248,7 +6621,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 85b88bb3-2393-40fe-b75f-b9bb73a00709
+ - b2414884-58dd-4bb3-8285-91c5b651aec8
status: 200 OK
code: 200
duration: ""
@@ -7259,10 +6632,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7271,7 +6644,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:44 GMT
+ - Fri, 08 Dec 2023 16:07:59 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7281,7 +6654,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 91965cad-74fc-4ac3-91a3-535bb291d1bf
+ - 8ef57089-51ee-45b6-9ebe-c52b3f5072e5
status: 200 OK
code: 200
duration: ""
@@ -7292,10 +6665,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7304,7 +6677,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:49 GMT
+ - Fri, 08 Dec 2023 16:08:04 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7314,7 +6687,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c309195e-97e5-4ba9-a059-637c16c74ca6
+ - 6d779c83-ab8f-45fb-8299-b29eb850addd
status: 200 OK
code: 200
duration: ""
@@ -7325,10 +6698,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7337,7 +6710,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:54 GMT
+ - Fri, 08 Dec 2023 16:08:09 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7347,7 +6720,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbfaac71-4149-4d70-8ab4-1d01810e3fb7
+ - e4c2c1b3-8e3c-40ab-86ff-bd78aaab1f12
status: 200 OK
code: 200
duration: ""
@@ -7358,10 +6731,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7370,7 +6743,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:07:59 GMT
+ - Fri, 08 Dec 2023 16:08:14 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7380,7 +6753,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc071e09-5b20-489a-84be-50a85bbe9b2d
+ - 96ccf12f-8312-4e9b-9641-f2326de0c1ff
status: 200 OK
code: 200
duration: ""
@@ -7391,10 +6764,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7403,7 +6776,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:04 GMT
+ - Fri, 08 Dec 2023 16:08:19 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7413,7 +6786,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 13de6c28-3f02-412c-9856-c8e09a60871a
+ - ba1d7fa4-5d5d-45a3-a5cc-03a4c7656d88
status: 200 OK
code: 200
duration: ""
@@ -7424,10 +6797,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7436,7 +6809,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:09 GMT
+ - Fri, 08 Dec 2023 16:08:24 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7446,7 +6819,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - beaa23af-92af-4d19-abc1-d66163dcc0d9
+ - bea1a786-3f92-40b9-8fc6-577a3761dadb
status: 200 OK
code: 200
duration: ""
@@ -7457,10 +6830,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7469,7 +6842,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:15 GMT
+ - Fri, 08 Dec 2023 16:08:29 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7479,7 +6852,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae128dc7-33b1-4fd4-bce9-cfe794be4fc7
+ - 406bc3ff-a7c2-4a13-ab45-9f0d6e4532e3
status: 200 OK
code: 200
duration: ""
@@ -7490,10 +6863,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7502,7 +6875,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:20 GMT
+ - Fri, 08 Dec 2023 16:08:34 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7512,7 +6885,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b46d1e6-9291-4388-97ee-7a23edd05bab
+ - b11d9fa9-0fd3-4e2f-98e4-ccef2dce0bd4
status: 200 OK
code: 200
duration: ""
@@ -7523,10 +6896,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7535,7 +6908,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:25 GMT
+ - Fri, 08 Dec 2023 16:08:39 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7545,7 +6918,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b5098010-5a57-4c2b-ad61-50374f40fdbb
+ - f1e34d67-6894-4638-a8ee-d2e1d93bebe4
status: 200 OK
code: 200
duration: ""
@@ -7556,10 +6929,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:07:38.734567Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7568,7 +6941,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:30 GMT
+ - Fri, 08 Dec 2023 16:08:44 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7578,7 +6951,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b8fdfe5f-7da8-4f69-8900-dfc2e5bc6412
+ - 11046269-7939-4ecb-8663-963f2e541cc4
status: 200 OK
code: 200
duration: ""
@@ -7589,19 +6962,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:46.434976Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1470"
+ - "1467"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:35 GMT
+ - Fri, 08 Dec 2023 16:08:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7611,7 +6984,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1dbb0b3-c651-41f8-97fe-50b95c6a9343
+ - 1e9d104e-9180-4dfb-a569-f60c9e58dd2b
status: 200 OK
code: 200
duration: ""
@@ -7622,19 +6995,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:46.434976Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1470"
+ - "1467"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:40 GMT
+ - Fri, 08 Dec 2023 16:08:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7644,7 +7017,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 908b2aef-77ed-40ae-970c-14c6959270a1
+ - 492a3634-a1a0-4952-aaf4-b6eb350b9ce3
status: 200 OK
code: 200
duration: ""
@@ -7655,19 +7028,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197/kubeconfig
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:07:18.305065Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJqTUUxR2IxaEVWRTE2VFZSSmQwNTZSVEpOUkdNd1RVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3eENrWjBWMGh6UmtKbGEzTnpObXdyZUd0eFdqQkxZMDFLWWxSbWRFVnBSVlpRY1ROSWNDczNjVlJTWnpGNlZ5dFRjM0o2TVdkMlZqUk1jM2wxYm5ndk1Fc0tVMUJIYjFBemRHcDJaMnhGVFZSbGFYRTJVMlJ5WW05blMxbEZSU3RDTjBOSmNEQnVlak5DY1cwNFJTOWhhbGxFVDBaNlduTTRTamw0VVd4dVpVRldUUXB5T0VoWWMwdFFlbTVuWWxGTldqVXhTRVU0TjJwTWFtMWhOV2hLTlVsR1dYbHRSVEZaV1d0cFFXVktWekZoWlhFeGVIcHBZMjVZVlZSSU1FNUVlWFJZQ214VFpFSmFMMlpMTTNObWNVSnhlVzlrUkhrNWNrb3pZa0pxVjBzdlJHZHNVVFUyZFdodGJtUXZXblkyTVVOTVMxZ3dkbmxYY0RGa2J6TlJZamM1Y0RjS2IwcHlLMkl6U2xCd1RtcGxhVlpSU2xaRFdWTjRlRWRsU0ZOemNWQlJjMHBqVEZkR2NDdE1hMngxV2xodE1GbFlUREpwVWt4cGMza3hObTVWZDBGdWNncGFTMnhoUnpkUU9FRktXbXRPVVd3dlIxaHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkdaazVNT1hWWUwwbFpibk5hUmtGRlNreE9OMjR3TlVOcFFXVk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNjVU5VVTFKRFNESnpVM1JTZEhSelZuTm9aVGhtYnpaaVNtVkdSalUxTTJsSFRtMXZPRFJEVjNkbWEzVjRTbXRHTmdweVpWZHZOVTVGYldKaldtd3hTRk5zVTNCb01VSllla2xFZDFNMWFuRkpRMWR0WlZWNFJIcHZXRkp0Vm1wSlpIaDZWSGg1WW5GUlUzRlhMMDlFUm1OT0NtZHpla0oyYVZKMlFYWkJXVkJEVEdSaVNrMUVaMDQzYlRCSWMzaEJTMnBZWlZZNGFVTXdOMWRVY0VFMFMwUXlZekU0YTI5bk5DdFJMMlphUjBkS1ZqWUtTV3cyVFhaVU9YcDFkbEZMYW1GQ1lVeEdNRWRqYnpWbFVWbHBWa3RIU0dad00zVkJjbVpDVFhWaFQycDFSWHBFVDJsdWNHTjZZVzlOU0RkeFdUaHdRZ3BZVUZGUlZGRjVUV1ZtTVRsWU1raGhkbmhPZGtSTWFYbHVOVkpMUjFwSlUzTnBUSGdyWVc5NmFWbGtjbGwwY0hac1lrWTJXbkpVVTBveU5EZ3ZVazAwQ2tsQ1JWSTNja2t5ZHpVNFIweHRWRzR5TDFwUFpVRndZMUpESzBZMVpsRmlLMGM1U3dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzg2N2I3MGYxLWMxMzEtNGU1NS1iYmYyLWNlY2RkYzc4NDE5Ny5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpWkY0VndqSVFHVDB3STZ2RzVsdnFDNHVLbFJNSWlsOTFiOG1qRUFVcWNKa1V0V24xZ3VacXJlQg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- - "1470"
+ - "2622"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:45 GMT
+ - Fri, 08 Dec 2023 16:08:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7677,7 +7050,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f4c2391-de3e-4330-8ade-49f19b316c6e
+ - d4949664-b5fc-4d46-95d2-fea7c26a2203
status: 200 OK
code: 200
duration: ""
@@ -7688,10 +7061,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:08:45.939401Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:46.434976Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1467"
@@ -7700,7 +7073,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:08:49 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7710,7 +7083,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 589be91e-55c0-4c0e-abb0-b9f980ea3b43
+ - 837bdf15-d89a-4ba1-83cb-dbe80d35bf63
status: 200 OK
code: 200
duration: ""
@@ -7721,10 +7094,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:08:45.939401Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:46.434976Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1467"
@@ -7733,7 +7106,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:08:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7743,7 +7116,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d303bf78-b4ac-4fdf-a072-50a151b5fad5
+ - c5152e26-27d2-48ca-afdb-da992781643e
status: 200 OK
code: 200
duration: ""
@@ -7754,10 +7127,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197/kubeconfig
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJqZUU5V2IxaEVWRTE2VFZSRmVFMXFSVEJOUkdONFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUZwQkNuZE5SeTlEUVZaVmVVVkdSRVZ2TDJwM0t6VXJTWFlyWW5jMlIxcHlWVkpSZW10MGRHdG9MMHh6V0hWalFsTjVMM0pWY0d0R05YVkZhMWQ2VVRRdlRWQUtPR2g2TUhSbFdEUnhaMWw2Ym14a1oycGtXVWQ1Y0ZsVVdYaEROVVoxTUVWaU1UZHNUMVpzU21JeVZVcGpjWE5aVmpSeVNqUmxNM2Q2T0hrclptSXdOQXBzUTFCUmFsaDZkMVpZVEhVclRsbDFiSFl2U1hsd1MwRktZVWx2T0dvMFNYVXdUa1JxUzJ4dVEwdE5PRzk0ZG1wd2JXSjZja2hEUlRsWWRWWnFOblJLQ2s5cVJGVjBVbVpuTHpCU09TOWxRbGhTU0dOcFJsQTVVR1ZpY0VOeE1EaHlPVGh1U2tsc1pIUTNSRkpvTlhSS2FIb3ZRVGh1YUhabFRFZDRhUzk0VjNJS1NHNTVkakE0VEZwSmVrbERReTl4TWxsUFNraFlZV1pSZEhsSFNURmtjVFE1S3padk9IVXlWVEJEU1VoYVRpc3hVa1p4ZFRscVRVTTBPVmRsZWxOeU13cE9PVmhJU0dOVGMxRnBWRnBpY2tsc2JHaHJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9lR05sV21wVVN6ZEJTek16YWpSR1VVOUlSMHBRTDBNNU5rNU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRlRlowTHpkVFRHdFBRMEZSVGtOUE1rWXdiMkZtU1RndlpEQmFNRVpUZWtSeE5tbHZUbk5MZERoRFRHaE5WMGt2T0FvNWFYbzNTRk5ZUW5oTE9GTlJaSGhJVWtwVWFuWlVRVEkzTVROT1dHSmFaVXd6VEZkaGFGaHBjakZNWmpGb2RrVTRUMkZKVEhGQmRXeDBOSFp5UlhwNkNubGFSR1o2ZEc1c1pXcHJRMk5aVkhaTVpUZHdSWE5KWkhoUE1FRlBURTFrUVVSWlpWUm1VVTFzUTI5dFVVdFlMM04xVm1ZNVF6RjJlSGgyZW5kaFdqZ0tXbTlwWW05RU0zWklNM2x2UjNsWmRuTnhSVkpVYlUxNGIxWktLek15VDJ4clZHRldWM1IwUmxkUU5YbDFaWG94TVdsdE9HTXdNblJYUVhaNWJsQlRPQW8wWlZGR1dHMDJXR1pyWXpWbmNYaHhlVVJqWm5aNVVHdzFUVVI2VjBKak1DOHhkREpCZGk5QlFVUjFUVU40UW14SVpHOTNiVVZ4S3pCT01qUk9UbVpZQ2tNclJsb3lXUzlSZGpGQlduZHdiemRUWTNoT1NWRmxSbVZ5ZFhveVJFaEVRMFZyTmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzNjZDYwZjBlLWYwZjMtNDA5My1hZTFiLThmNzE5ZjBmMWI5My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHV0xuSHhSREh0dkFDUlJJMzFnUlplVk1SVm94TDZpNjc5WWtqMzJuc2cwMkhSRWViUHRNWDVqVw==","content_type":"application/octet-stream","name":"kubeconfig"}'
+ body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVU1hkT2VrVXlUVVJqTUUxR2IxaEVWRTE2VFZSSmQwNTZSVEpOUkdNd1RVWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3eENrWjBWMGh6UmtKbGEzTnpObXdyZUd0eFdqQkxZMDFLWWxSbWRFVnBSVlpRY1ROSWNDczNjVlJTWnpGNlZ5dFRjM0o2TVdkMlZqUk1jM2wxYm5ndk1Fc0tVMUJIYjFBemRHcDJaMnhGVFZSbGFYRTJVMlJ5WW05blMxbEZSU3RDTjBOSmNEQnVlak5DY1cwNFJTOWhhbGxFVDBaNlduTTRTamw0VVd4dVpVRldUUXB5T0VoWWMwdFFlbTVuWWxGTldqVXhTRVU0TjJwTWFtMWhOV2hLTlVsR1dYbHRSVEZaV1d0cFFXVktWekZoWlhFeGVIcHBZMjVZVlZSSU1FNUVlWFJZQ214VFpFSmFMMlpMTTNObWNVSnhlVzlrUkhrNWNrb3pZa0pxVjBzdlJHZHNVVFUyZFdodGJtUXZXblkyTVVOTVMxZ3dkbmxYY0RGa2J6TlJZamM1Y0RjS2IwcHlLMkl6U2xCd1RtcGxhVlpSU2xaRFdWTjRlRWRsU0ZOemNWQlJjMHBqVEZkR2NDdE1hMngxV2xodE1GbFlUREpwVWt4cGMza3hObTVWZDBGdWNncGFTMnhoUnpkUU9FRktXbXRPVVd3dlIxaHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkdaazVNT1hWWUwwbFpibk5hUmtGRlNreE9OMjR3TlVOcFFXVk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNjVU5VVTFKRFNESnpVM1JTZEhSelZuTm9aVGhtYnpaaVNtVkdSalUxTTJsSFRtMXZPRFJEVjNkbWEzVjRTbXRHTmdweVpWZHZOVTVGYldKaldtd3hTRk5zVTNCb01VSllla2xFZDFNMWFuRkpRMWR0WlZWNFJIcHZXRkp0Vm1wSlpIaDZWSGg1WW5GUlUzRlhMMDlFUm1OT0NtZHpla0oyYVZKMlFYWkJXVkJEVEdSaVNrMUVaMDQzYlRCSWMzaEJTMnBZWlZZNGFVTXdOMWRVY0VFMFMwUXlZekU0YTI5bk5DdFJMMlphUjBkS1ZqWUtTV3cyVFhaVU9YcDFkbEZMYW1GQ1lVeEdNRWRqYnpWbFVWbHBWa3RIU0dad00zVkJjbVpDVFhWaFQycDFSWHBFVDJsdWNHTjZZVzlOU0RkeFdUaHdRZ3BZVUZGUlZGRjVUV1ZtTVRsWU1raGhkbmhPZGtSTWFYbHVOVkpMUjFwSlUzTnBUSGdyWVc5NmFWbGtjbGwwY0hac1lrWTJXbkpVVTBveU5EZ3ZVazAwQ2tsQ1JWSTNja2t5ZHpVNFIweHRWRzR5TDFwUFpVRndZMUpESzBZMVpsRmlLMGM1U3dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzg2N2I3MGYxLWMxMzEtNGU1NS1iYmYyLWNlY2RkYzc4NDE5Ny5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpWkY0VndqSVFHVDB3STZ2RzVsdnFDNHVLbFJNSWlsOTFiOG1qRUFVcWNKa1V0V24xZ3VacXJlQg==","content_type":"application/octet-stream","name":"kubeconfig"}'
headers:
Content-Length:
- "2622"
@@ -7766,7 +7139,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
+ - Fri, 08 Dec 2023 16:08:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7776,7 +7149,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01b8d39a-6ffe-40ee-b8db-0ff6cd69d4cc
+ - 7ecd42c3-28f0-42e5-990f-9d16d17cfbcf
status: 200 OK
code: 200
duration: ""
@@ -7787,52 +7160,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
- method: GET
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:08:45.939401Z","upgrade_available":false,"version":"1.28.2"}'
- headers:
- Content-Length:
- - "1467"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:50 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2103e382-2a53-4a07-b8a4-dfba4d484423
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
- method: GET
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197?with_additional_resources=false
+ method: DELETE
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:08:45.939401Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:50.741150398Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1467"
+ - "1473"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:08:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7842,7 +7182,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 664f04ec-7a0f-43ad-8e09-813bc82262e8
+ - cd6891df-efd8-4a8f-84d3-ab707bdbd54b
status: 200 OK
code: 200
duration: ""
@@ -7853,52 +7193,19 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93/kubeconfig
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUlhoTmFrVXdUVVJqZUU5V2IxaEVWRTE2VFZSRmVFMXFSVEJOUkdONFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVUZwQkNuZE5SeTlEUVZaVmVVVkdSRVZ2TDJwM0t6VXJTWFlyWW5jMlIxcHlWVkpSZW10MGRHdG9MMHh6V0hWalFsTjVMM0pWY0d0R05YVkZhMWQ2VVRRdlRWQUtPR2g2TUhSbFdEUnhaMWw2Ym14a1oycGtXVWQ1Y0ZsVVdYaEROVVoxTUVWaU1UZHNUMVpzU21JeVZVcGpjWE5aVmpSeVNqUmxNM2Q2T0hrclptSXdOQXBzUTFCUmFsaDZkMVpZVEhVclRsbDFiSFl2U1hsd1MwRktZVWx2T0dvMFNYVXdUa1JxUzJ4dVEwdE5PRzk0ZG1wd2JXSjZja2hEUlRsWWRWWnFOblJLQ2s5cVJGVjBVbVpuTHpCU09TOWxRbGhTU0dOcFJsQTVVR1ZpY0VOeE1EaHlPVGh1U2tsc1pIUTNSRkpvTlhSS2FIb3ZRVGh1YUhabFRFZDRhUzk0VjNJS1NHNTVkakE0VEZwSmVrbERReTl4TWxsUFNraFlZV1pSZEhsSFNURmtjVFE1S3padk9IVXlWVEJEU1VoYVRpc3hVa1p4ZFRscVRVTTBPVmRsZWxOeU13cE9PVmhJU0dOVGMxRnBWRnBpY2tsc2JHaHJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9lR05sV21wVVN6ZEJTek16YWpSR1VVOUlSMHBRTDBNNU5rNU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRlRlowTHpkVFRHdFBRMEZSVGtOUE1rWXdiMkZtU1RndlpEQmFNRVpUZWtSeE5tbHZUbk5MZERoRFRHaE5WMGt2T0FvNWFYbzNTRk5ZUW5oTE9GTlJaSGhJVWtwVWFuWlVRVEkzTVROT1dHSmFaVXd6VEZkaGFGaHBjakZNWmpGb2RrVTRUMkZKVEhGQmRXeDBOSFp5UlhwNkNubGFSR1o2ZEc1c1pXcHJRMk5aVkhaTVpUZHdSWE5KWkhoUE1FRlBURTFrUVVSWlpWUm1VVTFzUTI5dFVVdFlMM04xVm1ZNVF6RjJlSGgyZW5kaFdqZ0tXbTlwWW05RU0zWklNM2x2UjNsWmRuTnhSVkpVYlUxNGIxWktLek15VDJ4clZHRldWM1IwUmxkUU5YbDFaWG94TVdsdE9HTXdNblJYUVhaNWJsQlRPQW8wWlZGR1dHMDJXR1pyWXpWbmNYaHhlVVJqWm5aNVVHdzFUVVI2VjBKak1DOHhkREpCZGk5QlFVUjFUVU40UW14SVpHOTNiVVZ4S3pCT01qUk9UbVpZQ2tNclJsb3lXUzlSZGpGQlduZHdiemRUWTNoT1NWRmxSbVZ5ZFhveVJFaEVRMFZyTmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzNjZDYwZjBlLWYwZjMtNDA5My1hZTFiLThmNzE5ZjBmMWI5My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBHV0xuSHhSREh0dkFDUlJJMzFnUlplVk1SVm94TDZpNjc5WWtqMzJuc2cwMkhSRWViUHRNWDVqVw==","content_type":"application/octet-stream","name":"kubeconfig"}'
- headers:
- Content-Length:
- - "2622"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
- Server:
- - Scaleway API-Gateway
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cb7c32d7-8481-4436-ae42-6ae832b6d01a
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
- terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93?with_additional_resources=false
- method: DELETE
- response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:08:51.770422565Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:50.741150Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- - "1473"
+ - "1470"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:08:50 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7908,7 +7215,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 553a0556-3ac6-4044-a48a-c951f1766844
+ - c563856c-febc-40bb-8789-a44087484ecc
status: 200 OK
code: 200
duration: ""
@@ -7919,10 +7226,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-13T14:07:18.292362Z","created_at":"2023-11-13T14:07:18.292362Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-11-13T14:08:51.770423Z","upgrade_available":false,"version":"1.28.2"}'
+ body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://867b70f1-c131-4e55-bbf2-cecddc784197.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-12-08T16:07:38.724261Z","created_at":"2023-12-08T16:07:38.724261Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.867b70f1-c131-4e55-bbf2-cecddc784197.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"867b70f1-c131-4e55-bbf2-cecddc784197","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-12-08T16:08:50.741150Z","upgrade_available":false,"version":"1.28.2"}'
headers:
Content-Length:
- "1470"
@@ -7931,7 +7238,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:51 GMT
+ - Fri, 08 Dec 2023 16:08:55 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7941,7 +7248,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dfee8a16-f878-4ff9-bc63-495c96678294
+ - 458daa13-5b7c-4c53-b3a9-c367c741f6e3
status: 200 OK
code: 200
duration: ""
@@ -7952,10 +7259,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"867b70f1-c131-4e55-bbf2-cecddc784197","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7964,7 +7271,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:56 GMT
+ - Fri, 08 Dec 2023 16:09:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -7974,7 +7281,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - da7cc574-c503-4bb0-b498-2e238b8e99d1
+ - c9f3e188-013d-4dc5-97bb-3f27e0c55c70
status: 404 Not Found
code: 404
duration: ""
@@ -7985,10 +7292,10 @@ interactions:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop
terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/867b70f1-c131-4e55-bbf2-cecddc784197
method: GET
response:
- body: '{"message":"resource is not found","resource":"cluster","resource_id":"3cd60f0e-f0f3-4093-ae1b-8f719f0f1b93","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"cluster","resource_id":"867b70f1-c131-4e55-bbf2-cecddc784197","type":"not_found"}'
headers:
Content-Length:
- "128"
@@ -7997,7 +7304,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 13 Nov 2023 14:08:56 GMT
+ - Fri, 08 Dec 2023 16:09:00 GMT
Server:
- Scaleway API-Gateway
Strict-Transport-Security:
@@ -8007,7 +7314,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29d2ed4e-ce85-4d90-92ec-3562300b1106
+ - 3042413d-ce88-4792-8ba5-3a2dc3467d32
status: 404 Not Found
code: 404
duration: ""
diff --git a/scaleway/testdata/object-basic.cassette.yaml b/scaleway/testdata/object-basic.cassette.yaml
index 59fa10de5d..bf27e22529 100644
--- a/scaleway/testdata/object-basic.cassette.yaml
+++ b/scaleway/testdata/object-basic.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132612Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:14 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-basic-2102430731117639434
+ - /test-acc-scaleway-object-basic-7381733701336694871
X-Amz-Id-2:
- - tx8df0040810eb45078c442-0063ee2ef5
+ - txgb03aeca774ca4f1086d9-006571d027
X-Amz-Request-Id:
- - tx8df0040810eb45078c442-0063ee2ef5
+ - txgb03aeca774ca4f1086d9-006571d027
status: 200 OK
code: 200
duration: ""
@@ -46,28 +44,26 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132614Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:15 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txe1ebe0fc6d7b4d0e9f89c-0063ee2ef7
+ - txg00602bc936fd49108d6f-006571d028
X-Amz-Request-Id:
- - txe1ebe0fc6d7b4d0e9f89c-0063ee2ef7
- status: 204 No Content
- code: 204
+ - txg00602bc936fd49108d6f-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -76,28 +72,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132615Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:16 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txe3ca86822c2d49bfb4bdd-0063ee2ef7
+ - txgf1ecd3fa266043b78af8-006571d028
X-Amz-Request-Id:
- - txe3ca86822c2d49bfb4bdd-0063ee2ef7
+ - txgf1ecd3fa266043b78af8-006571d028
status: 200 OK
code: 200
duration: ""
@@ -110,56 +104,54 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132616Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:16 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx97f4efdd00a946f0954d8-0063ee2ef8
+ - txg43ee53f4bee247fda15b-006571d028
X-Amz-Request-Id:
- - tx97f4efdd00a946f0954d8-0063ee2ef8
- status: 204 No Content
- code: 204
+ - txg43ee53f4bee247fda15b-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132616Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:16 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txf988e51252a84ac8a08ca-0063ee2ef8
+ - txg9e5c42d6c9f247988c08-006571d028
X-Amz-Request-Id:
- - txf988e51252a84ac8a08ca-0063ee2ef8
+ - txg9e5c42d6c9f247988c08-006571d028
status: 200 OK
code: 200
duration: ""
@@ -168,26 +160,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132616Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx3f1c046a640f468482853-0063ee2ef8
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-7381733701336694871txg35587149e57f42f69b5e-006571d028
headers:
+ Content-Length:
+ - "268"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:16 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx3f1c046a640f468482853-0063ee2ef8
+ - txg35587149e57f42f69b5e-006571d028
X-Amz-Request-Id:
- - tx3f1c046a640f468482853-0063ee2ef8
+ - txg35587149e57f42f69b5e-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -196,28 +189,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132616Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-basic-21024307311176394341000false
+
+ test-acc-scaleway-object-basic-73817337013366948711000false
headers:
Content-Length:
- - "272"
+ - "276"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:17 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx41cf592226ba4aa293fd7-0063ee2ef8
+ - txg68634f4e72f0490da932-006571d028
X-Amz-Request-Id:
- - tx41cf592226ba4aa293fd7-0063ee2ef8
+ - txg68634f4e72f0490da932-006571d028
status: 200 OK
code: 200
duration: ""
@@ -226,26 +219,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132617Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:17 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txe5f0ecbcc45d47588cbf9-0063ee2ef9
+ - txgef20880fe25045079c89-006571d028
X-Amz-Request-Id:
- - txe5f0ecbcc45d47588cbf9-0063ee2ef9
+ - txgef20880fe25045079c89-006571d028
status: 200 OK
code: 200
duration: ""
@@ -254,26 +249,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132617Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx0c4adaaebaba4cbcbc90c-0063ee2ef9
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txg290d577c96fc4dafa8b7-006571d028
headers:
+ Content-Length:
+ - "236"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx0c4adaaebaba4cbcbc90c-0063ee2ef9
+ - txg290d577c96fc4dafa8b7-006571d028
X-Amz-Request-Id:
- - tx0c4adaaebaba4cbcbc90c-0063ee2ef9
+ - txg290d577c96fc4dafa8b7-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -282,28 +278,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132617Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txf474c81df23443538d284-0063ee2efa
+ - txg7ea2ff3946584e43bf96-006571d028
X-Amz-Request-Id:
- - txf474c81df23443538d284-0063ee2efa
+ - txg7ea2ff3946584e43bf96-006571d028
status: 200 OK
code: 200
duration: ""
@@ -312,26 +308,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132618Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txfb1bc3d3bf5c4a4782736-0063ee2efa
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txg1b2a9bf57450412f9611-006571d028
headers:
+ Content-Length:
+ - "246"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txfb1bc3d3bf5c4a4782736-0063ee2efa
+ - txg1b2a9bf57450412f9611-006571d028
X-Amz-Request-Id:
- - txfb1bc3d3bf5c4a4782736-0063ee2efa
+ - txg1b2a9bf57450412f9611-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -342,12 +339,12 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132618Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -357,17 +354,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:19 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txdcca019d060449ea8c5d1-0063ee2efa
+ - tx295863b1e7ff44c398643-006571d028
X-Amz-Request-Id:
- - txdcca019d060449ea8c5d1-0063ee2efa
+ - tx295863b1e7ff44c398643-006571d028
X-Amz-Version-Id:
- - "1676553978529703"
+ - "1701957672434502"
status: 200 OK
code: 200
duration: ""
@@ -376,12 +373,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132618Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -393,17 +390,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:19 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx6efbabc4f3bf4140a4382-0063ee2efb
+ - txgc93f5661dfe2472b9ab5-006571d028
X-Amz-Request-Id:
- - tx6efbabc4f3bf4140a4382-0063ee2efb
- X-Amz-Version-Id:
- - "1676553978529703"
+ - txgc93f5661dfe2472b9ab5-006571d028
status: 200 OK
code: 200
duration: ""
@@ -412,30 +407,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132619Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:19 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx3c871aa2fb304dbf9899f-0063ee2efb
+ - txg2d375e8ce81644389301-006571d028
X-Amz-Request-Id:
- - tx3c871aa2fb304dbf9899f-0063ee2efb
- X-Amz-Version-Id:
- - "1676553978529703"
+ - txg2d375e8ce81644389301-006571d028
status: 200 OK
code: 200
duration: ""
@@ -444,28 +437,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132619Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg15a094424b0449939750-006571d028
+ X-Amz-Request-Id:
+ - txg15a094424b0449939750-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:26:19 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx3a751622931241d7b6374-0063ee2efb
+ - txg1f463089f71e4825b90b-006571d028
X-Amz-Request-Id:
- - tx3a751622931241d7b6374-0063ee2efb
+ - txg1f463089f71e4825b90b-006571d028
status: 200 OK
code: 200
duration: ""
@@ -474,12 +495,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132619Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -491,17 +512,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:20 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx0685b8d1a35e4ddeb2e1d-0063ee2efb
+ - tx2cdeebd6f6aa43a4ada48-006571d028
X-Amz-Request-Id:
- - tx0685b8d1a35e4ddeb2e1d-0063ee2efb
+ - tx2cdeebd6f6aa43a4ada48-006571d028
X-Amz-Version-Id:
- - "1676553978529703"
+ - "1701957672434502"
status: 200 OK
code: 200
duration: ""
@@ -510,28 +531,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132620Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:20 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx09f6d72ef6034f31810a8-0063ee2efc
+ - txg0bf5c9e8d11a453fb816-006571d029
X-Amz-Request-Id:
- - tx09f6d72ef6034f31810a8-0063ee2efc
+ - txg0bf5c9e8d11a453fb816-006571d029
status: 200 OK
code: 200
duration: ""
@@ -540,26 +561,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132620Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx9321cf4dfef54d1387539-0063ee2efc
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-7381733701336694871txg00e584c1689e42c89319-006571d029
headers:
+ Content-Length:
+ - "268"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:21 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx9321cf4dfef54d1387539-0063ee2efc
+ - txg00e584c1689e42c89319-006571d029
X-Amz-Request-Id:
- - tx9321cf4dfef54d1387539-0063ee2efc
+ - txg00e584c1689e42c89319-006571d029
status: 404 Not Found
code: 404
duration: ""
@@ -568,28 +590,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132620Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-basic-21024307311176394341000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:26:18.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-basic-73817337013366948711000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "658"
+ - "670"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:21 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx2c4963f8a4c7471794fee-0063ee2efd
+ - txg3ca79743595544648d88-006571d029
X-Amz-Request-Id:
- - tx2c4963f8a4c7471794fee-0063ee2efd
+ - txg3ca79743595544648d88-006571d029
status: 200 OK
code: 200
duration: ""
@@ -598,26 +620,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132621Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:21 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - txe4137091e5124fdd8db1d-0063ee2efd
+ - txgb46986758faa45b48774-006571d029
X-Amz-Request-Id:
- - txe4137091e5124fdd8db1d-0063ee2efd
+ - txgb46986758faa45b48774-006571d029
status: 200 OK
code: 200
duration: ""
@@ -626,26 +650,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132621Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx673bca6141a248dea70a5-0063ee2efd
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txge327914e3c4946acab01-006571d029
headers:
+ Content-Length:
+ - "236"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:21 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx673bca6141a248dea70a5-0063ee2efd
+ - txge327914e3c4946acab01-006571d029
X-Amz-Request-Id:
- - tx673bca6141a248dea70a5-0063ee2efd
+ - txge327914e3c4946acab01-006571d029
status: 404 Not Found
code: 404
duration: ""
@@ -654,28 +679,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132621Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:22 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx3844593287904ef6aa1b9-0063ee2efd
+ - txg5ad5fb82598847d6ab1e-006571d029
X-Amz-Request-Id:
- - tx3844593287904ef6aa1b9-0063ee2efd
+ - txg5ad5fb82598847d6ab1e-006571d029
status: 200 OK
code: 200
duration: ""
@@ -684,26 +709,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132621Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx7bed26efd59a477d9d127-0063ee2efe
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txg6758de22a51048ba9c71-006571d02a
headers:
+ Content-Length:
+ - "246"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:22 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx7bed26efd59a477d9d127-0063ee2efe
+ - txg6758de22a51048ba9c71-006571d02a
X-Amz-Request-Id:
- - tx7bed26efd59a477d9d127-0063ee2efe
+ - txg6758de22a51048ba9c71-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -712,12 +738,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132622Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -729,17 +755,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:22 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx645b186efd3f42c3add32-0063ee2efe
+ - txgc1c6529bded24d7284ab-006571d02a
X-Amz-Request-Id:
- - tx645b186efd3f42c3add32-0063ee2efe
- X-Amz-Version-Id:
- - "1676553978529703"
+ - txgc1c6529bded24d7284ab-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -748,30 +772,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132622Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:22 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx6901abc416414a098c633-0063ee2efe
+ - txgb7951ed3813a4911a158-006571d02a
X-Amz-Request-Id:
- - tx6901abc416414a098c633-0063ee2efe
- X-Amz-Version-Id:
- - "1676553978529703"
+ - txgb7951ed3813a4911a158-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -780,28 +802,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132622Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:23 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx572686f51dd8420f977b5-0063ee2efe
+ - txg128d356814144e13ab13-006571d02a
X-Amz-Request-Id:
- - tx572686f51dd8420f977b5-0063ee2efe
+ - txg128d356814144e13ab13-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -810,28 +832,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132623Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:23 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx150a908b96aa48ff8c66a-0063ee2eff
+ - txgebec01f4f3da4be388ce-006571d02b
X-Amz-Request-Id:
- - tx150a908b96aa48ff8c66a-0063ee2eff
+ - txgebec01f4f3da4be388ce-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -840,26 +862,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132623Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx3262d288da6443358d0bb-0063ee2eff
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-7381733701336694871txgde44eeebbd0b4067835c-006571d02b
headers:
+ Content-Length:
+ - "268"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:23 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx3262d288da6443358d0bb-0063ee2eff
+ - txgde44eeebbd0b4067835c-006571d02b
X-Amz-Request-Id:
- - tx3262d288da6443358d0bb-0063ee2eff
+ - txgde44eeebbd0b4067835c-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -868,28 +891,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132623Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-basic-21024307311176394341000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:26:18.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-basic-73817337013366948711000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "658"
+ - "670"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:23 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx006f460eb8e94c74871eb-0063ee2eff
+ - txg90296ce0e7e44d38a2ce-006571d02b
X-Amz-Request-Id:
- - tx006f460eb8e94c74871eb-0063ee2eff
+ - txg90296ce0e7e44d38a2ce-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -898,26 +921,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132623Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:24 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx45a0ab78e6f24a59b8307-0063ee2f00
+ - txgb4e121e2bcbf4898b9b0-006571d02b
X-Amz-Request-Id:
- - tx45a0ab78e6f24a59b8307-0063ee2f00
+ - txgb4e121e2bcbf4898b9b0-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -926,26 +951,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132624Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx7213883a097e492ea781e-0063ee2f01
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txged02176ff338454e83cc-006571d02b
headers:
+ Content-Length:
+ - "236"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:25 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx7213883a097e492ea781e-0063ee2f01
+ - txged02176ff338454e83cc-006571d02b
X-Amz-Request-Id:
- - tx7213883a097e492ea781e-0063ee2f01
+ - txged02176ff338454e83cc-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -954,28 +980,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132625Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:25 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txc7ca79162d2b49c5b15ba-0063ee2f01
+ - txgf178410cd0fc4794b800-006571d02b
X-Amz-Request-Id:
- - txc7ca79162d2b49c5b15ba-0063ee2f01
+ - txgf178410cd0fc4794b800-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -984,26 +1010,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132625Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx971ffc3d84b04788a94bf-0063ee2f01
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txg4f622bd53d3f4cada83c-006571d02b
headers:
+ Content-Length:
+ - "246"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:25 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx971ffc3d84b04788a94bf-0063ee2f01
+ - txg4f622bd53d3f4cada83c-006571d02b
X-Amz-Request-Id:
- - tx971ffc3d84b04788a94bf-0063ee2f01
+ - txg4f622bd53d3f4cada83c-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -1012,12 +1039,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132625Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1029,17 +1056,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:25 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:18 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx7201e777e5d648f2874d9-0063ee2f01
+ - txg972a3cc5d3fb43bda17b-006571d02b
X-Amz-Request-Id:
- - tx7201e777e5d648f2874d9-0063ee2f01
- X-Amz-Version-Id:
- - "1676553978529703"
+ - txg972a3cc5d3fb43bda17b-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1048,30 +1073,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132625Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:26 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx6675c194f96d41b18908c-0063ee2f02
+ - txgf72a9b787e2e4e06ae25-006571d02b
X-Amz-Request-Id:
- - tx6675c194f96d41b18908c-0063ee2f02
- X-Amz-Version-Id:
- - "1676553978529703"
+ - txgf72a9b787e2e4e06ae25-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1080,28 +1103,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132626Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:26 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txf287b3f15f804bd1833da-0063ee2f02
+ - txg7eecf01022e24459978d-006571d02b
X-Amz-Request-Id:
- - txf287b3f15f804bd1833da-0063ee2f02
+ - txg7eecf01022e24459978d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1110,36 +1133,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-basic-2102430731117639434/myfile
+ - test-acc-scaleway-object-basic-7381733701336694871/myfile
X-Amz-Date:
- - 20230216T132626Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: PUT
response:
body: |-
- 2023-02-16T13:26:27.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:16.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:27 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:26:27 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - txddac31e2bd674048bf3c0-0063ee2f03
+ - tx19a02834009341b2a0a2c-006571d02c
X-Amz-Request-Id:
- - txddac31e2bd674048bf3c0-0063ee2f03
+ - tx19a02834009341b2a0a2c-006571d02c
X-Amz-Version-Id:
- - "1676553978529703"
+ - "1701957672434502"
status: 200 OK
code: 200
duration: ""
@@ -1148,26 +1171,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132627Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:27 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - tx58b15558362449dea5b31-0063ee2f03
+ - txgb99c8af2047b4b3fbef6-006571d02c
X-Amz-Request-Id:
- - tx58b15558362449dea5b31-0063ee2f03
+ - txgb99c8af2047b4b3fbef6-006571d02c
status: 204 No Content
code: 204
duration: ""
@@ -1178,14 +1197,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132627Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: PUT
response:
body: ""
@@ -1195,17 +1214,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - tx14fb86e6c7a949cebe912-0063ee2f03
+ - tx77b5a8b387024caa850b4-006571d02c
X-Amz-Request-Id:
- - tx14fb86e6c7a949cebe912-0063ee2f03
+ - tx77b5a8b387024caa850b4-006571d02c
X-Amz-Version-Id:
- - "1676553988594656"
+ - "1701957676868864"
status: 200 OK
code: 200
duration: ""
@@ -1214,12 +1233,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132628Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: HEAD
response:
body: ""
@@ -1231,17 +1250,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - txab444797155f4e84a679f-0063ee2f04
+ - txg457add29fd6c4f8aa1b9-006571d02d
X-Amz-Request-Id:
- - txab444797155f4e84a679f-0063ee2f04
- X-Amz-Version-Id:
- - "1676553988594656"
+ - txg457add29fd6c4f8aa1b9-006571d02d
status: 200 OK
code: 200
duration: ""
@@ -1250,30 +1267,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132628Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo?tagging=
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:29 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - txd2acb5ef9ff64b3197880-0063ee2f04
+ - txgb3d487cc3b3f40a6b037-006571d02d
X-Amz-Request-Id:
- - txd2acb5ef9ff64b3197880-0063ee2f04
- X-Amz-Version-Id:
- - "1676553988594656"
+ - txgb3d487cc3b3f40a6b037-006571d02d
status: 200 OK
code: 200
duration: ""
@@ -1282,28 +1297,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132629Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo?acl=
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:17 GMT
+ X-Amz-Id-2:
+ - txgc356d7727ad94236b1be-006571d02d
+ X-Amz-Request-Id:
+ - txgc356d7727ad94236b1be-006571d02d
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:26:29 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx3d4923f1018241be9951e-0063ee2f05
+ - txgc2c18def9e724aa1a7aa-006571d02d
X-Amz-Request-Id:
- - tx3d4923f1018241be9951e-0063ee2f05
+ - txgc2c18def9e724aa1a7aa-006571d02d
status: 200 OK
code: 200
duration: ""
@@ -1312,12 +1355,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132629Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: GET
response:
body: ""
@@ -1329,17 +1372,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:29 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - tx2183e20b54834b8093640-0063ee2f05
+ - tx049e3da5ec4b4578b2597-006571d02d
X-Amz-Request-Id:
- - tx2183e20b54834b8093640-0063ee2f05
+ - tx049e3da5ec4b4578b2597-006571d02d
X-Amz-Version-Id:
- - "1676553988594656"
+ - "1701957676868864"
status: 200 OK
code: 200
duration: ""
@@ -1348,28 +1391,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132629Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:30 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx2e3d9a2f30354b1986676-0063ee2f06
+ - txga2c742ccb04940428881-006571d02e
X-Amz-Request-Id:
- - tx2e3d9a2f30354b1986676-0063ee2f06
+ - txga2c742ccb04940428881-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1378,26 +1421,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132630Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx23640bf251594498b6838-0063ee2f06
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-7381733701336694871txg4c094a6a2b5e413193b8-006571d02e
headers:
+ Content-Length:
+ - "268"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:30 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx23640bf251594498b6838-0063ee2f06
+ - txg4c094a6a2b5e413193b8-006571d02e
X-Amz-Request-Id:
- - tx23640bf251594498b6838-0063ee2f06
+ - txg4c094a6a2b5e413193b8-006571d02e
status: 404 Not Found
code: 404
duration: ""
@@ -1406,28 +1450,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132630Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-basic-21024307311176394341000false"d41d8cd98f00b204e9800998ecf8427e"myfile/foo2023-02-16T13:26:28.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-basic-73817337013366948711000falsemyfile/foo2023-12-07T14:01:16.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "662"
+ - "674"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:31 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txffe6af74b2cd42bf9a1bf-0063ee2f06
+ - txg267794c491d64480bb3b-006571d02e
X-Amz-Request-Id:
- - txffe6af74b2cd42bf9a1bf-0063ee2f06
+ - txg267794c491d64480bb3b-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1436,26 +1480,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132631Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:31 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx363b6e028e0c4fc2b0394-0063ee2f07
+ - txg210c72f6ae3641dda51e-006571d02e
X-Amz-Request-Id:
- - tx363b6e028e0c4fc2b0394-0063ee2f07
+ - txg210c72f6ae3641dda51e-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1464,26 +1510,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132631Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxcbd1742cd2ad4bbab7838-0063ee2f07
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txgc46b3aaa3f5048b3b57c-006571d02e
headers:
+ Content-Length:
+ - "236"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:31 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txcbd1742cd2ad4bbab7838-0063ee2f07
+ - txgc46b3aaa3f5048b3b57c-006571d02e
X-Amz-Request-Id:
- - txcbd1742cd2ad4bbab7838-0063ee2f07
+ - txgc46b3aaa3f5048b3b57c-006571d02e
status: 404 Not Found
code: 404
duration: ""
@@ -1492,28 +1539,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132631Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:31 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txddd15d11d3f94fd7a8bce-0063ee2f07
+ - txg72b853d75fbd4b02a511-006571d02e
X-Amz-Request-Id:
- - txddd15d11d3f94fd7a8bce-0063ee2f07
+ - txg72b853d75fbd4b02a511-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1522,26 +1569,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132631Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx2bdb1e01761d44c8b1b3c-0063ee2f07
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txgb5960da1ed6041118463-006571d02e
headers:
+ Content-Length:
+ - "246"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:32 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx2bdb1e01761d44c8b1b3c-0063ee2f07
+ - txgb5960da1ed6041118463-006571d02e
X-Amz-Request-Id:
- - tx2bdb1e01761d44c8b1b3c-0063ee2f07
+ - txgb5960da1ed6041118463-006571d02e
status: 404 Not Found
code: 404
duration: ""
@@ -1550,12 +1598,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132631Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: HEAD
response:
body: ""
@@ -1567,17 +1615,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:32 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - txea0adb8dac0b4d5ca0d83-0063ee2f08
+ - txga9434030a52541cb94b3-006571d02f
X-Amz-Request-Id:
- - txea0adb8dac0b4d5ca0d83-0063ee2f08
- X-Amz-Version-Id:
- - "1676553988594656"
+ - txga9434030a52541cb94b3-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1586,30 +1632,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132632Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo?tagging=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:32 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - txdc9b23184b7b47958baee-0063ee2f08
+ - txg011e2e7076784dbca9b4-006571d02f
X-Amz-Request-Id:
- - txdc9b23184b7b47958baee-0063ee2f08
- X-Amz-Version-Id:
- - "1676553988594656"
+ - txg011e2e7076784dbca9b4-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1618,28 +1662,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132632Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo?acl=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:32 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx9c84e46f9dbc45ebb4490-0063ee2f08
+ - txgac2158f6ae2847c1a87a-006571d02f
X-Amz-Request-Id:
- - tx9c84e46f9dbc45ebb4490-0063ee2f08
+ - txgac2158f6ae2847c1a87a-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1648,28 +1692,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132632Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:32 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx49e85905eab4465d91353-0063ee2f08
+ - txgf787d28746774ae3bd8f-006571d030
X-Amz-Request-Id:
- - tx49e85905eab4465d91353-0063ee2f08
+ - txgf787d28746774ae3bd8f-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1678,26 +1722,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132632Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxcc4c2ea5916c4b63b1bf5-0063ee2f08
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-7381733701336694871txg7760003acf6f4406a7da-006571d030
headers:
+ Content-Length:
+ - "268"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:32 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txcc4c2ea5916c4b63b1bf5-0063ee2f08
+ - txg7760003acf6f4406a7da-006571d030
X-Amz-Request-Id:
- - txcc4c2ea5916c4b63b1bf5-0063ee2f08
+ - txg7760003acf6f4406a7da-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1706,28 +1751,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132632Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-basic-21024307311176394341000false"d41d8cd98f00b204e9800998ecf8427e"myfile/foo2023-02-16T13:26:28.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-basic-73817337013366948711000falsemyfile/foo2023-12-07T14:01:16.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "662"
+ - "674"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:33 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx0173d9e674344c6aa3ce9-0063ee2f08
+ - txg003466d384784ebbae6d-006571d030
X-Amz-Request-Id:
- - tx0173d9e674344c6aa3ce9-0063ee2f08
+ - txg003466d384784ebbae6d-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1736,26 +1781,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132633Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:33 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx80cba35d78484e9095007-0063ee2f09
+ - txgec62c7f1dc1043b88efd-006571d030
X-Amz-Request-Id:
- - tx80cba35d78484e9095007-0063ee2f09
+ - txgec62c7f1dc1043b88efd-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1764,26 +1811,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132634Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxdc32a3e9930641888b4ce-0063ee2f0a
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txg32321e6c0e5f44acb244-006571d030
headers:
+ Content-Length:
+ - "236"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:36 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txdc32a3e9930641888b4ce-0063ee2f0a
+ - txg32321e6c0e5f44acb244-006571d030
X-Amz-Request-Id:
- - txdc32a3e9930641888b4ce-0063ee2f0a
+ - txg32321e6c0e5f44acb244-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1792,28 +1840,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132636Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:36 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txa2e8da44d1dc47a3a167c-0063ee2f0c
+ - txgde0c4deb66fc44f1bdf1-006571d030
X-Amz-Request-Id:
- - txa2e8da44d1dc47a3a167c-0063ee2f0c
+ - txgde0c4deb66fc44f1bdf1-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1822,26 +1870,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132636Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txaa09e520627b4337a915b-0063ee2f0c
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txgcb60892ec86745c69aa7-006571d030
headers:
+ Content-Length:
+ - "246"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:36 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txaa09e520627b4337a915b-0063ee2f0c
+ - txgcb60892ec86745c69aa7-006571d030
X-Amz-Request-Id:
- - txaa09e520627b4337a915b-0063ee2f0c
+ - txgcb60892ec86745c69aa7-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1850,12 +1899,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132636Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: HEAD
response:
body: ""
@@ -1867,17 +1916,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:37 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:28 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - txdb8c65c190624578a203a-0063ee2f0c
+ - txg0d820c943c884343938a-006571d030
X-Amz-Request-Id:
- - txdb8c65c190624578a203a-0063ee2f0c
- X-Amz-Version-Id:
- - "1676553988594656"
+ - txg0d820c943c884343938a-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1886,30 +1933,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132637Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:37 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx257895d0f3b543bfb59a8-0063ee2f0d
+ - txgac5f804cd20842c89fa9-006571d030
X-Amz-Request-Id:
- - tx257895d0f3b543bfb59a8-0063ee2f0d
- X-Amz-Version-Id:
- - "1676553988594656"
+ - txgac5f804cd20842c89fa9-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1918,28 +1963,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132637Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:37 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txca2806a76cb74ccd9f106-0063ee2f0d
+ - txgf21d7c13bdac4274b885-006571d030
X-Amz-Request-Id:
- - txca2806a76cb74ccd9f106-0063ee2f0d
+ - txgf21d7c13bdac4274b885-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1948,36 +1993,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-basic-2102430731117639434/myfile/foo
+ - test-acc-scaleway-object-basic-7381733701336694871/myfile/foo
X-Amz-Date:
- - 20230216T132637Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar
method: PUT
response:
body: |-
- 2023-02-16T13:26:37.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:22.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:26:37 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx088fb981b08d4f09a7da5-0063ee2f0d
+ - tx63166e32da564ccb851dd-006571d032
X-Amz-Request-Id:
- - tx088fb981b08d4f09a7da5-0063ee2f0d
+ - tx63166e32da564ccb851dd-006571d032
X-Amz-Version-Id:
- - "1676553988594656"
+ - "1701957676868864"
status: 200 OK
code: 200
duration: ""
@@ -1986,26 +2031,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132638Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx5346639ad329428abd13e-0063ee2f0e
+ - txg41e0231998c94a81b20b-006571d032
X-Amz-Request-Id:
- - tx5346639ad329428abd13e-0063ee2f0e
+ - txg41e0231998c94a81b20b-006571d032
status: 204 No Content
code: 204
duration: ""
@@ -2016,14 +2057,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132638Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar
method: PUT
response:
body: ""
@@ -2033,17 +2074,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx3ba9fa3cf73e4b69893b0-0063ee2f0e
+ - txb6efb5a1cc5440758ca4b-006571d032
X-Amz-Request-Id:
- - tx3ba9fa3cf73e4b69893b0-0063ee2f0e
+ - txb6efb5a1cc5440758ca4b-006571d032
X-Amz-Version-Id:
- - "1676553998740497"
+ - "1701957682813542"
status: 200 OK
code: 200
duration: ""
@@ -2052,12 +2093,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132638Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar
method: HEAD
response:
body: ""
@@ -2069,17 +2110,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:39 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx8b6a7d1d12d5463f9faa9-0063ee2f0e
+ - txg22d12cf761c14e2da01f-006571d032
X-Amz-Request-Id:
- - tx8b6a7d1d12d5463f9faa9-0063ee2f0e
- X-Amz-Version-Id:
- - "1676553998740497"
+ - txg22d12cf761c14e2da01f-006571d032
status: 200 OK
code: 200
duration: ""
@@ -2088,30 +2127,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132639Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar?tagging=
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:39 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx51019989e7a248cdb63c6-0063ee2f0f
+ - txg9d27451732544f60adc7-006571d032
X-Amz-Request-Id:
- - tx51019989e7a248cdb63c6-0063ee2f0f
- X-Amz-Version-Id:
- - "1676553998740497"
+ - txg9d27451732544f60adc7-006571d032
status: 200 OK
code: 200
duration: ""
@@ -2120,28 +2157,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132639Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar?acl=
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:39 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx195c783a1a21492ab295e-0063ee2f0f
+ - txgdbfb5c1717414a1d91ae-006571d032
X-Amz-Request-Id:
- - tx195c783a1a21492ab295e-0063ee2f0f
+ - txgdbfb5c1717414a1d91ae-006571d032
status: 200 OK
code: 200
duration: ""
@@ -2150,12 +2187,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132639Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:23 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txga2a251431343436c93cf-006571d033
+ X-Amz-Request-Id:
+ - txga2a251431343436c93cf-006571d033
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar
method: GET
response:
body: ""
@@ -2167,17 +2232,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:41 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx95652e6a373f45338fcea-0063ee2f0f
+ - txa3fdb13035e14148a309c-006571d033
X-Amz-Request-Id:
- - tx95652e6a373f45338fcea-0063ee2f0f
+ - txa3fdb13035e14148a309c-006571d033
X-Amz-Version-Id:
- - "1676553998740497"
+ - "1701957682813542"
status: 200 OK
code: 200
duration: ""
@@ -2186,28 +2251,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132641Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:41 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx328edf640772482fb7256-0063ee2f11
+ - txg93cb9cc2ffc84739bec8-006571d034
X-Amz-Request-Id:
- - tx328edf640772482fb7256-0063ee2f11
+ - txg93cb9cc2ffc84739bec8-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2216,26 +2281,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132641Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxb5855f8193814ed586e7a-0063ee2f11
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-7381733701336694871txg69d8d03a500b46a1abbb-006571d034
headers:
+ Content-Length:
+ - "268"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:41 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - txb5855f8193814ed586e7a-0063ee2f11
+ - txg69d8d03a500b46a1abbb-006571d034
X-Amz-Request-Id:
- - txb5855f8193814ed586e7a-0063ee2f11
+ - txg69d8d03a500b46a1abbb-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -2244,28 +2310,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132641Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-basic-21024307311176394341000false"d41d8cd98f00b204e9800998ecf8427e"myfile/foo/bar2023-02-16T13:26:38.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-basic-73817337013366948711000falsemyfile/foo/bar2023-12-07T14:01:22.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "666"
+ - "678"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx901e6dbc872640798e86e-0063ee2f11
+ - txg58884152d5204ff082ae-006571d034
X-Amz-Request-Id:
- - tx901e6dbc872640798e86e-0063ee2f11
+ - txg58884152d5204ff082ae-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2274,26 +2340,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132641Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - txddb254fe74d844349be3d-0063ee2f12
+ - txg13415aab4bac49b9b22c-006571d034
X-Amz-Request-Id:
- - txddb254fe74d844349be3d-0063ee2f12
+ - txg13415aab4bac49b9b22c-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2302,26 +2370,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132642Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx6de61ae9b623452393b39-0063ee2f12
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txga542035052404922bfe6-006571d034
headers:
+ Content-Length:
+ - "236"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx6de61ae9b623452393b39-0063ee2f12
+ - txga542035052404922bfe6-006571d034
X-Amz-Request-Id:
- - tx6de61ae9b623452393b39-0063ee2f12
+ - txga542035052404922bfe6-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -2330,28 +2399,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132642Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx341a3f2815374ea28fa96-0063ee2f12
+ - txg3f3e2b223f704841aef4-006571d034
X-Amz-Request-Id:
- - tx341a3f2815374ea28fa96-0063ee2f12
+ - txg3f3e2b223f704841aef4-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2360,26 +2429,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132642Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx4f1bc43216dc476eb2d1a-0063ee2f12
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-7381733701336694871txga613e719362f485b9c2b-006571d034
headers:
+ Content-Length:
+ - "246"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx4f1bc43216dc476eb2d1a-0063ee2f12
+ - txga613e719362f485b9c2b-006571d034
X-Amz-Request-Id:
- - tx4f1bc43216dc476eb2d1a-0063ee2f12
+ - txga613e719362f485b9c2b-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -2388,12 +2458,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132642Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar
method: HEAD
response:
body: ""
@@ -2405,17 +2475,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:38 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx4e35027a806a47caa44a8-0063ee2f12
+ - txg24bed41442a841fc962c-006571d034
X-Amz-Request-Id:
- - tx4e35027a806a47caa44a8-0063ee2f12
- X-Amz-Version-Id:
- - "1676553998740497"
+ - txg24bed41442a841fc962c-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2424,30 +2492,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132642Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar?tagging=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:42 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - txa7ae947056b94b3bba095-0063ee2f12
+ - txg4c4b5f40c8ae446cac9e-006571d034
X-Amz-Request-Id:
- - txa7ae947056b94b3bba095-0063ee2f12
- X-Amz-Version-Id:
- - "1676553998740497"
+ - txg4c4b5f40c8ae446cac9e-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2456,28 +2522,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132643Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar?acl=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:43 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx51390b01f9f749bcbc386-0063ee2f13
+ - txg7187c490fff64aceb0e9-006571d034
X-Amz-Request-Id:
- - tx51390b01f9f749bcbc386-0063ee2f13
+ - txg7187c490fff64aceb0e9-006571d034
status: 200 OK
code: 200
duration: ""
@@ -2486,26 +2552,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132643Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/myfile/foo/bar
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/myfile/foo/bar
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:44 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txf93c040b9c1b4e1497d8b-0063ee2f14
+ - txg06927de64e9141768bff-006571d035
X-Amz-Request-Id:
- - txf93c040b9c1b4e1497d8b-0063ee2f14
+ - txg06927de64e9141768bff-006571d035
status: 204 No Content
code: 204
duration: ""
@@ -2514,12 +2576,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132644Z
- url: https://test-acc-scaleway-object-basic-2102430731117639434.s3.fr-par.scw.cloud/
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-basic-7381733701336694871.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -2529,11 +2591,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:45 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txfb2fcb5c731e4ca5ae6a7-0063ee2f14
+ - tx5fadbcd1af5545e6bead4-006571d035
X-Amz-Request-Id:
- - txfb2fcb5c731e4ca5ae6a7-0063ee2f14
+ - tx5fadbcd1af5545e6bead4-006571d035
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-by-content-base64.cassette.yaml b/scaleway/testdata/object-by-content-base64.cassette.yaml
index ab117c8f2c..f2cbe47fca 100644
--- a/scaleway/testdata/object-by-content-base64.cassette.yaml
+++ b/scaleway/testdata/object-by-content-base64.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230621T121835Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:18:36 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-by-content-base64-3853413717852428690
+ - /test-acc-scaleway-object-by-content-base64-6523079576061900725
X-Amz-Id-2:
- - tx05fc34e298a74e82a7518-006492ea9b
+ - txg87e9dc746b924496bfa9-006571d027
X-Amz-Request-Id:
- - tx05fc34e298a74e82a7518-006492ea9b
+ - txg87e9dc746b924496bfa9-006571d027
status: 200 OK
code: 200
duration: ""
@@ -44,28 +42,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121836Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:18:36 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
X-Amz-Id-2:
- - tx53833c483fb74f079475b-006492ea9c
+ - txg9302c02bf7fb4c198973-006571d027
X-Amz-Request-Id:
- - tx53833c483fb74f079475b-006492ea9c
+ - txg9302c02bf7fb4c198973-006571d027
status: 200 OK
code: 200
duration: ""
@@ -74,28 +70,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121836Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:37 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
X-Amz-Id-2:
- - txb9fa075da84a46a299dd7-006492ea9c
+ - txg36b2c557069c49279032-006571d027
X-Amz-Request-Id:
- - txb9fa075da84a46a299dd7-006492ea9c
+ - txg36b2c557069c49279032-006571d027
status: 200 OK
code: 200
duration: ""
@@ -104,26 +100,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121837Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxa60b93fedef94ff795ead-006492ea9d
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-base64-6523079576061900725txg94eee5038cb443d29d5d-006571d028
headers:
+ Content-Length:
+ - "280"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:37 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa60b93fedef94ff795ead-006492ea9d
+ - txg94eee5038cb443d29d5d-006571d028
X-Amz-Request-Id:
- - txa60b93fedef94ff795ead-006492ea9d
+ - txg94eee5038cb443d29d5d-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -132,28 +129,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121837Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-base64-38534137178524286901000false
+
+ test-acc-scaleway-object-by-content-base64-65230795760619007251000false
headers:
Content-Length:
- - "284"
+ - "288"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:37 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx52da32accfdb40cc9d38b-006492ea9d
+ - txg9e5a9127bdd547b5842e-006571d028
X-Amz-Request-Id:
- - tx52da32accfdb40cc9d38b-006492ea9d
+ - txg9e5a9127bdd547b5842e-006571d028
status: 200 OK
code: 200
duration: ""
@@ -162,26 +159,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121837Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx6c039ef1751d4979b2d4d-006492ea9d
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg3313048a72e34e20a759-006571d028
headers:
+ Content-Length:
+ - "225"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:37 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx6c039ef1751d4979b2d4d-006492ea9d
+ - txg3313048a72e34e20a759-006571d028
X-Amz-Request-Id:
- - tx6c039ef1751d4979b2d4d-006492ea9d
+ - txg3313048a72e34e20a759-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -190,26 +187,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121837Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx59e2a60d7eb5491990298-006492ea9d
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg59a7e4b7967a4165a31a-006571d028
headers:
+ Content-Length:
+ - "248"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:37 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx59e2a60d7eb5491990298-006492ea9d
+ - txg59a7e4b7967a4165a31a-006571d028
X-Amz-Request-Id:
- - tx59e2a60d7eb5491990298-006492ea9d
+ - txg59a7e4b7967a4165a31a-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -218,28 +216,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121837Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txebe058db4ee146798b22c-006492ea9d
+ - txg5003a62ceecc42e0813e-006571d028
X-Amz-Request-Id:
- - txebe058db4ee146798b22c-006492ea9d
+ - txg5003a62ceecc42e0813e-006571d028
status: 200 OK
code: 200
duration: ""
@@ -248,26 +246,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121838Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txd48338262a1e4d67bfaa0-006492ea9e
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg3bf12ba9b643448e9598-006571d028
headers:
+ Content-Length:
+ - "258"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txd48338262a1e4d67bfaa0-006492ea9e
+ - txg3bf12ba9b643448e9598-006571d028
X-Amz-Request-Id:
- - txd48338262a1e4d67bfaa0-006492ea9e
+ - txg3bf12ba9b643448e9598-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -281,12 +280,12 @@ interactions:
Content-Md5:
- gYxuYBok9ydQ2g9sm46+KA==
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- 973153f86ec2da1748e63f0cf85b89835b42f8ee8018c549868a1308a19f6ca3
X-Amz-Date:
- - 20230621T121838Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: PUT
response:
body: ""
@@ -296,17 +295,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:18:39 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx56da7530dfd14f0f9c805-006492ea9e
+ - txf6f92e4c58d843b1af72a-006571d028
X-Amz-Request-Id:
- - tx56da7530dfd14f0f9c805-006492ea9e
+ - txf6f92e4c58d843b1af72a-006571d028
X-Amz-Version-Id:
- - "1687349918378007"
+ - "1701957672475414"
status: 200 OK
code: 200
duration: ""
@@ -315,12 +314,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121839Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: HEAD
response:
body: ""
@@ -332,17 +331,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:39 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx248f6391628f44d1a936e-006492ea9f
+ - txg00967f8edb7b47d8a226-006571d028
X-Amz-Request-Id:
- - tx248f6391628f44d1a936e-006492ea9f
- X-Amz-Version-Id:
- - "1687349918378007"
+ - txg00967f8edb7b47d8a226-006571d028
status: 200 OK
code: 200
duration: ""
@@ -351,30 +348,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121839Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:39 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx1250e54b978548409135c-006492ea9f
+ - txgc5fe44f7cc2747968acb-006571d028
X-Amz-Request-Id:
- - tx1250e54b978548409135c-006492ea9f
- X-Amz-Version-Id:
- - "1687349918378007"
+ - txgc5fe44f7cc2747968acb-006571d028
status: 200 OK
code: 200
duration: ""
@@ -383,28 +378,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121839Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg4ba37594a4544773a5f0-006571d028
+ X-Amz-Request-Id:
+ - txg4ba37594a4544773a5f0-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Wed, 21 Jun 2023 12:18:39 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - txf44d5aa81c1545ea9a83e-006492ea9f
+ - txgada53df6b3ec4824bee4-006571d028
X-Amz-Request-Id:
- - txf44d5aa81c1545ea9a83e-006492ea9f
+ - txgada53df6b3ec4824bee4-006571d028
status: 200 OK
code: 200
duration: ""
@@ -413,12 +436,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121840Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: GET
response:
body: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
@@ -431,17 +454,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:40 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txb74a32de0a2344e7a150f-006492eaa0
+ - tx202e4b0c0c38452b81870-006571d029
X-Amz-Request-Id:
- - txb74a32de0a2344e7a150f-006492eaa0
+ - tx202e4b0c0c38452b81870-006571d029
X-Amz-Version-Id:
- - "1687349918378007"
+ - "1701957672475414"
status: 200 OK
code: 200
duration: ""
@@ -450,28 +473,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121840Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:40 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx8254e363dae04e5994bde-006492eaa0
+ - txg7d68276a31cf479dbca5-006571d029
X-Amz-Request-Id:
- - tx8254e363dae04e5994bde-006492eaa0
+ - txg7d68276a31cf479dbca5-006571d029
status: 200 OK
code: 200
duration: ""
@@ -480,26 +503,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121840Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx96fdb0dbf09b476385a26-006492eaa0
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-base64-6523079576061900725txgacc398f9c42040159f1d-006571d02a
headers:
+ Content-Length:
+ - "280"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx96fdb0dbf09b476385a26-006492eaa0
+ - txgacc398f9c42040159f1d-006571d02a
X-Amz-Request-Id:
- - tx96fdb0dbf09b476385a26-006492eaa0
+ - txgacc398f9c42040159f1d-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -508,28 +532,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-base64-38534137178524286901000false"818c6e601a24f72750da0f6c9b8ebe28"test-by-content-base642023-06-21T12:18:38.000Z123STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-base64-65230795760619007251000falsetest-by-content-base642023-12-07T14:01:12.000Z"818c6e601a24f72750da0f6c9b8ebe28"123105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "688"
+ - "700"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx5f7bd6dea45d4f90975ff-006492eaa1
+ - txg761208c0a36041b18c16-006571d02a
X-Amz-Request-Id:
- - tx5f7bd6dea45d4f90975ff-006492eaa1
+ - txg761208c0a36041b18c16-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -538,26 +562,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx555bb837c2e84989b0b00-006492eaa1
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg96ef2350796542708c50-006571d02a
headers:
+ Content-Length:
+ - "225"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx555bb837c2e84989b0b00-006492eaa1
+ - txg96ef2350796542708c50-006571d02a
X-Amz-Request-Id:
- - tx555bb837c2e84989b0b00-006492eaa1
+ - txg96ef2350796542708c50-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -566,26 +590,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx9ed2ae7066734d948394b-006492eaa1
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txgd7422f9228bc454785f8-006571d02a
headers:
+ Content-Length:
+ - "248"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx9ed2ae7066734d948394b-006492eaa1
+ - txgd7422f9228bc454785f8-006571d02a
X-Amz-Request-Id:
- - tx9ed2ae7066734d948394b-006492eaa1
+ - txgd7422f9228bc454785f8-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -594,28 +619,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txe722bff5a6b44e568ec0d-006492eaa1
+ - txg711cf77cc6b6489f855e-006571d02a
X-Amz-Request-Id:
- - txe722bff5a6b44e568ec0d-006492eaa1
+ - txg711cf77cc6b6489f855e-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -624,26 +649,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx5f2b47811e024f2a9d56e-006492eaa1
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg8dc1e28d59e6420083bc-006571d02a
headers:
+ Content-Length:
+ - "258"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx5f2b47811e024f2a9d56e-006492eaa1
+ - txg8dc1e28d59e6420083bc-006571d02a
X-Amz-Request-Id:
- - tx5f2b47811e024f2a9d56e-006492eaa1
+ - txg8dc1e28d59e6420083bc-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -652,12 +678,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: HEAD
response:
body: ""
@@ -669,17 +695,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx761091dce60643e09f4fe-006492eaa1
+ - txg51b8999ea2e54fd5ba89-006571d02a
X-Amz-Request-Id:
- - tx761091dce60643e09f4fe-006492eaa1
- X-Amz-Version-Id:
- - "1687349918378007"
+ - txg51b8999ea2e54fd5ba89-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -688,30 +712,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txa1337964ea6146898c1f7-006492eaa1
+ - txg2a3ee7e23c5e45e4b39c-006571d02a
X-Amz-Request-Id:
- - txa1337964ea6146898c1f7-006492eaa1
- X-Amz-Version-Id:
- - "1687349918378007"
+ - txg2a3ee7e23c5e45e4b39c-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -720,28 +742,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121841Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:41 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txb13919659845440b8b52e-006492eaa1
+ - txg8eaca8f89a1f49099111-006571d02a
X-Amz-Request-Id:
- - txb13919659845440b8b52e-006492eaa1
+ - txg8eaca8f89a1f49099111-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -750,28 +772,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121842Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:42 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx9d4b4d309c06449da0d8f-006492eaa2
+ - txg00bd435b1df241b9b788-006571d02b
X-Amz-Request-Id:
- - tx9d4b4d309c06449da0d8f-006492eaa2
+ - txg00bd435b1df241b9b788-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -780,26 +802,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121842Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx9731e4ff0f2844c5aee4a-006492eaa2
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-base64-6523079576061900725txg8c865de2461243869696-006571d02b
headers:
+ Content-Length:
+ - "280"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:42 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx9731e4ff0f2844c5aee4a-006492eaa2
+ - txg8c865de2461243869696-006571d02b
X-Amz-Request-Id:
- - tx9731e4ff0f2844c5aee4a-006492eaa2
+ - txg8c865de2461243869696-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -808,28 +831,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121842Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-base64-38534137178524286901000false"818c6e601a24f72750da0f6c9b8ebe28"test-by-content-base642023-06-21T12:18:38.000Z123STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-base64-65230795760619007251000falsetest-by-content-base642023-12-07T14:01:12.000Z"818c6e601a24f72750da0f6c9b8ebe28"123105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "688"
+ - "700"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:42 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx2d6b9723cefd4b619bb8f-006492eaa2
+ - txgf67fac7ab71b4a79a605-006571d02b
X-Amz-Request-Id:
- - tx2d6b9723cefd4b619bb8f-006492eaa2
+ - txgf67fac7ab71b4a79a605-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -838,26 +861,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121842Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx9a5683ac585644b7bd8dd-006492eaa2
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg78f01db4ce6d4e98871f-006571d02b
headers:
+ Content-Length:
+ - "225"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:42 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx9a5683ac585644b7bd8dd-006492eaa2
+ - txg78f01db4ce6d4e98871f-006571d02b
X-Amz-Request-Id:
- - tx9a5683ac585644b7bd8dd-006492eaa2
+ - txg78f01db4ce6d4e98871f-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -866,26 +889,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121842Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxa7cc6168d36944fdbff02-006492eaa2
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg7428a154a4084a7f9c29-006571d02b
headers:
+ Content-Length:
+ - "248"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:42 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa7cc6168d36944fdbff02-006492eaa2
+ - txg7428a154a4084a7f9c29-006571d02b
X-Amz-Request-Id:
- - txa7cc6168d36944fdbff02-006492eaa2
+ - txg7428a154a4084a7f9c29-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -894,28 +918,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121842Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:43 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx56ae066e3ebd40eea5901-006492eaa2
+ - txg215fd1a2832c4671ab5d-006571d02b
X-Amz-Request-Id:
- - tx56ae066e3ebd40eea5901-006492eaa2
+ - txg215fd1a2832c4671ab5d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -924,26 +948,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121843Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txfb43e64208d4427e99821-006492eaa3
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg5edd0f12ce4841e186c6-006571d02b
headers:
+ Content-Length:
+ - "258"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:43 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txfb43e64208d4427e99821-006492eaa3
+ - txg5edd0f12ce4841e186c6-006571d02b
X-Amz-Request-Id:
- - txfb43e64208d4427e99821-006492eaa3
+ - txg5edd0f12ce4841e186c6-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -952,12 +977,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121843Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: HEAD
response:
body: ""
@@ -969,17 +994,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:43 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:38 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txb31ba086ae2946a484667-006492eaa3
+ - txg1bc55c56639a4791a371-006571d02b
X-Amz-Request-Id:
- - txb31ba086ae2946a484667-006492eaa3
- X-Amz-Version-Id:
- - "1687349918378007"
+ - txg1bc55c56639a4791a371-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -988,30 +1011,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121843Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:43 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa6293cd96f0c4e0da1f9f-006492eaa3
+ - txg3f877cf80a984ec992f8-006571d02b
X-Amz-Request-Id:
- - txa6293cd96f0c4e0da1f9f-006492eaa3
- X-Amz-Version-Id:
- - "1687349918378007"
+ - txg3f877cf80a984ec992f8-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1020,28 +1041,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121843Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:43 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txd67d232e8a96494299e11-006492eaa3
+ - txga7328c81cea0400da5b0-006571d02b
X-Amz-Request-Id:
- - txd67d232e8a96494299e11-006492eaa3
+ - txga7328c81cea0400da5b0-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1050,36 +1071,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-by-content-base64-3853413717852428690/test-by-content-base64
+ - test-acc-scaleway-object-by-content-base64-6523079576061900725/test-by-content-base64
X-Amz-Date:
- - 20230621T121843Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: PUT
response:
body: |-
- 2023-06-21T12:18:43.000Z"818c6e601a24f72750da0f6c9b8ebe28"
+ 2023-12-07T14:01:17.000Z"818c6e601a24f72750da0f6c9b8ebe28"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
Last-Modified:
- - Wed, 21 Jun 2023 12:18:43 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - txbf7b4b17047b408498eda-006492eaa3
+ - txbfb62e516c6c4fb082c93-006571d02d
X-Amz-Request-Id:
- - txbf7b4b17047b408498eda-006492eaa3
+ - txbfb62e516c6c4fb082c93-006571d02d
X-Amz-Version-Id:
- - "1687349918378007"
+ - "1701957672475414"
status: 200 OK
code: 200
duration: ""
@@ -1092,14 +1113,14 @@ interactions:
Content-Md5:
- H1PZlhhd2ugY5eXSVAv6sA==
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e72e070e65318da44b0ab8f3cbd8725a61d66a2392a6475508ca745f3d65286d
X-Amz-Date:
- - 20230621T121844Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: PUT
response:
body: ""
@@ -1109,17 +1130,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - txde5032b2dd3e44b4b9633-006492eaa4
+ - txb58529bacd9b491b9ea89-006571d02d
X-Amz-Request-Id:
- - txde5032b2dd3e44b4b9633-006492eaa4
+ - txb58529bacd9b491b9ea89-006571d02d
X-Amz-Version-Id:
- - "1687349924437365"
+ - "1701957677840628"
status: 200 OK
code: 200
duration: ""
@@ -1128,12 +1149,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121844Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: HEAD
response:
body: ""
@@ -1145,17 +1166,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - tx57cfecee7dac474890cd9-006492eaa4
+ - txg8def76c7d36e40fbaf65-006571d02e
X-Amz-Request-Id:
- - tx57cfecee7dac474890cd9-006492eaa4
- X-Amz-Version-Id:
- - "1687349924437365"
+ - txg8def76c7d36e40fbaf65-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1164,30 +1183,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121844Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?tagging=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx16b513052eed4570bf4c6-006492eaa4
+ - txgcb00d77f933749cc8861-006571d02e
X-Amz-Request-Id:
- - tx16b513052eed4570bf4c6-006492eaa4
- X-Amz-Version-Id:
- - "1687349924437365"
+ - txgcb00d77f933749cc8861-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1196,28 +1213,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121844Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?acl=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:45 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txe36ed3a5458f45e3aa017-006492eaa4
+ - txg7ceb83a13f1245bb86a0-006571d02e
X-Amz-Request-Id:
- - txe36ed3a5458f45e3aa017-006492eaa4
+ - txg7ceb83a13f1245bb86a0-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1226,12 +1243,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121845Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:18 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txgbf926d1be44a4b0ba32c-006571d02e
+ X-Amz-Request-Id:
+ - txgbf926d1be44a4b0ba32c-006571d02e
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: GET
response:
body: This is a different content
@@ -1243,17 +1288,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:45 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - tx20abe82c3789490a9fc59-006492eaa5
+ - tx811c49da5c064cada0574-006571d02e
X-Amz-Request-Id:
- - tx20abe82c3789490a9fc59-006492eaa5
+ - tx811c49da5c064cada0574-006571d02e
X-Amz-Version-Id:
- - "1687349924437365"
+ - "1701957677840628"
status: 200 OK
code: 200
duration: ""
@@ -1262,28 +1307,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121845Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:45 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx6bc1a0d159a04cdf99756-006492eaa5
+ - txgd472a8f74aab4456bd76-006571d02f
X-Amz-Request-Id:
- - tx6bc1a0d159a04cdf99756-006492eaa5
+ - txgd472a8f74aab4456bd76-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1292,26 +1337,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121845Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxd8220f6aebe84225b2b56-006492eaa5
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-base64-6523079576061900725txg510a77838d014b2b8f0d-006571d02f
headers:
+ Content-Length:
+ - "280"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:45 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - txd8220f6aebe84225b2b56-006492eaa5
+ - txg510a77838d014b2b8f0d-006571d02f
X-Amz-Request-Id:
- - txd8220f6aebe84225b2b56-006492eaa5
+ - txg510a77838d014b2b8f0d-006571d02f
status: 404 Not Found
code: 404
duration: ""
@@ -1320,28 +1366,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121845Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-base64-38534137178524286901000false"1f53d996185ddae818e5e5d2540bfab0"test-by-content-base642023-06-21T12:18:44.000Z27STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-base64-65230795760619007251000falsetest-by-content-base642023-12-07T14:01:17.000Z"1f53d996185ddae818e5e5d2540bfab0"27105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "687"
+ - "699"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:45 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx4444ea2fb53645758b904-006492eaa5
+ - txgad44b5490289421caea2-006571d02f
X-Amz-Request-Id:
- - tx4444ea2fb53645758b904-006492eaa5
+ - txgad44b5490289421caea2-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1350,26 +1396,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121845Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx1b60b3d032bc401c9ff09-006492eaa5
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg81fc599538af4c039706-006571d02f
headers:
+ Content-Length:
+ - "225"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:45 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx1b60b3d032bc401c9ff09-006492eaa5
+ - txg81fc599538af4c039706-006571d02f
X-Amz-Request-Id:
- - tx1b60b3d032bc401c9ff09-006492eaa5
+ - txg81fc599538af4c039706-006571d02f
status: 404 Not Found
code: 404
duration: ""
@@ -1378,26 +1424,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121845Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx08d148f7fb284d4ab438d-006492eaa5
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txgd7d85ab7087e49e5b7db-006571d02f
headers:
+ Content-Length:
+ - "248"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx08d148f7fb284d4ab438d-006492eaa5
+ - txgd7d85ab7087e49e5b7db-006571d02f
X-Amz-Request-Id:
- - tx08d148f7fb284d4ab438d-006492eaa5
+ - txgd7d85ab7087e49e5b7db-006571d02f
status: 404 Not Found
code: 404
duration: ""
@@ -1406,28 +1453,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx2f1c1b2265d946dabe342-006492eaa6
+ - txge6d5526831814442973d-006571d02f
X-Amz-Request-Id:
- - tx2f1c1b2265d946dabe342-006492eaa6
+ - txge6d5526831814442973d-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1436,26 +1483,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txb13a71e2b2c4448bbd2be-006492eaa6
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txgb832b16a952a43af9bcb-006571d02f
headers:
+ Content-Length:
+ - "258"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - txb13a71e2b2c4448bbd2be-006492eaa6
+ - txgb832b16a952a43af9bcb-006571d02f
X-Amz-Request-Id:
- - txb13a71e2b2c4448bbd2be-006492eaa6
+ - txgb832b16a952a43af9bcb-006571d02f
status: 404 Not Found
code: 404
duration: ""
@@ -1464,12 +1512,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: HEAD
response:
body: ""
@@ -1481,17 +1529,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - tx7ca72e457a4146e4814f2-006492eaa6
+ - txg8c0cfb568016497f9047-006571d02f
X-Amz-Request-Id:
- - tx7ca72e457a4146e4814f2-006492eaa6
- X-Amz-Version-Id:
- - "1687349924437365"
+ - txg8c0cfb568016497f9047-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1500,30 +1546,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?tagging=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx46a7b7121ef74a909addb-006492eaa6
+ - txg14f163a3cbd14cb8abc9-006571d02f
X-Amz-Request-Id:
- - tx46a7b7121ef74a909addb-006492eaa6
- X-Amz-Version-Id:
- - "1687349924437365"
+ - txg14f163a3cbd14cb8abc9-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1532,28 +1576,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?acl=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx1f4f205c057048809c3b8-006492eaa6
+ - txg71b47723535f480b9e91-006571d02f
X-Amz-Request-Id:
- - tx1f4f205c057048809c3b8-006492eaa6
+ - txg71b47723535f480b9e91-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1562,28 +1606,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txeb8ce9b358e14acb9424f-006492eaa6
+ - txgabac878d6089408b8351-006571d031
X-Amz-Request-Id:
- - txeb8ce9b358e14acb9424f-006492eaa6
+ - txgabac878d6089408b8351-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1592,26 +1636,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxfce976f610ee4cbabf3a7-006492eaa6
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-base64-6523079576061900725txg69d43e3fdcc3446d95ea-006571d031
headers:
+ Content-Length:
+ - "280"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txfce976f610ee4cbabf3a7-006492eaa6
+ - txg69d43e3fdcc3446d95ea-006571d031
X-Amz-Request-Id:
- - txfce976f610ee4cbabf3a7-006492eaa6
+ - txg69d43e3fdcc3446d95ea-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1620,28 +1665,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-base64-38534137178524286901000false"1f53d996185ddae818e5e5d2540bfab0"test-by-content-base642023-06-21T12:18:44.000Z27STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-base64-65230795760619007251000falsetest-by-content-base642023-12-07T14:01:17.000Z"1f53d996185ddae818e5e5d2540bfab0"27105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "687"
+ - "699"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx9d68f7c26d124e44ba493-006492eaa6
+ - txgf2129805b8c94af28236-006571d031
X-Amz-Request-Id:
- - tx9d68f7c26d124e44ba493-006492eaa6
+ - txgf2129805b8c94af28236-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1650,26 +1695,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx38559f1239204cd38243c-006492eaa6
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txgdb19a5a038204da79400-006571d031
headers:
+ Content-Length:
+ - "225"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:46 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx38559f1239204cd38243c-006492eaa6
+ - txgdb19a5a038204da79400-006571d031
X-Amz-Request-Id:
- - tx38559f1239204cd38243c-006492eaa6
+ - txgdb19a5a038204da79400-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1678,26 +1723,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121846Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx45cb5038ac7942edbd1c8-006492eaa6
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txg011d89c20d8a473a872f-006571d031
headers:
+ Content-Length:
+ - "248"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx45cb5038ac7942edbd1c8-006492eaa6
+ - txg011d89c20d8a473a872f-006571d031
X-Amz-Request-Id:
- - tx45cb5038ac7942edbd1c8-006492eaa6
+ - txg011d89c20d8a473a872f-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1706,28 +1752,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121847Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txd2c42de9d38a4a12b7ac5-006492eaa7
+ - txg9ea423fb1c8a43bb9bf9-006571d031
X-Amz-Request-Id:
- - txd2c42de9d38a4a12b7ac5-006492eaa7
+ - txg9ea423fb1c8a43bb9bf9-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1736,26 +1782,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121847Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx7d3d7aa6ba3e46aa9b5c7-006492eaa7
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-base64-6523079576061900725txge41b764057c34bb499a4-006571d031
headers:
+ Content-Length:
+ - "258"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx7d3d7aa6ba3e46aa9b5c7-006492eaa7
+ - txge41b764057c34bb499a4-006571d031
X-Amz-Request-Id:
- - tx7d3d7aa6ba3e46aa9b5c7-006492eaa7
+ - txge41b764057c34bb499a4-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1764,12 +1811,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121847Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: HEAD
response:
body: ""
@@ -1781,17 +1828,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:18:44 GMT
+ - Thu, 07 Dec 2023 14:01:17 GMT
X-Amz-Id-2:
- - txe4701441c8b1461684f40-006492eaa7
+ - txgcbc1be03a45f42a8afd4-006571d031
X-Amz-Request-Id:
- - txe4701441c8b1461684f40-006492eaa7
- X-Amz-Version-Id:
- - "1687349924437365"
+ - txgcbc1be03a45f42a8afd4-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1800,30 +1845,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121847Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx14e12dec76354800b03e3-006492eaa7
+ - txgb57d0254df684a018e86-006571d031
X-Amz-Request-Id:
- - tx14e12dec76354800b03e3-006492eaa7
- X-Amz-Version-Id:
- - "1687349924437365"
+ - txgb57d0254df684a018e86-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1832,28 +1875,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121847Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txf8c7ff0a62684019b9ee1-006492eaa7
+ - txgca2a40bae93a48ce8f7e-006571d031
X-Amz-Request-Id:
- - txf8c7ff0a62684019b9ee1-006492eaa7
+ - txgca2a40bae93a48ce8f7e-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1862,36 +1905,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-by-content-base64-3853413717852428690/test-by-content-base64
+ - test-acc-scaleway-object-by-content-base64-6523079576061900725/test-by-content-base64
X-Amz-Date:
- - 20230621T121847Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: PUT
response:
body: |-
- 2023-06-21T12:18:47.000Z"1f53d996185ddae818e5e5d2540bfab0"
+ 2023-12-07T14:01:23.000Z"1f53d996185ddae818e5e5d2540bfab0"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
Last-Modified:
- - Wed, 21 Jun 2023 12:18:47 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx11811250435b4626867ed-006492eaa7
+ - txe32a9b87002b4e02bc544-006571d033
X-Amz-Request-Id:
- - tx11811250435b4626867ed-006492eaa7
+ - txe32a9b87002b4e02bc544-006571d033
X-Amz-Version-Id:
- - "1687349924437365"
+ - "1701957677840628"
status: 200 OK
code: 200
duration: ""
@@ -1900,26 +1943,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121848Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/test-by-content-base64
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/test-by-content-base64
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:18:48 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx7309352a87d54018aa993-006492eaa8
+ - txg06d18d42c1d649a6962f-006571d034
X-Amz-Request-Id:
- - tx7309352a87d54018aa993-006492eaa8
+ - txg06d18d42c1d649a6962f-006571d034
status: 204 No Content
code: 204
duration: ""
@@ -1928,12 +1967,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T121848Z
- url: https://test-acc-scaleway-object-by-content-base64-3853413717852428690.s3.fr-par.scw.cloud/
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-base64-6523079576061900725.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1943,11 +1982,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:18:48 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx46883f61f7c249d18d18f-006492eaa8
+ - tx797c941e75844620b0cde-006571d034
X-Amz-Request-Id:
- - tx46883f61f7c249d18d18f-006492eaa8
+ - tx797c941e75844620b0cde-006571d034
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-by-content.cassette.yaml b/scaleway/testdata/object-by-content.cassette.yaml
index 786a7a0bf0..8544620f97 100644
--- a/scaleway/testdata/object-by-content.cassette.yaml
+++ b/scaleway/testdata/object-by-content.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230621T122026Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
Location:
- - /test-acc-scaleway-object-by-content-6785364661981614062
+ - /test-acc-scaleway-object-by-content-1270079004718449898
X-Amz-Id-2:
- - txe6fa3ed0d29c4fca996ec-006492eb0a
+ - txg6803e086c54d47cfb026-006571d031
X-Amz-Request-Id:
- - txe6fa3ed0d29c4fca996ec-006492eb0a
+ - txg6803e086c54d47cfb026-006571d031
status: 200 OK
code: 200
duration: ""
@@ -44,28 +42,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txc21af4437f9c4962aea3f-006492eb0b
+ - txgb5f4c822cdca42ce89a1-006571d031
X-Amz-Request-Id:
- - txc21af4437f9c4962aea3f-006492eb0b
+ - txgb5f4c822cdca42ce89a1-006571d031
status: 200 OK
code: 200
duration: ""
@@ -74,28 +70,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txebd9847615aa48d7bf2cb-006492eb0b
+ - txg033901bec04c4b88b5b7-006571d031
X-Amz-Request-Id:
- - txebd9847615aa48d7bf2cb-006492eb0b
+ - txg033901bec04c4b88b5b7-006571d031
status: 200 OK
code: 200
duration: ""
@@ -104,26 +100,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx0d100fb5149b47f3ababd-006492eb0b
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-1270079004718449898txg4bd73ce61dbd49c8ac3b-006571d031
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx0d100fb5149b47f3ababd-006492eb0b
+ - txg4bd73ce61dbd49c8ac3b-006571d031
X-Amz-Request-Id:
- - tx0d100fb5149b47f3ababd-006492eb0b
+ - txg4bd73ce61dbd49c8ac3b-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -132,28 +129,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-67853646619816140621000false
+
+ test-acc-scaleway-object-by-content-12700790047184498981000false
headers:
Content-Length:
- - "277"
+ - "281"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx0dc45ab6fe234c48bf757-006492eb0b
+ - txg8d4df6172e324e1b811e-006571d031
X-Amz-Request-Id:
- - tx0dc45ab6fe234c48bf757-006492eb0b
+ - txg8d4df6172e324e1b811e-006571d031
status: 200 OK
code: 200
duration: ""
@@ -162,26 +159,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx0bd61df924ce48fda4e00-006492eb0b
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg5044656f15dc4315981a-006571d031
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx0bd61df924ce48fda4e00-006492eb0b
+ - txg5044656f15dc4315981a-006571d031
X-Amz-Request-Id:
- - tx0bd61df924ce48fda4e00-006492eb0b
+ - txg5044656f15dc4315981a-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -190,26 +187,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx4b2e0feb4342424d89239-006492eb0b
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg991e13d986ac486984de-006571d031
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:27 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx4b2e0feb4342424d89239-006492eb0b
+ - txg991e13d986ac486984de-006571d031
X-Amz-Request-Id:
- - tx4b2e0feb4342424d89239-006492eb0b
+ - txg991e13d986ac486984de-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -218,28 +216,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122027Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx56d17330055e4846bbabf-006492eb0c
+ - txg1c7c9c22fafe46f0abb8-006571d031
X-Amz-Request-Id:
- - tx56d17330055e4846bbabf-006492eb0c
+ - txg1c7c9c22fafe46f0abb8-006571d031
status: 200 OK
code: 200
duration: ""
@@ -248,26 +246,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122028Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx569243f8bb9842758ff1e-006492eb0c
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg33ff0c36db7248c5a687-006571d031
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx569243f8bb9842758ff1e-006492eb0c
+ - txg33ff0c36db7248c5a687-006571d031
X-Amz-Request-Id:
- - tx569243f8bb9842758ff1e-006492eb0c
+ - txg33ff0c36db7248c5a687-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -281,12 +280,12 @@ interactions:
Content-Md5:
- gYxuYBok9ydQ2g9sm46+KA==
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- 973153f86ec2da1748e63f0cf85b89835b42f8ee8018c549868a1308a19f6ca3
X-Amz-Date:
- - 20230621T122028Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: PUT
response:
body: ""
@@ -296,17 +295,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx74e41e6a374b4483b60ec-006492eb0c
+ - tx458ec1842fd04a09a5387-006571d032
X-Amz-Request-Id:
- - tx74e41e6a374b4483b60ec-006492eb0c
+ - tx458ec1842fd04a09a5387-006571d032
X-Amz-Version-Id:
- - "1687350028262892"
+ - "1701957682140440"
status: 200 OK
code: 200
duration: ""
@@ -315,12 +314,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122028Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: HEAD
response:
body: ""
@@ -332,17 +331,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx40f7c3ab4b3f478dad8d3-006492eb0c
+ - txgfbcf4d741dd640f3abce-006571d032
X-Amz-Request-Id:
- - tx40f7c3ab4b3f478dad8d3-006492eb0c
- X-Amz-Version-Id:
- - "1687350028262892"
+ - txgfbcf4d741dd640f3abce-006571d032
status: 200 OK
code: 200
duration: ""
@@ -351,30 +348,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122028Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?tagging=
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx353205be8368478cb8b4d-006492eb0c
+ - txg9264dcc1c60c4bd49fda-006571d032
X-Amz-Request-Id:
- - tx353205be8368478cb8b4d-006492eb0c
- X-Amz-Version-Id:
- - "1687350028262892"
+ - txg9264dcc1c60c4bd49fda-006571d032
status: 200 OK
code: 200
duration: ""
@@ -383,28 +378,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122028Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?acl=
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - txee3e78ba3c6f4aca9fc86-006492eb0c
+ - txgf33bf243e5dc4f9593d5-006571d032
X-Amz-Request-Id:
- - txee3e78ba3c6f4aca9fc86-006492eb0c
+ - txgf33bf243e5dc4f9593d5-006571d032
status: 200 OK
code: 200
duration: ""
@@ -413,12 +408,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122028Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:22 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txg5a571360de8546a1946e-006571d032
+ X-Amz-Request-Id:
+ - txg5a571360de8546a1946e-006571d032
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: GET
response:
body: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
@@ -431,17 +454,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx92cc453cb0f34c32969df-006492eb0c
+ - txc24b38b92993494d913c1-006571d032
X-Amz-Request-Id:
- - tx92cc453cb0f34c32969df-006492eb0c
+ - txc24b38b92993494d913c1-006571d032
X-Amz-Version-Id:
- - "1687350028262892"
+ - "1701957682140440"
status: 200 OK
code: 200
duration: ""
@@ -450,28 +473,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx9f07ee76284147099ae62-006492eb0d
+ - txgfbf63026afaf44c486d5-006571d033
X-Amz-Request-Id:
- - tx9f07ee76284147099ae62-006492eb0d
+ - txgfbf63026afaf44c486d5-006571d033
status: 200 OK
code: 200
duration: ""
@@ -480,26 +503,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx9b28e844c2c84031866a2-006492eb0d
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-1270079004718449898txg27262840b2df4bf2a89a-006571d034
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx9b28e844c2c84031866a2-006492eb0d
+ - txg27262840b2df4bf2a89a-006571d034
X-Amz-Request-Id:
- - tx9b28e844c2c84031866a2-006492eb0d
+ - txg27262840b2df4bf2a89a-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -508,28 +532,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-67853646619816140621000false"818c6e601a24f72750da0f6c9b8ebe28"test-by-content2023-06-21T12:20:28.000Z123STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-12700790047184498981000falsetest-by-content2023-12-07T14:01:22.000Z"818c6e601a24f72750da0f6c9b8ebe28"123105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "674"
+ - "686"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - txae3d6a2c5e04421e8de32-006492eb0d
+ - txg917d7323aebd4693b942-006571d034
X-Amz-Request-Id:
- - txae3d6a2c5e04421e8de32-006492eb0d
+ - txg917d7323aebd4693b942-006571d034
status: 200 OK
code: 200
duration: ""
@@ -538,26 +562,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx6563c4c6d6474030a9f5c-006492eb0d
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-1270079004718449898txgfbd3867e8a98458ebed6-006571d034
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx6563c4c6d6474030a9f5c-006492eb0d
+ - txgfbd3867e8a98458ebed6-006571d034
X-Amz-Request-Id:
- - tx6563c4c6d6474030a9f5c-006492eb0d
+ - txgfbd3867e8a98458ebed6-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -566,26 +590,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx8ebe6d64590148809335f-006492eb0d
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg9e3b7508d0124ee3ab5f-006571d034
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx8ebe6d64590148809335f-006492eb0d
+ - txg9e3b7508d0124ee3ab5f-006571d034
X-Amz-Request-Id:
- - tx8ebe6d64590148809335f-006492eb0d
+ - txg9e3b7508d0124ee3ab5f-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -594,28 +619,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - txcfe7d05b99fa4dd5840cb-006492eb0d
+ - txg89cdc22ccbf240bfa00e-006571d034
X-Amz-Request-Id:
- - txcfe7d05b99fa4dd5840cb-006492eb0d
+ - txg89cdc22ccbf240bfa00e-006571d034
status: 200 OK
code: 200
duration: ""
@@ -624,26 +649,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx0cd95b688d5c426ab4a00-006492eb0d
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg273a1c232d9846c78c87-006571d034
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx0cd95b688d5c426ab4a00-006492eb0d
+ - txg273a1c232d9846c78c87-006571d034
X-Amz-Request-Id:
- - tx0cd95b688d5c426ab4a00-006492eb0d
+ - txg273a1c232d9846c78c87-006571d034
status: 404 Not Found
code: 404
duration: ""
@@ -652,12 +678,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: HEAD
response:
body: ""
@@ -669,17 +695,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx231138cdde34446ca10c0-006492eb0d
+ - txg36369fc988534a6db94d-006571d034
X-Amz-Request-Id:
- - tx231138cdde34446ca10c0-006492eb0d
- X-Amz-Version-Id:
- - "1687350028262892"
+ - txg36369fc988534a6db94d-006571d034
status: 200 OK
code: 200
duration: ""
@@ -688,30 +712,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?tagging=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - txcd6285ca00444ecbbb3fc-006492eb0d
+ - txg0db9f0d385dd4924994e-006571d034
X-Amz-Request-Id:
- - txcd6285ca00444ecbbb3fc-006492eb0d
- X-Amz-Version-Id:
- - "1687350028262892"
+ - txg0db9f0d385dd4924994e-006571d034
status: 200 OK
code: 200
duration: ""
@@ -720,28 +742,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?acl=
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:24 GMT
X-Amz-Id-2:
- - tx186d83d6d9214c10adbe7-006492eb0d
+ - txg095770e14d67448e95be-006571d034
X-Amz-Request-Id:
- - tx186d83d6d9214c10adbe7-006492eb0d
+ - txg095770e14d67448e95be-006571d034
status: 200 OK
code: 200
duration: ""
@@ -750,28 +772,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:29 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txdac5753494b7442ab8658-006492eb0d
+ - txg14e6569daef541af98eb-006571d035
X-Amz-Request-Id:
- - txdac5753494b7442ab8658-006492eb0d
+ - txg14e6569daef541af98eb-006571d035
status: 200 OK
code: 200
duration: ""
@@ -780,26 +802,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122029Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxebcc1ac416784ea6b6756-006492eb0d
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-1270079004718449898txga0bb2065289241d580c8-006571d035
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txebcc1ac416784ea6b6756-006492eb0d
+ - txga0bb2065289241d580c8-006571d035
X-Amz-Request-Id:
- - txebcc1ac416784ea6b6756-006492eb0d
+ - txga0bb2065289241d580c8-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -808,28 +831,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-67853646619816140621000false"818c6e601a24f72750da0f6c9b8ebe28"test-by-content2023-06-21T12:20:28.000Z123STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-12700790047184498981000falsetest-by-content2023-12-07T14:01:22.000Z"818c6e601a24f72750da0f6c9b8ebe28"123105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "674"
+ - "686"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx4d27b814c2454e6a8abd9-006492eb0e
+ - txg50b6c50c271b41bcbb01-006571d035
X-Amz-Request-Id:
- - tx4d27b814c2454e6a8abd9-006492eb0e
+ - txg50b6c50c271b41bcbb01-006571d035
status: 200 OK
code: 200
duration: ""
@@ -838,26 +861,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx707fae20222c4fd686cb1-006492eb0e
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-1270079004718449898txgdb61794eac104bafa241-006571d035
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx707fae20222c4fd686cb1-006492eb0e
+ - txgdb61794eac104bafa241-006571d035
X-Amz-Request-Id:
- - tx707fae20222c4fd686cb1-006492eb0e
+ - txgdb61794eac104bafa241-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -866,26 +889,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxe7b353626d8c4e8588fa3-006492eb0e
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg721fb81bb6d14d2e83f1-006571d035
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txe7b353626d8c4e8588fa3-006492eb0e
+ - txg721fb81bb6d14d2e83f1-006571d035
X-Amz-Request-Id:
- - txe7b353626d8c4e8588fa3-006492eb0e
+ - txg721fb81bb6d14d2e83f1-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -894,28 +918,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx987eb8a6ba8a4732ba5a5-006492eb0e
+ - txgc0b3d68e0f6e416ba85c-006571d035
X-Amz-Request-Id:
- - tx987eb8a6ba8a4732ba5a5-006492eb0e
+ - txgc0b3d68e0f6e416ba85c-006571d035
status: 200 OK
code: 200
duration: ""
@@ -924,26 +948,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txfd1584c0749d45189b02c-006492eb0e
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txga8db5866fde7425b8ae4-006571d035
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txfd1584c0749d45189b02c-006492eb0e
+ - txga8db5866fde7425b8ae4-006571d035
X-Amz-Request-Id:
- - txfd1584c0749d45189b02c-006492eb0e
+ - txga8db5866fde7425b8ae4-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -952,12 +977,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: HEAD
response:
body: ""
@@ -969,17 +994,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
Etag:
- '"818c6e601a24f72750da0f6c9b8ebe28"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:28 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx6fcdf6b35a3f49c8bebeb-006492eb0e
+ - txgcd36d8100b0d4f06a64c-006571d035
X-Amz-Request-Id:
- - tx6fcdf6b35a3f49c8bebeb-006492eb0e
- X-Amz-Version-Id:
- - "1687350028262892"
+ - txgcd36d8100b0d4f06a64c-006571d035
status: 200 OK
code: 200
duration: ""
@@ -988,30 +1011,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?tagging=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx246213f62f6b4af6af4be-006492eb0e
+ - txg90bec4b744814b98a978-006571d035
X-Amz-Request-Id:
- - tx246213f62f6b4af6af4be-006492eb0e
- X-Amz-Version-Id:
- - "1687350028262892"
+ - txg90bec4b744814b98a978-006571d035
status: 200 OK
code: 200
duration: ""
@@ -1020,28 +1041,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?acl=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txa889066a33954fbba3e3e-006492eb0e
+ - txg061d94e36bf84f3c9e7b-006571d035
X-Amz-Request-Id:
- - txa889066a33954fbba3e3e-006492eb0e
+ - txg061d94e36bf84f3c9e7b-006571d035
status: 200 OK
code: 200
duration: ""
@@ -1050,36 +1071,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-by-content-6785364661981614062/test-by-content
+ - test-acc-scaleway-object-by-content-1270079004718449898/test-by-content
X-Amz-Date:
- - 20230621T122030Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: PUT
response:
body: |-
- 2023-06-21T12:20:30.000Z"818c6e601a24f72750da0f6c9b8ebe28"
+ 2023-12-07T14:01:26.000Z"818c6e601a24f72750da0f6c9b8ebe28"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Last-Modified:
- - Wed, 21 Jun 2023 12:20:30 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx2895525dbff34a03b9cd0-006492eb0e
+ - txdace3b75bfbd4ea9aaca1-006571d036
X-Amz-Request-Id:
- - tx2895525dbff34a03b9cd0-006492eb0e
+ - txdace3b75bfbd4ea9aaca1-006571d036
X-Amz-Version-Id:
- - "1687350028262892"
+ - "1701957682140440"
status: 200 OK
code: 200
duration: ""
@@ -1092,14 +1113,14 @@ interactions:
Content-Md5:
- H1PZlhhd2ugY5eXSVAv6sA==
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e72e070e65318da44b0ab8f3cbd8725a61d66a2392a6475508ca745f3d65286d
X-Amz-Date:
- - 20230621T122031Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: PUT
response:
body: ""
@@ -1109,17 +1130,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - txcb507e39a974430590d4a-006492eb0f
+ - tx72d456fbcf064a35b79c2-006571d036
X-Amz-Request-Id:
- - txcb507e39a974430590d4a-006492eb0f
+ - tx72d456fbcf064a35b79c2-006571d036
X-Amz-Version-Id:
- - "1687350031259809"
+ - "1701957686366431"
status: 200 OK
code: 200
duration: ""
@@ -1128,12 +1149,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122031Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: HEAD
response:
body: ""
@@ -1145,17 +1166,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx5236988643234aa292e56-006492eb0f
+ - txgfd16616ed9064fdc9c77-006571d036
X-Amz-Request-Id:
- - tx5236988643234aa292e56-006492eb0f
- X-Amz-Version-Id:
- - "1687350031259809"
+ - txgfd16616ed9064fdc9c77-006571d036
status: 200 OK
code: 200
duration: ""
@@ -1164,30 +1183,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122031Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?tagging=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - txc19bb801af3842f8a2abd-006492eb0f
+ - txg0f85949fbeb446769a08-006571d036
X-Amz-Request-Id:
- - txc19bb801af3842f8a2abd-006492eb0f
- X-Amz-Version-Id:
- - "1687350031259809"
+ - txg0f85949fbeb446769a08-006571d036
status: 200 OK
code: 200
duration: ""
@@ -1196,28 +1213,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122031Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?acl=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx385492cdb1d14b758d8e2-006492eb0f
+ - txgb95eb872b21a4c019da8-006571d036
X-Amz-Request-Id:
- - tx385492cdb1d14b758d8e2-006492eb0f
+ - txgb95eb872b21a4c019da8-006571d036
status: 200 OK
code: 200
duration: ""
@@ -1226,12 +1243,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122031Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:26 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txgb3e82055f4ef41eaa0cd-006571d036
+ X-Amz-Request-Id:
+ - txgb3e82055f4ef41eaa0cd-006571d036
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: GET
response:
body: This is a different content
@@ -1243,17 +1288,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx2d0359f720374ad885e7c-006492eb0f
+ - tx2382ac4789fe483c84d7a-006571d036
X-Amz-Request-Id:
- - tx2d0359f720374ad885e7c-006492eb0f
+ - tx2382ac4789fe483c84d7a-006571d036
X-Amz-Version-Id:
- - "1687350031259809"
+ - "1701957686366431"
status: 200 OK
code: 200
duration: ""
@@ -1262,28 +1307,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx794cbcec4f9d4489903db-006492eb10
+ - txg76af932fda4d40a490db-006571d037
X-Amz-Request-Id:
- - tx794cbcec4f9d4489903db-006492eb10
+ - txg76af932fda4d40a490db-006571d037
status: 200 OK
code: 200
duration: ""
@@ -1292,26 +1337,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxde629c24ef104f6f83502-006492eb10
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-by-content-1270079004718449898txg61e88b821105440a8cb8-006571d037
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txde629c24ef104f6f83502-006492eb10
+ - txg61e88b821105440a8cb8-006571d037
X-Amz-Request-Id:
- - txde629c24ef104f6f83502-006492eb10
+ - txg61e88b821105440a8cb8-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -1320,28 +1366,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-by-content-67853646619816140621000false"1f53d996185ddae818e5e5d2540bfab0"test-by-content2023-06-21T12:20:31.000Z27STANDARDfa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552
+
+ test-acc-scaleway-object-by-content-12700790047184498981000falsetest-by-content2023-12-07T14:01:26.000Z"1f53d996185ddae818e5e5d2540bfab0"27105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "673"
+ - "685"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx4317b5dc6e2044508cfe4-006492eb10
+ - txgf86a34b13db54af4ac15-006571d037
X-Amz-Request-Id:
- - tx4317b5dc6e2044508cfe4-006492eb10
+ - txgf86a34b13db54af4ac15-006571d037
status: 200 OK
code: 200
duration: ""
@@ -1350,26 +1396,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx6595913e728c4db9b3088-006492eb10
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-by-content-1270079004718449898txge366773c8c2b497c8c49-006571d037
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx6595913e728c4db9b3088-006492eb10
+ - txge366773c8c2b497c8c49-006571d037
X-Amz-Request-Id:
- - tx6595913e728c4db9b3088-006492eb10
+ - txge366773c8c2b497c8c49-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -1378,26 +1424,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx952a0cf895c242f491728-006492eb10
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg382552362b8041609e13-006571d037
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx952a0cf895c242f491728-006492eb10
+ - txg382552362b8041609e13-006571d037
X-Amz-Request-Id:
- - tx952a0cf895c242f491728-006492eb10
+ - txg382552362b8041609e13-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -1406,28 +1453,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txee0f0dce8f604f74a696c-006492eb10
+ - txg10a47a35bfb94dbb9ef0-006571d037
X-Amz-Request-Id:
- - txee0f0dce8f604f74a696c-006492eb10
+ - txg10a47a35bfb94dbb9ef0-006571d037
status: 200 OK
code: 200
duration: ""
@@ -1436,26 +1483,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx94ca9ce0ea7f4addbae58-006492eb10
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-by-content-1270079004718449898txg5cfae90726d74a288f4c-006571d037
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx94ca9ce0ea7f4addbae58-006492eb10
+ - txg5cfae90726d74a288f4c-006571d037
X-Amz-Request-Id:
- - tx94ca9ce0ea7f4addbae58-006492eb10
+ - txg5cfae90726d74a288f4c-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -1464,12 +1512,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: HEAD
response:
body: ""
@@ -1481,17 +1529,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
Etag:
- '"1f53d996185ddae818e5e5d2540bfab0"'
Last-Modified:
- - Wed, 21 Jun 2023 12:20:31 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - txed7774d9f1034d84bd948-006492eb10
+ - txg3621ab3710a34530834b-006571d037
X-Amz-Request-Id:
- - txed7774d9f1034d84bd948-006492eb10
- X-Amz-Version-Id:
- - "1687350031259809"
+ - txg3621ab3710a34530834b-006571d037
status: 200 OK
code: 200
duration: ""
@@ -1500,30 +1546,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?tagging=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx50655880b874478fba3ed-006492eb10
+ - txg0c1899241a1e4e04af75-006571d037
X-Amz-Request-Id:
- - tx50655880b874478fba3ed-006492eb10
- X-Amz-Version-Id:
- - "1687350031259809"
+ - txg0c1899241a1e4e04af75-006571d037
status: 200 OK
code: 200
duration: ""
@@ -1532,28 +1576,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122032Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content?acl=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content?acl=
method: GET
response:
body: |-
-
- fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Wed, 21 Jun 2023 12:20:32 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txb396415153ce4a19919bb-006492eb10
+ - txgf97f248d428141d7843f-006571d037
X-Amz-Request-Id:
- - txb396415153ce4a19919bb-006492eb10
+ - txgf97f248d428141d7843f-006571d037
status: 200 OK
code: 200
duration: ""
@@ -1562,26 +1606,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122033Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/test-by-content
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/test-by-content
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:20:33 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx2e8f4d55843f40dc862ea-006492eb11
+ - txge0b7cd23ae8a43df98a8-006571d038
X-Amz-Request-Id:
- - tx2e8f4d55843f40dc862ea-006492eb11
+ - txge0b7cd23ae8a43df98a8-006571d038
status: 204 No Content
code: 204
duration: ""
@@ -1590,12 +1630,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.275 (go1.20.4; linux; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230621T122033Z
- url: https://test-acc-scaleway-object-by-content-6785364661981614062.s3.fr-par.scw.cloud/
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-by-content-1270079004718449898.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1605,11 +1645,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Wed, 21 Jun 2023 12:20:33 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - txd6ee7b0accfd463fa8075-006492eb11
+ - tx934c5088f0894e41a5969-006571d038
X-Amz-Request-Id:
- - txd6ee7b0accfd463fa8075-006492eb11
+ - tx934c5088f0894e41a5969-006571d038
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-hash.cassette.yaml b/scaleway/testdata/object-hash.cassette.yaml
index 4563780a02..55d34e2e16 100644
--- a/scaleway/testdata/object-hash.cassette.yaml
+++ b/scaleway/testdata/object-hash.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132844Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:47 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
Location:
- - /test-acc-scaleway-object-hash-4068375972435142137
+ - /test-acc-scaleway-object-hash-8096247757745179580
X-Amz-Id-2:
- - tx57613284e9344f5cada3f-0063ee2f8d
+ - txgcceedc2836444cfe81cb-006571d035
X-Amz-Request-Id:
- - tx57613284e9344f5cada3f-0063ee2f8d
+ - txgcceedc2836444cfe81cb-006571d035
status: 200 OK
code: 200
duration: ""
@@ -46,28 +44,26 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132847Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:47 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx6dcc765a83804cfa8603e-0063ee2f8f
+ - txgde1109463e71423784c4-006571d035
X-Amz-Request-Id:
- - tx6dcc765a83804cfa8603e-0063ee2f8f
- status: 204 No Content
- code: 204
+ - txgde1109463e71423784c4-006571d035
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -76,28 +72,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132847Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:47 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txfcfbd71dae1d4c85ac876-0063ee2f8f
+ - txg87b5d26e86764d798cc2-006571d035
X-Amz-Request-Id:
- - txfcfbd71dae1d4c85ac876-0063ee2f8f
+ - txg87b5d26e86764d798cc2-006571d035
status: 200 OK
code: 200
duration: ""
@@ -110,56 +104,54 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132847Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:48 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx505b51ccc4cf445bb710a-0063ee2f90
+ - txgd4d7034eef0f45c183f8-006571d035
X-Amz-Request-Id:
- - tx505b51ccc4cf445bb710a-0063ee2f90
- status: 204 No Content
- code: 204
+ - txgd4d7034eef0f45c183f8-006571d035
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132848Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:48 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx88b2e72e3f664c589b45b-0063ee2f90
+ - txgb0585e9e02e64722b0e7-006571d035
X-Amz-Request-Id:
- - tx88b2e72e3f664c589b45b-0063ee2f90
+ - txgb0585e9e02e64722b0e7-006571d035
status: 200 OK
code: 200
duration: ""
@@ -168,26 +160,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132848Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx0ae75d55e30941caaecde-0063ee2f91
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-hash-8096247757745179580txg0f9a17ed8da8465398e0-006571d035
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:49 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx0ae75d55e30941caaecde-0063ee2f91
+ - txg0f9a17ed8da8465398e0-006571d035
X-Amz-Request-Id:
- - tx0ae75d55e30941caaecde-0063ee2f91
+ - txg0f9a17ed8da8465398e0-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -196,28 +189,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132849Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-hash-40683759724351421371000false
+
+ test-acc-scaleway-object-hash-80962477577451795801000false
headers:
Content-Length:
- - "271"
+ - "275"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:49 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx8583ffcb57d64e49b7db1-0063ee2f91
+ - txgb2658e2bb65a469ba993-006571d035
X-Amz-Request-Id:
- - tx8583ffcb57d64e49b7db1-0063ee2f91
+ - txgb2658e2bb65a469ba993-006571d035
status: 200 OK
code: 200
duration: ""
@@ -226,26 +219,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132849Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:50 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx0a483b9af82647fba9742-0063ee2f91
+ - txgd26393e784c243b5be80-006571d035
X-Amz-Request-Id:
- - tx0a483b9af82647fba9742-0063ee2f91
+ - txgd26393e784c243b5be80-006571d035
status: 200 OK
code: 200
duration: ""
@@ -254,26 +249,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132849Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx5397f37ff953467db15fa-0063ee2f92
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txg22b6ea3359514179a7f1-006571d035
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:50 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx5397f37ff953467db15fa-0063ee2f92
+ - txg22b6ea3359514179a7f1-006571d035
X-Amz-Request-Id:
- - tx5397f37ff953467db15fa-0063ee2f92
+ - txg22b6ea3359514179a7f1-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -282,28 +278,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132850Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:50 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx790eea5d7ff74b388cca8-0063ee2f92
+ - txg6fe6672b80e34af59ebe-006571d035
X-Amz-Request-Id:
- - tx790eea5d7ff74b388cca8-0063ee2f92
+ - txg6fe6672b80e34af59ebe-006571d035
status: 200 OK
code: 200
duration: ""
@@ -312,26 +308,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132850Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txa1b7181152584a13a51fd-0063ee2f92
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txgbc0edd51db2b44f58c21-006571d035
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:50 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txa1b7181152584a13a51fd-0063ee2f92
+ - txgbc0edd51db2b44f58c21-006571d035
X-Amz-Request-Id:
- - txa1b7181152584a13a51fd-0063ee2f92
+ - txgbc0edd51db2b44f58c21-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -342,12 +339,12 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132850Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -357,17 +354,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:52 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:51 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx783f3e45aa764604a316f-0063ee2f93
+ - tx255633f14db942a0a2de7-006571d036
X-Amz-Request-Id:
- - tx783f3e45aa764604a316f-0063ee2f93
+ - tx255633f14db942a0a2de7-006571d036
X-Amz-Version-Id:
- - "1676554131415627"
+ - "1701957686130772"
status: 200 OK
code: 200
duration: ""
@@ -376,12 +373,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132852Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -393,17 +390,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:53 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:51 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - txcfe895151fbd47b781818-0063ee2f95
+ - txgab98693674574076ac24-006571d036
X-Amz-Request-Id:
- - txcfe895151fbd47b781818-0063ee2f95
- X-Amz-Version-Id:
- - "1676554131415627"
+ - txgab98693674574076ac24-006571d036
status: 200 OK
code: 200
duration: ""
@@ -412,30 +407,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132853Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:53 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - txa337a1129d4f4daba16a5-0063ee2f95
+ - txgc78c0d929108475e85c4-006571d036
X-Amz-Request-Id:
- - txa337a1129d4f4daba16a5-0063ee2f95
- X-Amz-Version-Id:
- - "1676554131415627"
+ - txgc78c0d929108475e85c4-006571d036
status: 200 OK
code: 200
duration: ""
@@ -444,28 +437,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132853Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:53 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx3559de6096f94c6aaac9a-0063ee2f95
+ - txg5b80ef3032bb4d35876d-006571d036
X-Amz-Request-Id:
- - tx3559de6096f94c6aaac9a-0063ee2f95
+ - txg5b80ef3032bb4d35876d-006571d036
status: 200 OK
code: 200
duration: ""
@@ -474,12 +467,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132853Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:26 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txg2a35b191ef1d41efbac0-006571d036
+ X-Amz-Request-Id:
+ - txg2a35b191ef1d41efbac0-006571d036
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -491,17 +512,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:54 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:51 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx62ba195bc1324a9e854a9-0063ee2f96
+ - tx71561311eef843409dfb3-006571d036
X-Amz-Request-Id:
- - tx62ba195bc1324a9e854a9-0063ee2f96
+ - tx71561311eef843409dfb3-006571d036
X-Amz-Version-Id:
- - "1676554131415627"
+ - "1701957686130772"
status: 200 OK
code: 200
duration: ""
@@ -510,28 +531,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132854Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:54 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx77ee9791fa734766babbf-0063ee2f96
+ - txg84c2eab03fca43fd9c09-006571d037
X-Amz-Request-Id:
- - tx77ee9791fa734766babbf-0063ee2f96
+ - txg84c2eab03fca43fd9c09-006571d037
status: 200 OK
code: 200
duration: ""
@@ -540,26 +561,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132854Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx091b6928b2b44b84a7374-0063ee2f96
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-hash-8096247757745179580txg2b61b74ed07348d1aaa8-006571d037
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:55 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx091b6928b2b44b84a7374-0063ee2f96
+ - txg2b61b74ed07348d1aaa8-006571d037
X-Amz-Request-Id:
- - tx091b6928b2b44b84a7374-0063ee2f96
+ - txg2b61b74ed07348d1aaa8-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -568,28 +590,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132855Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-hash-40683759724351421371000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:51.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-hash-80962477577451795801000falsemyfile2023-12-07T14:01:26.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:55 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx67a95f924c5d4429a34d9-0063ee2f97
+ - txg1f2d78a7a7144f18a279-006571d037
X-Amz-Request-Id:
- - tx67a95f924c5d4429a34d9-0063ee2f97
+ - txg1f2d78a7a7144f18a279-006571d037
status: 200 OK
code: 200
duration: ""
@@ -598,26 +620,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132855Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:55 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx4da77f804afc428f9e89e-0063ee2f97
+ - txg27693b2198e240ebbd9c-006571d037
X-Amz-Request-Id:
- - tx4da77f804afc428f9e89e-0063ee2f97
+ - txg27693b2198e240ebbd9c-006571d037
status: 200 OK
code: 200
duration: ""
@@ -626,26 +650,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132855Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxbb9f88689bec4d05a85bd-0063ee2f97
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txgfa4e22dc66fe4ab8a9f8-006571d037
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:55 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txbb9f88689bec4d05a85bd-0063ee2f97
+ - txgfa4e22dc66fe4ab8a9f8-006571d037
X-Amz-Request-Id:
- - txbb9f88689bec4d05a85bd-0063ee2f97
+ - txgfa4e22dc66fe4ab8a9f8-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -654,28 +679,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132855Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:56 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx446a9bbe174349e89907d-0063ee2f97
+ - txga2a1b9b22c2640c2bd2e-006571d037
X-Amz-Request-Id:
- - tx446a9bbe174349e89907d-0063ee2f97
+ - txga2a1b9b22c2640c2bd2e-006571d037
status: 200 OK
code: 200
duration: ""
@@ -684,26 +709,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132856Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txdfa20a68f8194e368fb60-0063ee2f98
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txg8308bb4239c546dba9cd-006571d037
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:56 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txdfa20a68f8194e368fb60-0063ee2f98
+ - txg8308bb4239c546dba9cd-006571d037
X-Amz-Request-Id:
- - txdfa20a68f8194e368fb60-0063ee2f98
+ - txg8308bb4239c546dba9cd-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -712,12 +738,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132856Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -729,17 +755,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:56 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:51 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - txa151e340fb6e4e0390b62-0063ee2f98
+ - txg50b09bed4a2b4bb2aa6c-006571d037
X-Amz-Request-Id:
- - txa151e340fb6e4e0390b62-0063ee2f98
- X-Amz-Version-Id:
- - "1676554131415627"
+ - txg50b09bed4a2b4bb2aa6c-006571d037
status: 200 OK
code: 200
duration: ""
@@ -748,30 +772,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132856Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:56 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx11f483b262bc415d87165-0063ee2f98
+ - txg0528ed12f1e14c6ea0cd-006571d037
X-Amz-Request-Id:
- - tx11f483b262bc415d87165-0063ee2f98
- X-Amz-Version-Id:
- - "1676554131415627"
+ - txg0528ed12f1e14c6ea0cd-006571d037
status: 200 OK
code: 200
duration: ""
@@ -780,28 +802,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132856Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:56 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx029006e343d4499095bfc-0063ee2f98
+ - txg38716cd1c63e482390f8-006571d037
X-Amz-Request-Id:
- - tx029006e343d4499095bfc-0063ee2f98
+ - txg38716cd1c63e482390f8-006571d037
status: 200 OK
code: 200
duration: ""
@@ -810,28 +832,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132857Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:57 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - txe99b607129fd4a4a84c64-0063ee2f99
+ - txg3dca35fd56e743c591f4-006571d038
X-Amz-Request-Id:
- - txe99b607129fd4a4a84c64-0063ee2f99
+ - txg3dca35fd56e743c591f4-006571d038
status: 200 OK
code: 200
duration: ""
@@ -840,26 +862,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132857Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx96011c59c6864634b4310-0063ee2f99
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-hash-8096247757745179580txg1bae6b596e9940aaa353-006571d038
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:57 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx96011c59c6864634b4310-0063ee2f99
+ - txg1bae6b596e9940aaa353-006571d038
X-Amz-Request-Id:
- - tx96011c59c6864634b4310-0063ee2f99
+ - txg1bae6b596e9940aaa353-006571d038
status: 404 Not Found
code: 404
duration: ""
@@ -868,28 +891,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132857Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-hash-40683759724351421371000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:51.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-hash-80962477577451795801000falsemyfile2023-12-07T14:01:26.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:58 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx04c79a2ef2d14aa9bd712-0063ee2f99
+ - txg4cb8459ff1db456a829f-006571d038
X-Amz-Request-Id:
- - tx04c79a2ef2d14aa9bd712-0063ee2f99
+ - txg4cb8459ff1db456a829f-006571d038
status: 200 OK
code: 200
duration: ""
@@ -898,26 +921,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132858Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:58 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx71657580217b400989c09-0063ee2f9a
+ - txgdd3ff56c3c244d3b8ea8-006571d038
X-Amz-Request-Id:
- - tx71657580217b400989c09-0063ee2f9a
+ - txgdd3ff56c3c244d3b8ea8-006571d038
status: 200 OK
code: 200
duration: ""
@@ -926,26 +951,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132858Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx1d554aec089549ef83406-0063ee2f9a
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txgbed0b3605a85411b803e-006571d038
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:59 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx1d554aec089549ef83406-0063ee2f9a
+ - txgbed0b3605a85411b803e-006571d038
X-Amz-Request-Id:
- - tx1d554aec089549ef83406-0063ee2f9a
+ - txgbed0b3605a85411b803e-006571d038
status: 404 Not Found
code: 404
duration: ""
@@ -954,28 +980,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132858Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:59 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx4a94821e1f714d0b946ba-0063ee2f9b
+ - txgc1af6777323c4a0c8ea1-006571d038
X-Amz-Request-Id:
- - tx4a94821e1f714d0b946ba-0063ee2f9b
+ - txgc1af6777323c4a0c8ea1-006571d038
status: 200 OK
code: 200
duration: ""
@@ -984,26 +1010,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132859Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx3f96ba921a44497c9e593-0063ee2f9b
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txgde95e31a18684d1b8ff8-006571d038
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:59 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx3f96ba921a44497c9e593-0063ee2f9b
+ - txgde95e31a18684d1b8ff8-006571d038
X-Amz-Request-Id:
- - tx3f96ba921a44497c9e593-0063ee2f9b
+ - txgde95e31a18684d1b8ff8-006571d038
status: 404 Not Found
code: 404
duration: ""
@@ -1012,12 +1039,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132859Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1029,17 +1056,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:29:00 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:51 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx98ecaa14e84d4195b58d7-0063ee2f9b
+ - txgf2f40c892a3b42118bac-006571d038
X-Amz-Request-Id:
- - tx98ecaa14e84d4195b58d7-0063ee2f9b
- X-Amz-Version-Id:
- - "1676554131415627"
+ - txgf2f40c892a3b42118bac-006571d038
status: 200 OK
code: 200
duration: ""
@@ -1048,30 +1073,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132900Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:00 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - txc5516df1e7ab4eaf889e5-0063ee2f9c
+ - txg6bc57418a9a947589c58-006571d038
X-Amz-Request-Id:
- - txc5516df1e7ab4eaf889e5-0063ee2f9c
- X-Amz-Version-Id:
- - "1676554131415627"
+ - txg6bc57418a9a947589c58-006571d038
status: 200 OK
code: 200
duration: ""
@@ -1080,28 +1103,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132900Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:00 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx7174d2b1b91048a8a28e9-0063ee2f9c
+ - txga1617f129dc34921ba61-006571d038
X-Amz-Request-Id:
- - tx7174d2b1b91048a8a28e9-0063ee2f9c
+ - txga1617f129dc34921ba61-006571d038
status: 200 OK
code: 200
duration: ""
@@ -1112,14 +1135,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132900Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140129Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -1129,17 +1152,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
X-Amz-Id-2:
- - txf64ec711285b469898aa7-0063ee2f9c
+ - tx3afcb860930d448ea84d7-006571d039
X-Amz-Request-Id:
- - txf64ec711285b469898aa7-0063ee2f9c
+ - tx3afcb860930d448ea84d7-006571d039
X-Amz-Version-Id:
- - "1676554141055661"
+ - "1701957689316401"
status: 200 OK
code: 200
duration: ""
@@ -1150,14 +1173,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132901Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140129Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -1167,17 +1190,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
X-Amz-Id-2:
- - txd378587b19034464bf294-0063ee2f9d
+ - tx4c28b2e713dd4574a3438-006571d039
X-Amz-Request-Id:
- - txd378587b19034464bf294-0063ee2f9d
+ - tx4c28b2e713dd4574a3438-006571d039
X-Amz-Version-Id:
- - "1676554141344877"
+ - "1701957689722892"
status: 200 OK
code: 200
duration: ""
@@ -1186,12 +1209,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132901Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140129Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1203,17 +1226,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
X-Amz-Id-2:
- - tx5178fc03b8b44e05876f0-0063ee2f9d
+ - txg64dc25ecb03346aca08c-006571d039
X-Amz-Request-Id:
- - tx5178fc03b8b44e05876f0-0063ee2f9d
- X-Amz-Version-Id:
- - "1676554141344877"
+ - txg64dc25ecb03346aca08c-006571d039
status: 200 OK
code: 200
duration: ""
@@ -1222,30 +1243,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132901Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140129Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:02 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
X-Amz-Id-2:
- - tx4eb44bb587f940b2b2391-0063ee2f9d
+ - txg50337a8d8f7d49e3a134-006571d039
X-Amz-Request-Id:
- - tx4eb44bb587f940b2b2391-0063ee2f9d
- X-Amz-Version-Id:
- - "1676554141344877"
+ - txg50337a8d8f7d49e3a134-006571d039
status: 200 OK
code: 200
duration: ""
@@ -1254,28 +1273,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132902Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140129Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:29 GMT
+ X-Amz-Id-2:
+ - txg104af0937fc5462da79b-006571d039
+ X-Amz-Request-Id:
+ - txg104af0937fc5462da79b-006571d039
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:29:02 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx21fa25fbc538446ca6547-0063ee2f9e
+ - txg2aa9ae790e534af38f2e-006571d03a
X-Amz-Request-Id:
- - tx21fa25fbc538446ca6547-0063ee2f9e
+ - txg2aa9ae790e534af38f2e-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1284,12 +1331,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132902Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -1301,17 +1348,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:29:02 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
X-Amz-Id-2:
- - txc22f8f77f82d4c98bb402-0063ee2f9e
+ - txcc94a0cf2af44457a24a5-006571d03a
X-Amz-Request-Id:
- - txc22f8f77f82d4c98bb402-0063ee2f9e
+ - txcc94a0cf2af44457a24a5-006571d03a
X-Amz-Version-Id:
- - "1676554141344877"
+ - "1701957689722892"
status: 200 OK
code: 200
duration: ""
@@ -1320,28 +1367,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132902Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - txfca50e4172e644fcb161e-0063ee2f9e
+ - txga6a74a8f36904d7a821e-006571d03a
X-Amz-Request-Id:
- - txfca50e4172e644fcb161e-0063ee2f9e
+ - txga6a74a8f36904d7a821e-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1350,26 +1397,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132902Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxeebb0e1612934425a6b5c-0063ee2f9f
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-hash-8096247757745179580txg4f980782ee6d431484d4-006571d03a
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - txeebb0e1612934425a6b5c-0063ee2f9f
+ - txg4f980782ee6d431484d4-006571d03a
X-Amz-Request-Id:
- - txeebb0e1612934425a6b5c-0063ee2f9f
+ - txg4f980782ee6d431484d4-006571d03a
status: 404 Not Found
code: 404
duration: ""
@@ -1378,28 +1426,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-hash-40683759724351421371000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:29:01.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-hash-80962477577451795801000falsemyfile2023-12-07T14:01:29.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - txa4be65d3e1e646c9845f2-0063ee2f9f
+ - txgf0b9da2800df4b729000-006571d03a
X-Amz-Request-Id:
- - txa4be65d3e1e646c9845f2-0063ee2f9f
+ - txgf0b9da2800df4b729000-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1408,26 +1456,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - tx4d0f0198cc7b41f8b431f-0063ee2f9f
+ - txg9a9a39131f544dce84fe-006571d03a
X-Amz-Request-Id:
- - tx4d0f0198cc7b41f8b431f-0063ee2f9f
+ - txg9a9a39131f544dce84fe-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1436,26 +1486,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx7eb5e48296594e22bd750-0063ee2f9f
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txg61d5013473e74a6c8a31-006571d03a
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - tx7eb5e48296594e22bd750-0063ee2f9f
+ - txg61d5013473e74a6c8a31-006571d03a
X-Amz-Request-Id:
- - tx7eb5e48296594e22bd750-0063ee2f9f
+ - txg61d5013473e74a6c8a31-006571d03a
status: 404 Not Found
code: 404
duration: ""
@@ -1464,28 +1515,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - txcc01321202ac4a42ad586-0063ee2f9f
+ - txgf679da5055bb48148e95-006571d03a
X-Amz-Request-Id:
- - txcc01321202ac4a42ad586-0063ee2f9f
+ - txgf679da5055bb48148e95-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1494,26 +1545,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx4ab48c206bdc499597e97-0063ee2f9f
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-hash-8096247757745179580txg053bc16354c446879505-006571d03a
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - tx4ab48c206bdc499597e97-0063ee2f9f
+ - txg053bc16354c446879505-006571d03a
X-Amz-Request-Id:
- - tx4ab48c206bdc499597e97-0063ee2f9f
+ - txg053bc16354c446879505-006571d03a
status: 404 Not Found
code: 404
duration: ""
@@ -1522,12 +1574,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1539,17 +1591,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:29:03 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:29:01 GMT
+ - Thu, 07 Dec 2023 14:01:29 GMT
X-Amz-Id-2:
- - tx0b06bd6c3b054dcfa7fda-0063ee2f9f
+ - txg39f76648e5854cceaf65-006571d03a
X-Amz-Request-Id:
- - tx0b06bd6c3b054dcfa7fda-0063ee2f9f
- X-Amz-Version-Id:
- - "1676554141344877"
+ - txg39f76648e5854cceaf65-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1558,30 +1608,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:04 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - tx7eb797dd8c914ec7ab016-0063ee2f9f
+ - txg2f622ca89a9e4beeaeb6-006571d03a
X-Amz-Request-Id:
- - tx7eb797dd8c914ec7ab016-0063ee2f9f
- X-Amz-Version-Id:
- - "1676554141344877"
+ - txg2f622ca89a9e4beeaeb6-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1590,28 +1638,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132903Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140130Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:29:04 GMT
+ - Thu, 07 Dec 2023 14:01:30 GMT
X-Amz-Id-2:
- - tx33968ea8b2c34294b9284-0063ee2fa0
+ - txg1116550b9fb74d5ca8cd-006571d03a
X-Amz-Request-Id:
- - tx33968ea8b2c34294b9284-0063ee2fa0
+ - txg1116550b9fb74d5ca8cd-006571d03a
status: 200 OK
code: 200
duration: ""
@@ -1620,26 +1668,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132904Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/myfile
+ - 20231207T140131Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:29:04 GMT
+ - Thu, 07 Dec 2023 14:01:31 GMT
X-Amz-Id-2:
- - tx7b3a21b2a5b04fe7a002b-0063ee2fa0
+ - txg5ec8b5b42fe94a089b0e-006571d03b
X-Amz-Request-Id:
- - tx7b3a21b2a5b04fe7a002b-0063ee2fa0
+ - txg5ec8b5b42fe94a089b0e-006571d03b
status: 204 No Content
code: 204
duration: ""
@@ -1648,12 +1692,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132904Z
- url: https://test-acc-scaleway-object-hash-4068375972435142137.s3.fr-par.scw.cloud/
+ - 20231207T140131Z
+ url: https://test-acc-scaleway-object-hash-8096247757745179580.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1663,11 +1707,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:29:05 GMT
+ - Thu, 07 Dec 2023 14:01:31 GMT
X-Amz-Id-2:
- - tx4f19f1b067ee41b4be8bc-0063ee2fa1
+ - txaade1c7d8c9640ebbc3ce-006571d03b
X-Amz-Request-Id:
- - tx4f19f1b067ee41b4be8bc-0063ee2fa1
+ - txaade1c7d8c9640ebbc3ce-006571d03b
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-metadata.cassette.yaml b/scaleway/testdata/object-metadata.cassette.yaml
index 2e5329b2b9..14488661a0 100644
--- a/scaleway/testdata/object-metadata.cassette.yaml
+++ b/scaleway/testdata/object-metadata.cassette.yaml
@@ -2,72 +2,68 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132645Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:47 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-metadata-365034375410600024
+ - /test-acc-scaleway-object-metadata-1780509641164139249
X-Amz-Id-2:
- - txd76097808e38483a81535-0063ee2f16
+ - txgeb6154011de94b9dafc3-006571d027
X-Amz-Request-Id:
- - txd76097808e38483a81535-0063ee2f16
+ - txgeb6154011de94b9dafc3-006571d027
status: 200 OK
code: 200
duration: ""
- request:
- body: barfoo
+ body: foobar
form: {}
headers:
Content-Length:
- "127"
Content-Md5:
- - 0WBWkA38piikJr5tP3fQMQ==
+ - GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- - a50e4ebc0e04bba8a5e11bfdafc2dd658697c169b625f8e3478b5af875fad7e5
+ - d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132647Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:48 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx56ce66188a08437291c56-0063ee2f17
+ - txg81ce63f17c5146e99102-006571d028
X-Amz-Request-Id:
- - tx56ce66188a08437291c56-0063ee2f17
- status: 204 No Content
- code: 204
+ - txg81ce63f17c5146e99102-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -76,28 +72,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132648Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:48 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txbd1f806f6caa486eb210e-0063ee2f18
+ - txg83cd80bb68f5425eacc0-006571d028
X-Amz-Request-Id:
- - txbd1f806f6caa486eb210e-0063ee2f18
+ - txg83cd80bb68f5425eacc0-006571d028
status: 200 OK
code: 200
duration: ""
@@ -110,56 +104,54 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132648Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txcbb5c35b1e8748ffb6047-0063ee2f18
+ - txge078f631aff5429c8769-006571d028
X-Amz-Request-Id:
- - txcbb5c35b1e8748ffb6047-0063ee2f18
- status: 204 No Content
- code: 204
+ - txge078f631aff5429c8769-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132649Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx0341653f3cbe4658a6850-0063ee2f19
+ - txge44957803ac64216b016-006571d028
X-Amz-Request-Id:
- - tx0341653f3cbe4658a6850-0063ee2f19
+ - txge44957803ac64216b016-006571d028
status: 200 OK
code: 200
duration: ""
@@ -168,26 +160,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132649Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx161cc74c5cfe492cb352a-0063ee2f19
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-metadata-1780509641164139249txgb5b2bdff7a1e428c94a7-006571d028
headers:
+ Content-Length:
+ - "271"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx161cc74c5cfe492cb352a-0063ee2f19
+ - txgb5b2bdff7a1e428c94a7-006571d028
X-Amz-Request-Id:
- - tx161cc74c5cfe492cb352a-0063ee2f19
+ - txgb5b2bdff7a1e428c94a7-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -196,28 +189,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132649Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-metadata-3650343754106000241000false
+
+ test-acc-scaleway-object-metadata-17805096411641392491000false
headers:
Content-Length:
- - "274"
+ - "279"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx2839bd284cec49bcb0b6f-0063ee2f19
+ - txg9f3c6ce6f3c74e68ac22-006571d028
X-Amz-Request-Id:
- - tx2839bd284cec49bcb0b6f-0063ee2f19
+ - txg9f3c6ce6f3c74e68ac22-006571d028
status: 200 OK
code: 200
duration: ""
@@ -226,26 +219,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132649Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx936963da06d543dc92925-0063ee2f19
+ - txgbc96e6faf2e24f6ca53d-006571d028
X-Amz-Request-Id:
- - tx936963da06d543dc92925-0063ee2f19
+ - txgbc96e6faf2e24f6ca53d-006571d028
status: 200 OK
code: 200
duration: ""
@@ -254,26 +249,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132650Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxee08b9d99f8c4a429c706-0063ee2f1a
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg5b25cb229dec4d1f9dae-006571d028
headers:
+ Content-Length:
+ - "239"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txee08b9d99f8c4a429c706-0063ee2f1a
+ - txg5b25cb229dec4d1f9dae-006571d028
X-Amz-Request-Id:
- - txee08b9d99f8c4a429c706-0063ee2f1a
+ - txg5b25cb229dec4d1f9dae-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -282,28 +278,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132650Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txe2f7dec85d2c42538f4dd-0063ee2f1a
+ - txgc612be7369dc48f985e9-006571d028
X-Amz-Request-Id:
- - txe2f7dec85d2c42538f4dd-0063ee2f1a
+ - txgc612be7369dc48f985e9-006571d028
status: 200 OK
code: 200
duration: ""
@@ -312,26 +308,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132650Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txcebc07cefb714b4bb564a-0063ee2f1a
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg495365200ca34750962d-006571d028
headers:
+ Content-Length:
+ - "249"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txcebc07cefb714b4bb564a-0063ee2f1a
+ - txg495365200ca34750962d-006571d028
X-Amz-Request-Id:
- - txcebc07cefb714b4bb564a-0063ee2f1a
+ - txg495365200ca34750962d-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -342,14 +339,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132650Z
+ - 20231207T140112Z
X-Amz-Meta-Key:
- value
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -359,17 +356,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx992d9b498ece4363b5ecc-0063ee2f1a
+ - tx1737546935684397b266a-006571d028
X-Amz-Request-Id:
- - tx992d9b498ece4363b5ecc-0063ee2f1a
+ - tx1737546935684397b266a-006571d028
X-Amz-Version-Id:
- - "1676554011043125"
+ - "1701957672582557"
status: 200 OK
code: 200
duration: ""
@@ -378,12 +375,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132651Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -395,19 +392,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx9a4693002df14b34a66ed-0063ee2f1b
+ - txg4d8d59e9a548459e89ce-006571d028
X-Amz-Meta-Key:
- value
X-Amz-Request-Id:
- - tx9a4693002df14b34a66ed-0063ee2f1b
- X-Amz-Version-Id:
- - "1676554011043125"
+ - txg4d8d59e9a548459e89ce-006571d028
status: 200 OK
code: 200
duration: ""
@@ -416,30 +411,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132651Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx9f4e45091444493188c88-0063ee2f1b
+ - txg87aae04fef2d4189a1df-006571d028
X-Amz-Request-Id:
- - tx9f4e45091444493188c88-0063ee2f1b
- X-Amz-Version-Id:
- - "1676554011043125"
+ - txg87aae04fef2d4189a1df-006571d028
status: 200 OK
code: 200
duration: ""
@@ -448,28 +441,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132652Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg0cf42842980b41838468-006571d028
+ X-Amz-Request-Id:
+ - txg0cf42842980b41838468-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:26:52 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx5e3f7cf014814b0e95008-0063ee2f1c
+ - txg315fc6e220a942778e80-006571d029
X-Amz-Request-Id:
- - tx5e3f7cf014814b0e95008-0063ee2f1c
+ - txg315fc6e220a942778e80-006571d029
status: 200 OK
code: 200
duration: ""
@@ -478,12 +499,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132652Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -495,19 +516,19 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:53 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx50f05b95b169454793a9f-0063ee2f1c
+ - txb9505e91eb4e43fe93c94-006571d029
X-Amz-Meta-Key:
- value
X-Amz-Request-Id:
- - tx50f05b95b169454793a9f-0063ee2f1c
+ - txb9505e91eb4e43fe93c94-006571d029
X-Amz-Version-Id:
- - "1676554011043125"
+ - "1701957672582557"
status: 200 OK
code: 200
duration: ""
@@ -516,28 +537,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132653Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:53 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx79934e4f0a0f4fe3b271e-0063ee2f1d
+ - txg3f7df0a732634ef78e79-006571d02a
X-Amz-Request-Id:
- - tx79934e4f0a0f4fe3b271e-0063ee2f1d
+ - txg3f7df0a732634ef78e79-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -546,26 +567,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132653Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx3fe35ba8e35945b5a00e3-0063ee2f1d
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-metadata-1780509641164139249txg863e52d5860045159cdd-006571d02a
headers:
+ Content-Length:
+ - "271"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:53 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx3fe35ba8e35945b5a00e3-0063ee2f1d
+ - txg863e52d5860045159cdd-006571d02a
X-Amz-Request-Id:
- - tx3fe35ba8e35945b5a00e3-0063ee2f1d
+ - txg863e52d5860045159cdd-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -574,28 +596,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132653Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-metadata-3650343754106000241000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:26:51.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-metadata-17805096411641392491000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "660"
+ - "673"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:54 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txa6b15f13cc964ae293906-0063ee2f1d
+ - txg092e78c5ecee47c28ab0-006571d02a
X-Amz-Request-Id:
- - txa6b15f13cc964ae293906-0063ee2f1d
+ - txg092e78c5ecee47c28ab0-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -604,26 +626,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132653Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:54 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txf14cd0fbb0b54e98b0423-0063ee2f1e
+ - txg91f8b9f1b3f3485aabf4-006571d02a
X-Amz-Request-Id:
- - txf14cd0fbb0b54e98b0423-0063ee2f1e
+ - txg91f8b9f1b3f3485aabf4-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -632,26 +656,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132654Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxb15626c131724559af2ae-0063ee2f1e
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg569f1f0881ff4a7fb584-006571d02a
headers:
+ Content-Length:
+ - "239"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:54 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txb15626c131724559af2ae-0063ee2f1e
+ - txg569f1f0881ff4a7fb584-006571d02a
X-Amz-Request-Id:
- - txb15626c131724559af2ae-0063ee2f1e
+ - txg569f1f0881ff4a7fb584-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -660,28 +685,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132654Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:54 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txcd785131c62844e5886fd-0063ee2f1e
+ - txg820b75491e0b41fbb267-006571d02a
X-Amz-Request-Id:
- - txcd785131c62844e5886fd-0063ee2f1e
+ - txg820b75491e0b41fbb267-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -690,26 +715,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132654Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx9a3800d0ef7d404b9bc04-0063ee2f1e
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg1852c2c3e65b4d3aba88-006571d02a
headers:
+ Content-Length:
+ - "249"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:54 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx9a3800d0ef7d404b9bc04-0063ee2f1e
+ - txg1852c2c3e65b4d3aba88-006571d02a
X-Amz-Request-Id:
- - tx9a3800d0ef7d404b9bc04-0063ee2f1e
+ - txg1852c2c3e65b4d3aba88-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -718,12 +744,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132654Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -735,19 +761,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:55 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txd1ba64bc3dab4b2eb7270-0063ee2f1f
+ - txgad1541d91dc64b1f8268-006571d02a
X-Amz-Meta-Key:
- value
X-Amz-Request-Id:
- - txd1ba64bc3dab4b2eb7270-0063ee2f1f
- X-Amz-Version-Id:
- - "1676554011043125"
+ - txgad1541d91dc64b1f8268-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -756,30 +780,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132654Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:55 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx3b56f505441345b5bc3f5-0063ee2f1f
+ - txg9c70ff0d6ff2441484f3-006571d02a
X-Amz-Request-Id:
- - tx3b56f505441345b5bc3f5-0063ee2f1f
- X-Amz-Version-Id:
- - "1676554011043125"
+ - txg9c70ff0d6ff2441484f3-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -788,28 +810,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132655Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:55 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx6e246699e1db41238cfba-0063ee2f1f
+ - txg8eda711718884b64a8ab-006571d02a
X-Amz-Request-Id:
- - tx6e246699e1db41238cfba-0063ee2f1f
+ - txg8eda711718884b64a8ab-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -818,28 +840,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132655Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:56 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx8bec45a71166448b9816a-0063ee2f20
+ - txg3721ca895f764841b52a-006571d02b
X-Amz-Request-Id:
- - tx8bec45a71166448b9816a-0063ee2f20
+ - txg3721ca895f764841b52a-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -848,26 +870,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132656Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx2c1c20beb3264359a8100-0063ee2f20
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-metadata-1780509641164139249txg5004f6e81abb4178886d-006571d02b
headers:
+ Content-Length:
+ - "271"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:56 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx2c1c20beb3264359a8100-0063ee2f20
+ - txg5004f6e81abb4178886d-006571d02b
X-Amz-Request-Id:
- - tx2c1c20beb3264359a8100-0063ee2f20
+ - txg5004f6e81abb4178886d-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -876,28 +899,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132656Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-metadata-3650343754106000241000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:26:51.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-metadata-17805096411641392491000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "660"
+ - "673"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:56 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txcfa96bef35324c5881e79-0063ee2f20
+ - txg9853ff3c2a3a48d68ec6-006571d02b
X-Amz-Request-Id:
- - txcfa96bef35324c5881e79-0063ee2f20
+ - txg9853ff3c2a3a48d68ec6-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -906,26 +929,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132656Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:56 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx58c5daa329b44a3d9dce4-0063ee2f20
+ - txg82559ff79b4845758d1d-006571d02b
X-Amz-Request-Id:
- - tx58c5daa329b44a3d9dce4-0063ee2f20
+ - txg82559ff79b4845758d1d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -934,26 +959,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132656Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxf3698eebe37c4a7ab6749-0063ee2f20
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg2784d4790acc4991bc31-006571d02b
headers:
+ Content-Length:
+ - "239"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:57 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txf3698eebe37c4a7ab6749-0063ee2f20
+ - txg2784d4790acc4991bc31-006571d02b
X-Amz-Request-Id:
- - txf3698eebe37c4a7ab6749-0063ee2f20
+ - txg2784d4790acc4991bc31-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -962,28 +988,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132656Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:57 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txbb51bdefc4e94e9899d00-0063ee2f21
+ - txg644f7dc3458d4d28a60d-006571d02b
X-Amz-Request-Id:
- - txbb51bdefc4e94e9899d00-0063ee2f21
+ - txg644f7dc3458d4d28a60d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -992,26 +1018,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132657Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txa6f1e5947445483d8f497-0063ee2f21
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg98bf23c5c0f54697bd5d-006571d02b
headers:
+ Content-Length:
+ - "249"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:26:57 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa6f1e5947445483d8f497-0063ee2f21
+ - txg98bf23c5c0f54697bd5d-006571d02b
X-Amz-Request-Id:
- - txa6f1e5947445483d8f497-0063ee2f21
+ - txg98bf23c5c0f54697bd5d-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -1020,12 +1047,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132657Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1037,19 +1064,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:26:57 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:26:51 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txabfdc4306f584c02a9f03-0063ee2f21
+ - txgf254e47dfee8425980d7-006571d02b
X-Amz-Meta-Key:
- value
X-Amz-Request-Id:
- - txabfdc4306f584c02a9f03-0063ee2f21
- X-Amz-Version-Id:
- - "1676554011043125"
+ - txgf254e47dfee8425980d7-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1058,30 +1083,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132657Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:59 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa59fa6e9b1504153b5e94-0063ee2f21
+ - txgfe385908c43e47b7b91f-006571d02b
X-Amz-Request-Id:
- - txa59fa6e9b1504153b5e94-0063ee2f21
- X-Amz-Version-Id:
- - "1676554011043125"
+ - txgfe385908c43e47b7b91f-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1090,28 +1113,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132659Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:26:59 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx3967d424cf6c41feaa062-0063ee2f23
+ - txg8a7a1348e2354850b52e-006571d02b
X-Amz-Request-Id:
- - tx3967d424cf6c41feaa062-0063ee2f23
+ - txg8a7a1348e2354850b52e-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1120,40 +1143,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-metadata-365034375410600024/myfile
+ - test-acc-scaleway-object-metadata-1780509641164139249/myfile
X-Amz-Date:
- - 20230216T132700Z
+ - 20231207T140118Z
X-Amz-Meta-Key:
- other_value
X-Amz-Meta-Other_key:
- VALUE
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: |-
- 2023-02-16T13:27:00.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:01 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:27:00 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txf996e1a644904874aa01c-0063ee2f24
+ - txf7ca545a238b4aabbff8f-006571d02e
X-Amz-Request-Id:
- - txf996e1a644904874aa01c-0063ee2f24
+ - txf7ca545a238b4aabbff8f-006571d02e
X-Amz-Version-Id:
- - "1676554011043125"
+ - "1701957672582557"
status: 200 OK
code: 200
duration: ""
@@ -1164,18 +1187,18 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132701Z
+ - 20231207T140118Z
X-Amz-Meta-Key:
- other_value
X-Amz-Meta-Other_key:
- VALUE
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -1185,17 +1208,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:01 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:01 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txdd1ecc680a9b4cd9aa5eb-0063ee2f25
+ - tx41b11d6d2e8443c6a12b2-006571d02e
X-Amz-Request-Id:
- - txdd1ecc680a9b4cd9aa5eb-0063ee2f25
+ - tx41b11d6d2e8443c6a12b2-006571d02e
X-Amz-Version-Id:
- - "1676554021737389"
+ - "1701957678866061"
status: 200 OK
code: 200
duration: ""
@@ -1204,12 +1227,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132701Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1221,21 +1244,19 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:02 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:01 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx4df52a54c82a4297bf4af-0063ee2f25
+ - txgc3fb4fa08d3c42f392bc-006571d02e
X-Amz-Meta-Key:
- other_value
X-Amz-Meta-Other_key:
- VALUE
X-Amz-Request-Id:
- - tx4df52a54c82a4297bf4af-0063ee2f25
- X-Amz-Version-Id:
- - "1676554021737389"
+ - txgc3fb4fa08d3c42f392bc-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1244,30 +1265,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132701Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:02 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx4a43e80393d14c8bb8ed2-0063ee2f26
+ - txg75c010ba8ecd4789861c-006571d02e
X-Amz-Request-Id:
- - tx4a43e80393d14c8bb8ed2-0063ee2f26
- X-Amz-Version-Id:
- - "1676554021737389"
+ - txg75c010ba8ecd4789861c-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1276,28 +1295,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132702Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:19 GMT
+ X-Amz-Id-2:
+ - txg6216eec37c09415faa31-006571d02f
+ X-Amz-Request-Id:
+ - txg6216eec37c09415faa31-006571d02f
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:27:02 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx7b5ec797c70043a7a4903-0063ee2f26
+ - txge020d1a1350a4e17bff5-006571d02f
X-Amz-Request-Id:
- - tx7b5ec797c70043a7a4903-0063ee2f26
+ - txge020d1a1350a4e17bff5-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1306,12 +1353,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132702Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -1323,21 +1370,21 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:02 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:01 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx4f6fa251e9ff431182772-0063ee2f26
+ - txf6bb061684a8499a9115b-006571d02f
X-Amz-Meta-Key:
- other_value
X-Amz-Meta-Other_key:
- VALUE
X-Amz-Request-Id:
- - tx4f6fa251e9ff431182772-0063ee2f26
+ - txf6bb061684a8499a9115b-006571d02f
X-Amz-Version-Id:
- - "1676554021737389"
+ - "1701957678866061"
status: 200 OK
code: 200
duration: ""
@@ -1346,28 +1393,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132702Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:02 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx9e9572541830484694470-0063ee2f26
+ - txg6b80a054cfdb4479a115-006571d031
X-Amz-Request-Id:
- - tx9e9572541830484694470-0063ee2f26
+ - txg6b80a054cfdb4479a115-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1376,26 +1423,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132702Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx8e5190faa1434c648d87c-0063ee2f26
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-metadata-1780509641164139249txg5bf223963be84190b27b-006571d031
headers:
+ Content-Length:
+ - "271"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:03 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx8e5190faa1434c648d87c-0063ee2f26
+ - txg5bf223963be84190b27b-006571d031
X-Amz-Request-Id:
- - tx8e5190faa1434c648d87c-0063ee2f26
+ - txg5bf223963be84190b27b-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1404,28 +1452,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132703Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-metadata-3650343754106000241000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:01.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-metadata-17805096411641392491000falsemyfile2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "660"
+ - "673"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:03 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txd9b3cf49292341578c3dc-0063ee2f27
+ - txg7ec991452563462a8218-006571d031
X-Amz-Request-Id:
- - txd9b3cf49292341578c3dc-0063ee2f27
+ - txg7ec991452563462a8218-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1434,26 +1482,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132703Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:03 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txab26eb77e2e94c7d84ef0-0063ee2f27
+ - txg476c715feafd4aeabc45-006571d031
X-Amz-Request-Id:
- - txab26eb77e2e94c7d84ef0-0063ee2f27
+ - txg476c715feafd4aeabc45-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1462,26 +1512,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132703Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx346f9b2ab51e4d7c83a5d-0063ee2f27
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg501f427966384e319834-006571d031
headers:
+ Content-Length:
+ - "239"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:03 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx346f9b2ab51e4d7c83a5d-0063ee2f27
+ - txg501f427966384e319834-006571d031
X-Amz-Request-Id:
- - tx346f9b2ab51e4d7c83a5d-0063ee2f27
+ - txg501f427966384e319834-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1490,28 +1541,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132703Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:03 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx5e3faf61625d4cf69b0b0-0063ee2f27
+ - txgf75fd97dec7e428b8950-006571d031
X-Amz-Request-Id:
- - tx5e3faf61625d4cf69b0b0-0063ee2f27
+ - txgf75fd97dec7e428b8950-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1520,26 +1571,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132703Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txd986034e3cf94432bcf6f-0063ee2f27
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-metadata-1780509641164139249txg60539654a4e34fcfa17c-006571d031
headers:
+ Content-Length:
+ - "249"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:04 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txd986034e3cf94432bcf6f-0063ee2f27
+ - txg60539654a4e34fcfa17c-006571d031
X-Amz-Request-Id:
- - txd986034e3cf94432bcf6f-0063ee2f27
+ - txg60539654a4e34fcfa17c-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1548,12 +1600,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132704Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1565,21 +1617,19 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:04 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:01 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txbfbe94a47f0a4707b379e-0063ee2f28
+ - txg68e408126125490dbf91-006571d031
X-Amz-Meta-Key:
- other_value
X-Amz-Meta-Other_key:
- VALUE
X-Amz-Request-Id:
- - txbfbe94a47f0a4707b379e-0063ee2f28
- X-Amz-Version-Id:
- - "1676554021737389"
+ - txg68e408126125490dbf91-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1588,30 +1638,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132704Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:04 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx278f0658ef40442ea796e-0063ee2f28
+ - txg79f0e6400d7540dc8152-006571d031
X-Amz-Request-Id:
- - tx278f0658ef40442ea796e-0063ee2f28
- X-Amz-Version-Id:
- - "1676554021737389"
+ - txg79f0e6400d7540dc8152-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1620,28 +1668,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132704Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:04 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txc42c5eb5d82d46f6bf865-0063ee2f28
+ - txg05ae68229f60419c9a38-006571d031
X-Amz-Request-Id:
- - txc42c5eb5d82d46f6bf865-0063ee2f28
+ - txg05ae68229f60419c9a38-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1650,26 +1698,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132704Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/myfile
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:05 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx6210dce70be9465581849-0063ee2f29
+ - txg8f4b1589360440d5ab49-006571d033
X-Amz-Request-Id:
- - tx6210dce70be9465581849-0063ee2f29
+ - txg8f4b1589360440d5ab49-006571d033
status: 204 No Content
code: 204
duration: ""
@@ -1678,12 +1722,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132705Z
- url: https://test-acc-scaleway-object-metadata-365034375410600024.s3.fr-par.scw.cloud/
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-metadata-1780509641164139249.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1693,11 +1737,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:06 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - txfc4643658590457293e9f-0063ee2f29
+ - txb01c123ca0114ee6a58a5-006571d033
X-Amz-Request-Id:
- - txfc4643658590457293e9f-0063ee2f29
+ - txb01c123ca0114ee6a58a5-006571d033
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-move.cassette.yaml b/scaleway/testdata/object-move.cassette.yaml
index 92f6f5d768..4609451de2 100644
--- a/scaleway/testdata/object-move.cassette.yaml
+++ b/scaleway/testdata/object-move.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132801Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:03 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-move-3781173104235232429
+ - /test-acc-scaleway-object-move-2444466610373103462
X-Amz-Id-2:
- - tx60f6cf107724452088057-0063ee2f61
+ - txg02bdd9ca01314859be2e-006571d027
X-Amz-Request-Id:
- - tx60f6cf107724452088057-0063ee2f61
+ - txg02bdd9ca01314859be2e-006571d027
status: 200 OK
code: 200
duration: ""
@@ -46,28 +44,26 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132803Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:03 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx19b6929133104e54aeca1-0063ee2f63
+ - txg0a3560d73a4a4ef38cc5-006571d028
X-Amz-Request-Id:
- - tx19b6929133104e54aeca1-0063ee2f63
- status: 204 No Content
- code: 204
+ - txg0a3560d73a4a4ef38cc5-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -76,28 +72,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132804Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:04 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa73eb342e94a4832bfef5-0063ee2f64
+ - txg8c92adf21b5b4f59955d-006571d028
X-Amz-Request-Id:
- - txa73eb342e94a4832bfef5-0063ee2f64
+ - txg8c92adf21b5b4f59955d-006571d028
status: 200 OK
code: 200
duration: ""
@@ -110,56 +104,54 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132804Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:12 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx96231910a9554a5aa093b-0063ee2f64
+ - txgc0d0085b385e451c9155-006571d028
X-Amz-Request-Id:
- - tx96231910a9554a5aa093b-0063ee2f64
- status: 204 No Content
- code: 204
+ - txgc0d0085b385e451c9155-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132812Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:12 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx7482f9bf35f14780b380d-0063ee2f6c
+ - txg7840569fa18244e6a194-006571d028
X-Amz-Request-Id:
- - tx7482f9bf35f14780b380d-0063ee2f6c
+ - txg7840569fa18244e6a194-006571d028
status: 200 OK
code: 200
duration: ""
@@ -168,26 +160,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132812Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx590c1124727441598c138-0063ee2f6c
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-move-2444466610373103462txg2a94a71b9e17481cad45-006571d028
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:13 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx590c1124727441598c138-0063ee2f6c
+ - txg2a94a71b9e17481cad45-006571d028
X-Amz-Request-Id:
- - tx590c1124727441598c138-0063ee2f6c
+ - txg2a94a71b9e17481cad45-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -196,28 +189,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132813Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-move-37811731042352324291000false
+
+ test-acc-scaleway-object-move-24444666103731034621000false
headers:
Content-Length:
- - "271"
+ - "275"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:13 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx17ded067455e4cf8ac038-0063ee2f6d
+ - txgda67400a5dfa415d8d9f-006571d028
X-Amz-Request-Id:
- - tx17ded067455e4cf8ac038-0063ee2f6d
+ - txgda67400a5dfa415d8d9f-006571d028
status: 200 OK
code: 200
duration: ""
@@ -226,26 +219,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132813Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:13 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx207bc52197e64c9faa973-0063ee2f6d
+ - txg8cc5af2415c043dc8248-006571d028
X-Amz-Request-Id:
- - tx207bc52197e64c9faa973-0063ee2f6d
+ - txg8cc5af2415c043dc8248-006571d028
status: 200 OK
code: 200
duration: ""
@@ -254,26 +249,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132814Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx0122243b7589414a9d576-0063ee2f6e
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txg52471bbc9b3544f19eaf-006571d028
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx0122243b7589414a9d576-0063ee2f6e
+ - txg52471bbc9b3544f19eaf-006571d028
X-Amz-Request-Id:
- - tx0122243b7589414a9d576-0063ee2f6e
+ - txg52471bbc9b3544f19eaf-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -282,28 +278,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132814Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa784d1da5df142c381a4f-0063ee2f6e
+ - txg3b72839c95f845f2bd7d-006571d028
X-Amz-Request-Id:
- - txa784d1da5df142c381a4f-0063ee2f6e
+ - txg3b72839c95f845f2bd7d-006571d028
status: 200 OK
code: 200
duration: ""
@@ -312,26 +308,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132814Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx6dc5a9ea120f4fee86246-0063ee2f6e
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txge05003c88b1246778c83-006571d028
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx6dc5a9ea120f4fee86246-0063ee2f6e
+ - txge05003c88b1246778c83-006571d028
X-Amz-Request-Id:
- - tx6dc5a9ea120f4fee86246-0063ee2f6e
+ - txge05003c88b1246778c83-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -342,12 +339,12 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132814Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -357,17 +354,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:15 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx838ce4ec6d9c40878a132-0063ee2f6e
+ - tx3613018358774879a93ab-006571d028
X-Amz-Request-Id:
- - tx838ce4ec6d9c40878a132-0063ee2f6e
+ - tx3613018358774879a93ab-006571d028
X-Amz-Version-Id:
- - "1676554094995335"
+ - "1701957672603388"
status: 200 OK
code: 200
duration: ""
@@ -376,12 +373,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132815Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -393,17 +390,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:15 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx178717b3b5464dbb972b6-0063ee2f6f
+ - txg8775681744374322804b-006571d028
X-Amz-Request-Id:
- - tx178717b3b5464dbb972b6-0063ee2f6f
- X-Amz-Version-Id:
- - "1676554094995335"
+ - txg8775681744374322804b-006571d028
status: 200 OK
code: 200
duration: ""
@@ -412,30 +407,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132815Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:15 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - txb4de6fdab2dd4a149f3a2-0063ee2f6f
+ - txg7807eae1b7cd4bdeaa77-006571d029
X-Amz-Request-Id:
- - txb4de6fdab2dd4a149f3a2-0063ee2f6f
- X-Amz-Version-Id:
- - "1676554094995335"
+ - txg7807eae1b7cd4bdeaa77-006571d029
status: 200 OK
code: 200
duration: ""
@@ -444,28 +437,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132815Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:15 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx6b3c5e78f4aa496797590-0063ee2f6f
+ - txg14030675b01c4e1fb2c3-006571d029
X-Amz-Request-Id:
- - tx6b3c5e78f4aa496797590-0063ee2f6f
+ - txg14030675b01c4e1fb2c3-006571d029
status: 200 OK
code: 200
duration: ""
@@ -474,12 +467,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132815Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txge028fa1fe4a643779558-006571d029
+ X-Amz-Request-Id:
+ - txge028fa1fe4a643779558-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -491,17 +512,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:16 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txe2e476ace82e4bc8a7f6d-0063ee2f70
+ - txc66ee8b003d44751b66f9-006571d029
X-Amz-Request-Id:
- - txe2e476ace82e4bc8a7f6d-0063ee2f70
+ - txc66ee8b003d44751b66f9-006571d029
X-Amz-Version-Id:
- - "1676554094995335"
+ - "1701957672603388"
status: 200 OK
code: 200
duration: ""
@@ -510,28 +531,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132816Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:16 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx5771386b4b124ece9518f-0063ee2f70
+ - txgc24039d6661e4098a443-006571d02a
X-Amz-Request-Id:
- - tx5771386b4b124ece9518f-0063ee2f70
+ - txgc24039d6661e4098a443-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -540,26 +561,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132816Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxadd6eb80469e4a38a79e3-0063ee2f70
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-move-2444466610373103462txg7fc9f1ed47d14aa5b7e6-006571d02a
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:16 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txadd6eb80469e4a38a79e3-0063ee2f70
+ - txg7fc9f1ed47d14aa5b7e6-006571d02a
X-Amz-Request-Id:
- - txadd6eb80469e4a38a79e3-0063ee2f70
+ - txg7fc9f1ed47d14aa5b7e6-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -568,28 +590,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132816Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-move-37811731042352324291000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:14.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-move-24444666103731034621000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx102735987d064b7aa07fa-0063ee2f70
+ - txg3950784fafbd46ff9da2-006571d02a
X-Amz-Request-Id:
- - tx102735987d064b7aa07fa-0063ee2f70
+ - txg3950784fafbd46ff9da2-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -598,26 +620,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132816Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx93c6937bcff04017aca98-0063ee2f71
+ - txg58c12d9fa3034066b1b3-006571d02a
X-Amz-Request-Id:
- - tx93c6937bcff04017aca98-0063ee2f71
+ - txg58c12d9fa3034066b1b3-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -626,26 +650,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132817Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxa8a19336b7f24143b98f5-0063ee2f71
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txgdf89248cac2c43c8a411-006571d02a
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txa8a19336b7f24143b98f5-0063ee2f71
+ - txgdf89248cac2c43c8a411-006571d02a
X-Amz-Request-Id:
- - txa8a19336b7f24143b98f5-0063ee2f71
+ - txgdf89248cac2c43c8a411-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -654,28 +679,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132817Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx5ffe7fb05b554a90b02c9-0063ee2f71
+ - txgc2b2809f1aab4cfd957d-006571d02a
X-Amz-Request-Id:
- - tx5ffe7fb05b554a90b02c9-0063ee2f71
+ - txgc2b2809f1aab4cfd957d-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -684,26 +709,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132817Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txa8b53499f6114c52afcb2-0063ee2f71
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txg786d67ed4b2844519b87-006571d02a
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txa8b53499f6114c52afcb2-0063ee2f71
+ - txg786d67ed4b2844519b87-006571d02a
X-Amz-Request-Id:
- - txa8b53499f6114c52afcb2-0063ee2f71
+ - txg786d67ed4b2844519b87-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -712,12 +738,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132817Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -729,17 +755,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txf17f97ca3b4b4a0981d6e-0063ee2f71
+ - txg1e7fbedd7f434a9782a5-006571d02a
X-Amz-Request-Id:
- - txf17f97ca3b4b4a0981d6e-0063ee2f71
- X-Amz-Version-Id:
- - "1676554094995335"
+ - txg1e7fbedd7f434a9782a5-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -748,30 +772,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132817Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx02ab62f1226d48c19228b-0063ee2f71
+ - txgfd5efeca911d49359099-006571d02a
X-Amz-Request-Id:
- - tx02ab62f1226d48c19228b-0063ee2f71
- X-Amz-Version-Id:
- - "1676554094995335"
+ - txgfd5efeca911d49359099-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -780,28 +802,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132817Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:17 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txd72d18ec95a144d3b050e-0063ee2f71
+ - txgda12eee102964633b003-006571d02a
X-Amz-Request-Id:
- - txd72d18ec95a144d3b050e-0063ee2f71
+ - txgda12eee102964633b003-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -810,28 +832,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132818Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:18 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txdb79cec68218460ba4f15-0063ee2f72
+ - txg993c6483290f408da98f-006571d02b
X-Amz-Request-Id:
- - txdb79cec68218460ba4f15-0063ee2f72
+ - txg993c6483290f408da98f-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -840,26 +862,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132818Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx333329c609ff453f812df-0063ee2f72
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-move-2444466610373103462txg62bd250d59cc46628856-006571d02b
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:18 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx333329c609ff453f812df-0063ee2f72
+ - txg62bd250d59cc46628856-006571d02b
X-Amz-Request-Id:
- - tx333329c609ff453f812df-0063ee2f72
+ - txg62bd250d59cc46628856-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -868,28 +891,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132818Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-move-37811731042352324291000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:14.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-move-24444666103731034621000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:18 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx34a40a94e09b4799ac910-0063ee2f72
+ - txgcdfac9a24d354348ad8c-006571d02b
X-Amz-Request-Id:
- - tx34a40a94e09b4799ac910-0063ee2f72
+ - txgcdfac9a24d354348ad8c-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -898,26 +921,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132818Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx7ad640ab09a544ce8619e-0063ee2f72
+ - txg6820e4b380b240c9b1e7-006571d02b
X-Amz-Request-Id:
- - tx7ad640ab09a544ce8619e-0063ee2f72
+ - txg6820e4b380b240c9b1e7-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -926,26 +951,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132818Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx1c5e64a106b4427da415e-0063ee2f73
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txg15b76747aa794885bdf7-006571d02b
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx1c5e64a106b4427da415e-0063ee2f73
+ - txg15b76747aa794885bdf7-006571d02b
X-Amz-Request-Id:
- - tx1c5e64a106b4427da415e-0063ee2f73
+ - txg15b76747aa794885bdf7-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -954,28 +980,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132818Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx40aa0ae7afab43618810b-0063ee2f73
+ - txg73949b6a55f94b7c8a3c-006571d02b
X-Amz-Request-Id:
- - tx40aa0ae7afab43618810b-0063ee2f73
+ - txg73949b6a55f94b7c8a3c-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -984,26 +1010,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132819Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txf6c5941c02444d658bf38-0063ee2f73
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txg8a0ad10b58864f50b500-006571d02b
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txf6c5941c02444d658bf38-0063ee2f73
+ - txg8a0ad10b58864f50b500-006571d02b
X-Amz-Request-Id:
- - txf6c5941c02444d658bf38-0063ee2f73
+ - txg8a0ad10b58864f50b500-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -1012,12 +1039,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132819Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1029,17 +1056,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:14 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa9a5515a80cb4c0aa8496-0063ee2f73
+ - txg739992467a8346d2be09-006571d02c
X-Amz-Request-Id:
- - txa9a5515a80cb4c0aa8496-0063ee2f73
- X-Amz-Version-Id:
- - "1676554094995335"
+ - txg739992467a8346d2be09-006571d02c
status: 200 OK
code: 200
duration: ""
@@ -1048,30 +1073,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132819Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - tx099dd61212514665a9c88-0063ee2f73
+ - txgdd34125e53aa4d9092ab-006571d02c
X-Amz-Request-Id:
- - tx099dd61212514665a9c88-0063ee2f73
- X-Amz-Version-Id:
- - "1676554094995335"
+ - txgdd34125e53aa4d9092ab-006571d02c
status: 200 OK
code: 200
duration: ""
@@ -1080,28 +1103,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132819Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:19 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - tx0ff598e7c4d440fd8ae8f-0063ee2f73
+ - txg244194be184e4c5199d3-006571d02c
X-Amz-Request-Id:
- - tx0ff598e7c4d440fd8ae8f-0063ee2f73
+ - txg244194be184e4c5199d3-006571d02c
status: 200 OK
code: 200
duration: ""
@@ -1110,36 +1133,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-move-3781173104235232429/myfile
+ - test-acc-scaleway-object-move-2444466610373103462/myfile
X-Amz-Date:
- - 20230216T132819Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2
method: PUT
response:
body: |-
- 2023-02-16T13:28:20.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txd80df538a1a645c2a9dc6-0063ee2f74
+ - tx9c329a4c3f22452086e43-006571d02e
X-Amz-Request-Id:
- - txd80df538a1a645c2a9dc6-0063ee2f74
+ - tx9c329a4c3f22452086e43-006571d02e
X-Amz-Version-Id:
- - "1676554094995335"
+ - "1701957672603388"
status: 200 OK
code: 200
duration: ""
@@ -1148,26 +1171,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132820Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx9159ffdffa6a4b4eb8ff0-0063ee2f74
+ - txg2734941126624f5db723-006571d02e
X-Amz-Request-Id:
- - tx9159ffdffa6a4b4eb8ff0-0063ee2f74
+ - txg2734941126624f5db723-006571d02e
status: 204 No Content
code: 204
duration: ""
@@ -1178,14 +1197,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132820Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2
method: PUT
response:
body: ""
@@ -1195,17 +1214,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:21 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txa2e9a347a12448f3beb6c-0063ee2f74
+ - txc352eeab56d84081b8836-006571d02e
X-Amz-Request-Id:
- - txa2e9a347a12448f3beb6c-0063ee2f74
+ - txc352eeab56d84081b8836-006571d02e
X-Amz-Version-Id:
- - "1676554100970953"
+ - "1701957678943483"
status: 200 OK
code: 200
duration: ""
@@ -1214,12 +1233,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132820Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2
method: HEAD
response:
body: ""
@@ -1231,17 +1250,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:21 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx3ff7f6e035f64878b497e-0063ee2f75
+ - txgd85e8e332b3b4eb0828c-006571d02f
X-Amz-Request-Id:
- - tx3ff7f6e035f64878b497e-0063ee2f75
- X-Amz-Version-Id:
- - "1676554100970953"
+ - txgd85e8e332b3b4eb0828c-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1250,30 +1267,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132821Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2?tagging=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:21 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx71823a650c184263853eb-0063ee2f75
+ - txg519be715e247454199e8-006571d02f
X-Amz-Request-Id:
- - tx71823a650c184263853eb-0063ee2f75
- X-Amz-Version-Id:
- - "1676554100970953"
+ - txg519be715e247454199e8-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1282,28 +1297,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132821Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2?acl=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:21 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx80b054d319bf49fbafb9f-0063ee2f75
+ - txg0fcb24e8905841a1b0e0-006571d02f
X-Amz-Request-Id:
- - tx80b054d319bf49fbafb9f-0063ee2f75
+ - txg0fcb24e8905841a1b0e0-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1312,12 +1327,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132821Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:19 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txgd7e45fb6668243e8b23a-006571d02f
+ X-Amz-Request-Id:
+ - txgd7e45fb6668243e8b23a-006571d02f
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2
method: GET
response:
body: ""
@@ -1329,17 +1372,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:21 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx17da6d144e974648ace82-0063ee2f75
+ - txc2b2108283a4460287748-006571d02f
X-Amz-Request-Id:
- - tx17da6d144e974648ace82-0063ee2f75
+ - txc2b2108283a4460287748-006571d02f
X-Amz-Version-Id:
- - "1676554100970953"
+ - "1701957678943483"
status: 200 OK
code: 200
duration: ""
@@ -1348,28 +1391,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132821Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:22 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx56e4f2d5f8ae44d5a4c5b-0063ee2f76
+ - txg5abb7108d8414d528755-006571d031
X-Amz-Request-Id:
- - tx56e4f2d5f8ae44d5a4c5b-0063ee2f76
+ - txg5abb7108d8414d528755-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1378,26 +1421,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132822Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxce311010e2ee4edfbce04-0063ee2f76
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-move-2444466610373103462txg3fc9b7b55e7941f1b5da-006571d031
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:22 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txce311010e2ee4edfbce04-0063ee2f76
+ - txg3fc9b7b55e7941f1b5da-006571d031
X-Amz-Request-Id:
- - txce311010e2ee4edfbce04-0063ee2f76
+ - txg3fc9b7b55e7941f1b5da-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1406,28 +1450,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132822Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-move-37811731042352324291000false"d41d8cd98f00b204e9800998ecf8427e"myfile22023-02-16T13:28:20.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-move-24444666103731034621000falsemyfile22023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "658"
+ - "670"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txab542a0ea9a849799fab8-0063ee2f76
+ - txg71085dd774cf4b3c9378-006571d031
X-Amz-Request-Id:
- - txab542a0ea9a849799fab8-0063ee2f76
+ - txg71085dd774cf4b3c9378-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1436,26 +1480,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132822Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx11536e84726943c786c11-0063ee2f77
+ - txg5ef30391e308430bb7de-006571d031
X-Amz-Request-Id:
- - tx11536e84726943c786c11-0063ee2f77
+ - txg5ef30391e308430bb7de-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1464,26 +1510,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132823Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx6ab0e87a93c1413cb92f2-0063ee2f77
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txg4d434402d38445869b47-006571d031
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx6ab0e87a93c1413cb92f2-0063ee2f77
+ - txg4d434402d38445869b47-006571d031
X-Amz-Request-Id:
- - tx6ab0e87a93c1413cb92f2-0063ee2f77
+ - txg4d434402d38445869b47-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1492,28 +1539,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132823Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx197df405639848d5bc692-0063ee2f77
+ - txgea7b0202fdbe47c89dc5-006571d031
X-Amz-Request-Id:
- - tx197df405639848d5bc692-0063ee2f77
+ - txgea7b0202fdbe47c89dc5-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1522,26 +1569,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132823Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txc6b29501f75445bab4b24-0063ee2f77
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-move-2444466610373103462txgc247911154df47bc8d94-006571d031
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txc6b29501f75445bab4b24-0063ee2f77
+ - txgc247911154df47bc8d94-006571d031
X-Amz-Request-Id:
- - txc6b29501f75445bab4b24-0063ee2f77
+ - txgc247911154df47bc8d94-006571d031
status: 404 Not Found
code: 404
duration: ""
@@ -1550,12 +1598,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132823Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2
method: HEAD
response:
body: ""
@@ -1567,17 +1615,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:20 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txa988168adb4141d79fd2d-0063ee2f77
+ - txgb6e92dbf886e49479de6-006571d031
X-Amz-Request-Id:
- - txa988168adb4141d79fd2d-0063ee2f77
- X-Amz-Version-Id:
- - "1676554100970953"
+ - txgb6e92dbf886e49479de6-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1586,30 +1632,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132823Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:23 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - tx30969989f879425990a25-0063ee2f77
+ - txg4a71220f68a84fa59e61-006571d031
X-Amz-Request-Id:
- - tx30969989f879425990a25-0063ee2f77
- X-Amz-Version-Id:
- - "1676554100970953"
+ - txg4a71220f68a84fa59e61-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1618,28 +1662,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132823Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:24 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txa35d48dc9215448ba6357-0063ee2f77
+ - txg43a7e080570043d383ca-006571d031
X-Amz-Request-Id:
- - txa35d48dc9215448ba6357-0063ee2f77
+ - txg43a7e080570043d383ca-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1648,26 +1692,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132824Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/myfile2
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/myfile2
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:24 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx0496fbd69d5b44f4b3909-0063ee2f78
+ - txgbe732879c5cf4e5eb9d2-006571d033
X-Amz-Request-Id:
- - tx0496fbd69d5b44f4b3909-0063ee2f78
+ - txgbe732879c5cf4e5eb9d2-006571d033
status: 204 No Content
code: 204
duration: ""
@@ -1676,12 +1716,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132824Z
- url: https://test-acc-scaleway-object-move-3781173104235232429.s3.fr-par.scw.cloud/
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-move-2444466610373103462.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1691,11 +1731,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:25 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - txfe87518ef99b42c39d9a5-0063ee2f79
+ - tx8069b01eeb0a40feba09f-006571d033
X-Amz-Request-Id:
- - txfe87518ef99b42c39d9a5-0063ee2f79
+ - tx8069b01eeb0a40feba09f-006571d033
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-state.cassette.yaml b/scaleway/testdata/object-state.cassette.yaml
index c4fa55f99c..a0a34b7ff6 100644
--- a/scaleway/testdata/object-state.cassette.yaml
+++ b/scaleway/testdata/object-state.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132706Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/
+ - 20231207T140124Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:10 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
Location:
- - /test-acc-scaleway-object-visibility-2285379126643268317
+ - /test-acc-scaleway-object-visibility-7752120535320177518
X-Amz-Id-2:
- - tx9a78524cc049426c9c701-0063ee2f2b
+ - txg847424d80a234afca0a2-006571d035
X-Amz-Request-Id:
- - tx9a78524cc049426c9c701-0063ee2f2b
+ - txg847424d80a234afca0a2-006571d035
status: 200 OK
code: 200
duration: ""
@@ -44,28 +42,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132710Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:11 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txa88180b43d394658b5877-0063ee2f2e
+ - txg7fa6895016bd42a79d93-006571d035
X-Amz-Request-Id:
- - txa88180b43d394658b5877-0063ee2f2e
+ - txg7fa6895016bd42a79d93-006571d035
status: 200 OK
code: 200
duration: ""
@@ -74,28 +70,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132711Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:11 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx8d265790ee4e41a188f3d-0063ee2f2f
+ - txg15b99e708c274359b77a-006571d035
X-Amz-Request-Id:
- - tx8d265790ee4e41a188f3d-0063ee2f2f
+ - txg15b99e708c274359b77a-006571d035
status: 200 OK
code: 200
duration: ""
@@ -104,26 +100,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132711Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx31cb7ac54c3e43ecbf3df-0063ee2f2f
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-visibility-7752120535320177518txg1cd40917eb4b4328a6d3-006571d035
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:11 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx31cb7ac54c3e43ecbf3df-0063ee2f2f
+ - txg1cd40917eb4b4328a6d3-006571d035
X-Amz-Request-Id:
- - tx31cb7ac54c3e43ecbf3df-0063ee2f2f
+ - txg1cd40917eb4b4328a6d3-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -132,28 +129,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132711Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-visibility-22853791266432683171000false
+
+ test-acc-scaleway-object-visibility-77521205353201775181000false
headers:
Content-Length:
- - "277"
+ - "281"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:11 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txa05ba68d06ef4a509c285-0063ee2f2f
+ - txgc1481fb4f71740af82da-006571d035
X-Amz-Request-Id:
- - txa05ba68d06ef4a509c285-0063ee2f2f
+ - txgc1481fb4f71740af82da-006571d035
status: 200 OK
code: 200
duration: ""
@@ -162,26 +159,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132711Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx6a9bbcb45513428fafeaf-0063ee2f2f
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-visibility-7752120535320177518txg04d0cd34ca62449494d6-006571d035
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:11 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx6a9bbcb45513428fafeaf-0063ee2f2f
+ - txg04d0cd34ca62449494d6-006571d035
X-Amz-Request-Id:
- - tx6a9bbcb45513428fafeaf-0063ee2f2f
+ - txg04d0cd34ca62449494d6-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -190,26 +187,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132711Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx72754da1ce2344f7b3a15-0063ee2f2f
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-visibility-7752120535320177518txg7a66ae9f662d42bdb4d6-006571d035
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:12 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx72754da1ce2344f7b3a15-0063ee2f2f
+ - txg7a66ae9f662d42bdb4d6-006571d035
X-Amz-Request-Id:
- - tx72754da1ce2344f7b3a15-0063ee2f2f
+ - txg7a66ae9f662d42bdb4d6-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -218,28 +216,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132711Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:12 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txff40566ab71d4114b146d-0063ee2f30
+ - txgf69c412b07c44a03bd9d-006571d035
X-Amz-Request-Id:
- - txff40566ab71d4114b146d-0063ee2f30
+ - txgf69c412b07c44a03bd9d-006571d035
status: 200 OK
code: 200
duration: ""
@@ -248,26 +246,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132712Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx2efe6507e857485f865bc-0063ee2f30
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-visibility-7752120535320177518txgec2ac279242c42788a27-006571d035
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:12 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx2efe6507e857485f865bc-0063ee2f30
+ - txgec2ac279242c42788a27-006571d035
X-Amz-Request-Id:
- - tx2efe6507e857485f865bc-0063ee2f30
+ - txgec2ac279242c42788a27-006571d035
status: 404 Not Found
code: 404
duration: ""
@@ -278,14 +277,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- public-read
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132712Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile
+ - 20231207T140125Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -295,17 +294,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:13 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:13 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txd13d129247ec4413b1896-0063ee2f31
+ - tx5c6fcb4fd20b47c893e9d-006571d035
X-Amz-Request-Id:
- - txd13d129247ec4413b1896-0063ee2f31
+ - tx5c6fcb4fd20b47c893e9d-006571d035
X-Amz-Version-Id:
- - "1676554033177932"
+ - "1701957685887383"
status: 200 OK
code: 200
duration: ""
@@ -314,12 +313,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132713Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -331,17 +330,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:14 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:13 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txd07f1805250748faafc58-0063ee2f31
+ - txg01474d14f79a44a59711-006571d036
X-Amz-Request-Id:
- - txd07f1805250748faafc58-0063ee2f31
- X-Amz-Version-Id:
- - "1676554033177932"
+ - txg01474d14f79a44a59711-006571d036
status: 200 OK
code: 200
duration: ""
@@ -350,30 +347,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132714Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:14 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx80beb2bed9c143ee9bc41-0063ee2f32
+ - txg94528f2c31ee40f4ba6c-006571d036
X-Amz-Request-Id:
- - tx80beb2bed9c143ee9bc41-0063ee2f32
- X-Amz-Version-Id:
- - "1676554033177932"
+ - txg94528f2c31ee40f4ba6c-006571d036
status: 200 OK
code: 200
duration: ""
@@ -382,28 +377,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132714Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "890"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:26 GMT
+ X-Amz-Id-2:
+ - txg3b8592d67a604b148c90-006571d036
+ X-Amz-Request-Id:
+ - txg3b8592d67a604b148c90-006571d036
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:27:14 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx9020a6cb50d04abfb8213-0063ee2f32
+ - txga4ddfdc7bac74580b04a-006571d036
X-Amz-Request-Id:
- - tx9020a6cb50d04abfb8213-0063ee2f32
+ - txga4ddfdc7bac74580b04a-006571d036
status: 200 OK
code: 200
duration: ""
@@ -412,12 +435,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132714Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -429,17 +452,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:15 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:13 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - txa85ab10957d94227b904c-0063ee2f32
+ - txab4eb082c52146bab38d6-006571d036
X-Amz-Request-Id:
- - txa85ab10957d94227b904c-0063ee2f32
+ - txab4eb082c52146bab38d6-006571d036
X-Amz-Version-Id:
- - "1676554033177932"
+ - "1701957685887383"
status: 200 OK
code: 200
duration: ""
@@ -448,28 +471,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132715Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:15 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx194e9d51840344b990949-0063ee2f33
+ - txg9856c4cceec14265879e-006571d036
X-Amz-Request-Id:
- - tx194e9d51840344b990949-0063ee2f33
+ - txg9856c4cceec14265879e-006571d036
status: 200 OK
code: 200
duration: ""
@@ -478,26 +501,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132715Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx98f6933718744678bbcd9-0063ee2f33
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-visibility-7752120535320177518txg0f0dab0e2f4c4f2cad88-006571d036
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:15 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx98f6933718744678bbcd9-0063ee2f33
+ - txg0f0dab0e2f4c4f2cad88-006571d036
X-Amz-Request-Id:
- - tx98f6933718744678bbcd9-0063ee2f33
+ - txg0f0dab0e2f4c4f2cad88-006571d036
status: 404 Not Found
code: 404
duration: ""
@@ -506,28 +530,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132715Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-visibility-22853791266432683171000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:13.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-visibility-77521205353201775181000falsemyfile2023-12-07T14:01:25.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "663"
+ - "675"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:16 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx332201f1d32c456f952fe-0063ee2f34
+ - txg67b2ae1e97ff4d6cbaea-006571d036
X-Amz-Request-Id:
- - tx332201f1d32c456f952fe-0063ee2f34
+ - txg67b2ae1e97ff4d6cbaea-006571d036
status: 200 OK
code: 200
duration: ""
@@ -536,26 +560,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132716Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140126Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx0ad978eed43f44b1a39fc-0063ee2f34
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-visibility-7752120535320177518txg893382047e6140afa6c4-006571d036
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:16 GMT
+ - Thu, 07 Dec 2023 14:01:26 GMT
X-Amz-Id-2:
- - tx0ad978eed43f44b1a39fc-0063ee2f34
+ - txg893382047e6140afa6c4-006571d036
X-Amz-Request-Id:
- - tx0ad978eed43f44b1a39fc-0063ee2f34
+ - txg893382047e6140afa6c4-006571d036
status: 404 Not Found
code: 404
duration: ""
@@ -564,26 +588,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132716Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx32c78423756b410c8e32b-0063ee2f34
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-visibility-7752120535320177518txgc70a18968364465693c9-006571d037
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:16 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx32c78423756b410c8e32b-0063ee2f34
+ - txgc70a18968364465693c9-006571d037
X-Amz-Request-Id:
- - tx32c78423756b410c8e32b-0063ee2f34
+ - txgc70a18968364465693c9-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -592,28 +617,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132716Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:16 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx5debdc358d9b4fbeba49e-0063ee2f34
+ - txg447e8d0650c241c1b4e3-006571d037
X-Amz-Request-Id:
- - tx5debdc358d9b4fbeba49e-0063ee2f34
+ - txg447e8d0650c241c1b4e3-006571d037
status: 200 OK
code: 200
duration: ""
@@ -622,26 +647,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132716Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx6717c5e96c6b4adf95fa3-0063ee2f34
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-visibility-7752120535320177518txg8a8414289ad04f7ea43e-006571d037
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:16 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx6717c5e96c6b4adf95fa3-0063ee2f34
+ - txg8a8414289ad04f7ea43e-006571d037
X-Amz-Request-Id:
- - tx6717c5e96c6b4adf95fa3-0063ee2f34
+ - txg8a8414289ad04f7ea43e-006571d037
status: 404 Not Found
code: 404
duration: ""
@@ -650,12 +676,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132716Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -667,17 +693,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:17 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:13 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx90625c12d4aa4489a9504-0063ee2f34
+ - txgbd2a507d98394018a3dc-006571d037
X-Amz-Request-Id:
- - tx90625c12d4aa4489a9504-0063ee2f34
- X-Amz-Version-Id:
- - "1676554033177932"
+ - txgbd2a507d98394018a3dc-006571d037
status: 200 OK
code: 200
duration: ""
@@ -686,30 +710,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132716Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:17 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txe46ef711c3754e289fa39-0063ee2f35
+ - txg0279de06ff3748f68657-006571d037
X-Amz-Request-Id:
- - txe46ef711c3754e289fa39-0063ee2f35
- X-Amz-Version-Id:
- - "1676554033177932"
+ - txg0279de06ff3748f68657-006571d037
status: 200 OK
code: 200
duration: ""
@@ -718,28 +740,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132717Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "890"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:17 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txf86a21be07094a9196955-0063ee2f35
+ - txg1790639d1e9a4820bd75-006571d037
X-Amz-Request-Id:
- - txf86a21be07094a9196955-0063ee2f35
+ - txg1790639d1e9a4820bd75-006571d037
status: 200 OK
code: 200
duration: ""
@@ -748,12 +770,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132717Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -765,17 +787,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:17 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:13 GMT
+ - Thu, 07 Dec 2023 14:01:25 GMT
X-Amz-Id-2:
- - tx9711891be9ef40768187e-0063ee2f35
+ - txg2abee11458fb40f5b17d-006571d037
X-Amz-Request-Id:
- - tx9711891be9ef40768187e-0063ee2f35
- X-Amz-Version-Id:
- - "1676554033177932"
+ - txg2abee11458fb40f5b17d-006571d037
status: 200 OK
code: 200
duration: ""
@@ -784,30 +804,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132717Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:18 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - tx43e2815dd68b456c80322-0063ee2f35
+ - txg602bfad3b1054a2ea2a7-006571d037
X-Amz-Request-Id:
- - tx43e2815dd68b456c80322-0063ee2f35
- X-Amz-Version-Id:
- - "1676554033177932"
+ - txg602bfad3b1054a2ea2a7-006571d037
status: 200 OK
code: 200
duration: ""
@@ -816,28 +834,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132717Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140127Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "890"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:18 GMT
+ - Thu, 07 Dec 2023 14:01:27 GMT
X-Amz-Id-2:
- - txfd122cc262fa4c458cb43-0063ee2f36
+ - txg8f2f0c75b2994b02a8fa-006571d037
X-Amz-Request-Id:
- - txfd122cc262fa4c458cb43-0063ee2f36
+ - txg8f2f0c75b2994b02a8fa-006571d037
status: 200 OK
code: 200
duration: ""
@@ -846,26 +864,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132718Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/myfile
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:20 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx005fc43649db428a87f72-0063ee2f36
+ - txg3abb913a9a1b4d8681b7-006571d038
X-Amz-Request-Id:
- - tx005fc43649db428a87f72-0063ee2f36
+ - txg3abb913a9a1b4d8681b7-006571d038
status: 204 No Content
code: 204
duration: ""
@@ -874,12 +888,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132719Z
- url: https://test-acc-scaleway-object-visibility-2285379126643268317.s3.fr-par.scw.cloud/
+ - 20231207T140128Z
+ url: https://test-acc-scaleway-object-visibility-7752120535320177518.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -889,11 +903,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:20 GMT
+ - Thu, 07 Dec 2023 14:01:28 GMT
X-Amz-Id-2:
- - tx6ea908f91d0b4c2c967c1-0063ee2f38
+ - txf5a2a89ead06465297278-006571d038
X-Amz-Request-Id:
- - tx6ea908f91d0b4c2c967c1-0063ee2f38
+ - txf5a2a89ead06465297278-006571d038
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-storage-class.cassette.yaml b/scaleway/testdata/object-storage-class.cassette.yaml
index 1d2f7c0a34..2f688e4484 100644
--- a/scaleway/testdata/object-storage-class.cassette.yaml
+++ b/scaleway/testdata/object-storage-class.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132825Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:26 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-storage-class-4219063255558362259
+ - /test-acc-scaleway-object-storage-class-4839663285646876788
X-Amz-Id-2:
- - tx79fb2e387af24874a0ed6-0063ee2f7a
+ - txg2e2248c7d0094ed3aefa-006571d027
X-Amz-Request-Id:
- - tx79fb2e387af24874a0ed6-0063ee2f7a
+ - txg2e2248c7d0094ed3aefa-006571d027
status: 200 OK
code: 200
duration: ""
@@ -46,28 +44,26 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132826Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txf6d29208ab9547f2ace1f-0063ee2f7a
+ - txgea48710bdca74be28cbc-006571d028
X-Amz-Request-Id:
- - txf6d29208ab9547f2ace1f-0063ee2f7a
- status: 204 No Content
- code: 204
+ - txgea48710bdca74be28cbc-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
@@ -76,28 +72,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132827Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx8c3b3315124f4458ab2cc-0063ee2f7b
+ - txgfd7ad6d023e44255b8da-006571d028
X-Amz-Request-Id:
- - tx8c3b3315124f4458ab2cc-0063ee2f7b
+ - txgfd7ad6d023e44255b8da-006571d028
status: 200 OK
code: 200
duration: ""
@@ -110,56 +104,54 @@ interactions:
Content-Md5:
- GLaI7og/rAKomUfPePCCFQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
X-Amz-Date:
- - 20230216T132827Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx078b71e35c7a479b86656-0063ee2f7b
+ - txgc43f27f650ee42dd982b-006571d028
X-Amz-Request-Id:
- - tx078b71e35c7a479b86656-0063ee2f7b
- status: 204 No Content
- code: 204
+ - txgc43f27f650ee42dd982b-006571d028
+ status: 200 OK
+ code: 200
duration: ""
- request:
body: ""
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132827Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx3270efe799744372ac99c-0063ee2f7b
+ - txgdbcd9cc65eff4b45aca0-006571d028
X-Amz-Request-Id:
- - tx3270efe799744372ac99c-0063ee2f7b
+ - txgdbcd9cc65eff4b45aca0-006571d028
status: 200 OK
code: 200
duration: ""
@@ -168,26 +160,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132827Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx9e2b01338cfd46589142c-0063ee2f7b
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-storage-class-4839663285646876788txg4f8131b87d524c0abbca-006571d028
headers:
+ Content-Length:
+ - "276"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx9e2b01338cfd46589142c-0063ee2f7b
+ - txg4f8131b87d524c0abbca-006571d028
X-Amz-Request-Id:
- - tx9e2b01338cfd46589142c-0063ee2f7b
+ - txg4f8131b87d524c0abbca-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -196,28 +189,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132827Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-storage-class-42190632555583622591000false
+
+ test-acc-scaleway-object-storage-class-48396632856468767881000false
headers:
Content-Length:
- - "280"
+ - "284"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx81b6c8e055d449d1b65d4-0063ee2f7c
+ - txg246ed96ff8c9404fb2a3-006571d028
X-Amz-Request-Id:
- - tx81b6c8e055d449d1b65d4-0063ee2f7c
+ - txg246ed96ff8c9404fb2a3-006571d028
status: 200 OK
code: 200
duration: ""
@@ -226,26 +219,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132828Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx220e5843845842ca848b3-0063ee2f7c
+ - txg658f7f2a97bd4514bb29-006571d028
X-Amz-Request-Id:
- - tx220e5843845842ca848b3-0063ee2f7c
+ - txg658f7f2a97bd4514bb29-006571d028
status: 200 OK
code: 200
duration: ""
@@ -254,26 +249,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132828Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx3d29e5b5042149b1a387f-0063ee2f7c
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txgf82b7f06cefe40b0bb87-006571d028
headers:
+ Content-Length:
+ - "244"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx3d29e5b5042149b1a387f-0063ee2f7c
+ - txgf82b7f06cefe40b0bb87-006571d028
X-Amz-Request-Id:
- - tx3d29e5b5042149b1a387f-0063ee2f7c
+ - txgf82b7f06cefe40b0bb87-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -282,28 +278,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132828Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx048c74ea607444b7b31f8-0063ee2f7c
+ - txgb3e17c018f4349298c10-006571d028
X-Amz-Request-Id:
- - tx048c74ea607444b7b31f8-0063ee2f7c
+ - txgb3e17c018f4349298c10-006571d028
status: 200 OK
code: 200
duration: ""
@@ -312,26 +308,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132828Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx9a51b1f0b2b94d09897b3-0063ee2f7c
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txg756ef796658e41cb8b61-006571d028
headers:
+ Content-Length:
+ - "254"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx9a51b1f0b2b94d09897b3-0063ee2f7c
+ - txg756ef796658e41cb8b61-006571d028
X-Amz-Request-Id:
- - tx9a51b1f0b2b94d09897b3-0063ee2f7c
+ - txg756ef796658e41cb8b61-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -342,14 +339,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132828Z
+ - 20231207T140112Z
X-Amz-Storage-Class:
- ONEZONE_IA
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -359,17 +356,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:30 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:30 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txaa60af32c06a4f2eaa5ec-0063ee2f7c
+ - txe1aa951325814b4ab1525-006571d028
X-Amz-Request-Id:
- - txaa60af32c06a4f2eaa5ec-0063ee2f7c
+ - txe1aa951325814b4ab1525-006571d028
X-Amz-Version-Id:
- - "1676554110402678"
+ - "1701957672563050"
status: 200 OK
code: 200
duration: ""
@@ -378,12 +375,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132831Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -395,19 +392,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:31 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:30 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx4b9e64300d6c40efb9508-0063ee2f7f
+ - txg121ffdd9f6d44f708e3e-006571d029
X-Amz-Request-Id:
- - tx4b9e64300d6c40efb9508-0063ee2f7f
+ - txg121ffdd9f6d44f708e3e-006571d029
X-Amz-Storage-Class:
- ONEZONE_IA
- X-Amz-Version-Id:
- - "1676554110402678"
status: 200 OK
code: 200
duration: ""
@@ -416,30 +411,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132831Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:31 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - txf6a4495020b74b3fabddd-0063ee2f7f
+ - txg6c95d77619f4411b8905-006571d029
X-Amz-Request-Id:
- - txf6a4495020b74b3fabddd-0063ee2f7f
- X-Amz-Version-Id:
- - "1676554110402678"
+ - txg6c95d77619f4411b8905-006571d029
status: 200 OK
code: 200
duration: ""
@@ -448,28 +441,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132831Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:31 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - txf68a60de215e4e6e97bad-0063ee2f7f
+ - txg509b777c4dd74184b99b-006571d029
X-Amz-Request-Id:
- - txf68a60de215e4e6e97bad-0063ee2f7f
+ - txg509b777c4dd74184b99b-006571d029
status: 200 OK
code: 200
duration: ""
@@ -478,12 +471,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132832Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txg83e4287ed8864c858505-006571d029
+ X-Amz-Request-Id:
+ - txg83e4287ed8864c858505-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -495,19 +516,19 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:32 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:30 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa805089517fa4ba9bdd61-0063ee2f80
+ - tx7f36b6a243b44330a0a2a-006571d029
X-Amz-Request-Id:
- - txa805089517fa4ba9bdd61-0063ee2f80
+ - tx7f36b6a243b44330a0a2a-006571d029
X-Amz-Storage-Class:
- ONEZONE_IA
X-Amz-Version-Id:
- - "1676554110402678"
+ - "1701957672563050"
status: 200 OK
code: 200
duration: ""
@@ -516,28 +537,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132832Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx51ba7e393ad046509d469-0063ee2f80
+ - txg64f673b2a60d48558b54-006571d02a
X-Amz-Request-Id:
- - tx51ba7e393ad046509d469-0063ee2f80
+ - txg64f673b2a60d48558b54-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -546,26 +567,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132832Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx8952dfc6928b4e03a56ac-0063ee2f80
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-storage-class-4839663285646876788txg42c9ad680128425085e7-006571d02a
headers:
+ Content-Length:
+ - "276"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx8952dfc6928b4e03a56ac-0063ee2f80
+ - txg42c9ad680128425085e7-006571d02a
X-Amz-Request-Id:
- - tx8952dfc6928b4e03a56ac-0063ee2f80
+ - txg42c9ad680128425085e7-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -574,28 +596,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132832Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-storage-class-42190632555583622591000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:30.000Z0ONEZONE_IA105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-storage-class-48396632856468767881000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfONEZONE_IA
headers:
Content-Length:
- - "668"
+ - "680"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx197873770a654d51a7bf3-0063ee2f80
+ - txg3d09f4d220a449f18576-006571d02a
X-Amz-Request-Id:
- - tx197873770a654d51a7bf3-0063ee2f80
+ - txg3d09f4d220a449f18576-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -604,26 +626,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132832Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx6eace99989e847178f43d-0063ee2f80
+ - txgf96e6a168bc643929b97-006571d02a
X-Amz-Request-Id:
- - tx6eace99989e847178f43d-0063ee2f80
+ - txgf96e6a168bc643929b97-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -632,26 +656,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132833Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx22c82f0653ab42e58dbe0-0063ee2f81
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txg8ad7211c00a945e1a73b-006571d02a
headers:
+ Content-Length:
+ - "244"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx22c82f0653ab42e58dbe0-0063ee2f81
+ - txg8ad7211c00a945e1a73b-006571d02a
X-Amz-Request-Id:
- - tx22c82f0653ab42e58dbe0-0063ee2f81
+ - txg8ad7211c00a945e1a73b-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -660,28 +685,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132833Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx6e06c2b03a394abdbb223-0063ee2f81
+ - txgb4daadf1d7a84a428063-006571d02a
X-Amz-Request-Id:
- - tx6e06c2b03a394abdbb223-0063ee2f81
+ - txgb4daadf1d7a84a428063-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -690,26 +715,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132833Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txd2f0e5a19a9f45a288beb-0063ee2f81
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txga73846346346458ba9c4-006571d02a
headers:
+ Content-Length:
+ - "254"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txd2f0e5a19a9f45a288beb-0063ee2f81
+ - txga73846346346458ba9c4-006571d02a
X-Amz-Request-Id:
- - txd2f0e5a19a9f45a288beb-0063ee2f81
+ - txga73846346346458ba9c4-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -718,12 +744,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132833Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -735,19 +761,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:30 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txb0ca231e99b74ab19ab73-0063ee2f81
+ - txg32cf5a3484f64533907c-006571d02a
X-Amz-Request-Id:
- - txb0ca231e99b74ab19ab73-0063ee2f81
+ - txg32cf5a3484f64533907c-006571d02a
X-Amz-Storage-Class:
- ONEZONE_IA
- X-Amz-Version-Id:
- - "1676554110402678"
status: 200 OK
code: 200
duration: ""
@@ -756,30 +780,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132833Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx5b781374fcea498588e32-0063ee2f81
+ - txg88615312c3604b839c14-006571d02a
X-Amz-Request-Id:
- - tx5b781374fcea498588e32-0063ee2f81
- X-Amz-Version-Id:
- - "1676554110402678"
+ - txg88615312c3604b839c14-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -788,28 +810,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132833Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:34 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx7c69ca7a28aa4c3898299-0063ee2f81
+ - txg82621b26a91449ad9552-006571d02a
X-Amz-Request-Id:
- - tx7c69ca7a28aa4c3898299-0063ee2f81
+ - txg82621b26a91449ad9552-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -818,28 +840,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132834Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:34 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx8f716aa7f75b43dc8fc6b-0063ee2f82
+ - txg350eac3ac6084467a8fa-006571d02b
X-Amz-Request-Id:
- - tx8f716aa7f75b43dc8fc6b-0063ee2f82
+ - txg350eac3ac6084467a8fa-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -848,26 +870,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132834Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxfd381d623b0b4eadb126f-0063ee2f82
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-storage-class-4839663285646876788txgb1660580df5d46029b67-006571d02b
headers:
+ Content-Length:
+ - "276"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:34 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txfd381d623b0b4eadb126f-0063ee2f82
+ - txgb1660580df5d46029b67-006571d02b
X-Amz-Request-Id:
- - txfd381d623b0b4eadb126f-0063ee2f82
+ - txgb1660580df5d46029b67-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -876,28 +899,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132834Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-storage-class-42190632555583622591000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:30.000Z0ONEZONE_IA105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-storage-class-48396632856468767881000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfONEZONE_IA
headers:
Content-Length:
- - "668"
+ - "680"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:34 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx2a07f89ac35c4a30a4055-0063ee2f82
+ - txg6ee9aa09191f4efe9106-006571d02b
X-Amz-Request-Id:
- - tx2a07f89ac35c4a30a4055-0063ee2f82
+ - txg6ee9aa09191f4efe9106-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -906,26 +929,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132834Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx95d70646492d4e0eb99b5-0063ee2f83
+ - txg63cbba4856274e748d07-006571d02b
X-Amz-Request-Id:
- - tx95d70646492d4e0eb99b5-0063ee2f83
+ - txg63cbba4856274e748d07-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -934,26 +959,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132835Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxe540daba0cdb40c697826-0063ee2f83
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txg22b4277f20f9413fbdeb-006571d02b
headers:
+ Content-Length:
+ - "244"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txe540daba0cdb40c697826-0063ee2f83
+ - txg22b4277f20f9413fbdeb-006571d02b
X-Amz-Request-Id:
- - txe540daba0cdb40c697826-0063ee2f83
+ - txg22b4277f20f9413fbdeb-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -962,28 +988,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132835Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txbc7af6edd8bc41738d961-0063ee2f83
+ - txg9c3ac9369f0e4d8e8f18-006571d02b
X-Amz-Request-Id:
- - txbc7af6edd8bc41738d961-0063ee2f83
+ - txg9c3ac9369f0e4d8e8f18-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -992,26 +1018,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132835Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx53b66bbcc62b4d7b8adbb-0063ee2f83
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txga6154f8cdb1d42659583-006571d02b
headers:
+ Content-Length:
+ - "254"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx53b66bbcc62b4d7b8adbb-0063ee2f83
+ - txga6154f8cdb1d42659583-006571d02b
X-Amz-Request-Id:
- - tx53b66bbcc62b4d7b8adbb-0063ee2f83
+ - txga6154f8cdb1d42659583-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -1020,12 +1047,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132835Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1037,19 +1064,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:30 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txe485a514573a4738b4e8f-0063ee2f83
+ - txgf41ccf8a790640a4a3b4-006571d02b
X-Amz-Request-Id:
- - txe485a514573a4738b4e8f-0063ee2f83
+ - txgf41ccf8a790640a4a3b4-006571d02b
X-Amz-Storage-Class:
- ONEZONE_IA
- X-Amz-Version-Id:
- - "1676554110402678"
status: 200 OK
code: 200
duration: ""
@@ -1058,30 +1083,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132835Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx63a62fc2c369402c8bced-0063ee2f83
+ - txge275b903f88f43af898f-006571d02b
X-Amz-Request-Id:
- - tx63a62fc2c369402c8bced-0063ee2f83
- X-Amz-Version-Id:
- - "1676554110402678"
+ - txge275b903f88f43af898f-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1090,28 +1113,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132835Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:35 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa42bf5e557f349d1b2ff8-0063ee2f83
+ - txg5d27aaeae48b4ad4962f-006571d02b
X-Amz-Request-Id:
- - txa42bf5e557f349d1b2ff8-0063ee2f83
+ - txg5d27aaeae48b4ad4962f-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1120,38 +1143,38 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-storage-class-4219063255558362259/myfile
+ - test-acc-scaleway-object-storage-class-4839663285646876788/myfile
X-Amz-Date:
- - 20230216T132836Z
+ - 20231207T140118Z
X-Amz-Storage-Class:
- STANDARD
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: |-
- 2023-02-16T13:28:36.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:36 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:28:36 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txaea74acd0ecb467b88cf7-0063ee2f84
+ - tx7009e9c1749743dbaf86d-006571d02e
X-Amz-Request-Id:
- - txaea74acd0ecb467b88cf7-0063ee2f84
+ - tx7009e9c1749743dbaf86d-006571d02e
X-Amz-Version-Id:
- - "1676554110402678"
+ - "1701957672563050"
status: 200 OK
code: 200
duration: ""
@@ -1162,16 +1185,16 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132836Z
+ - 20231207T140118Z
X-Amz-Storage-Class:
- STANDARD
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -1181,17 +1204,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txdddd19932511464f9c321-0063ee2f84
+ - tx3139cb61bf0a42969df1d-006571d02e
X-Amz-Request-Id:
- - txdddd19932511464f9c321-0063ee2f84
+ - tx3139cb61bf0a42969df1d-006571d02e
X-Amz-Version-Id:
- - "1676554117132267"
+ - "1701957678750005"
status: 200 OK
code: 200
duration: ""
@@ -1200,12 +1223,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132837Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1217,17 +1240,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txc3b44298072341c6867f1-0063ee2f85
+ - txgb5e5e6d7adfc4b5197d0-006571d02e
X-Amz-Request-Id:
- - txc3b44298072341c6867f1-0063ee2f85
- X-Amz-Version-Id:
- - "1676554117132267"
+ - txgb5e5e6d7adfc4b5197d0-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1236,30 +1257,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132837Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txdd6b35e2986c412fb2f46-0063ee2f85
+ - txg01075e449c224e528c3d-006571d02e
X-Amz-Request-Id:
- - txdd6b35e2986c412fb2f46-0063ee2f85
- X-Amz-Version-Id:
- - "1676554117132267"
+ - txg01075e449c224e528c3d-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1268,28 +1287,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132837Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx5683eddfef9349bf94688-0063ee2f85
+ - txg03b1167690614a3986f8-006571d02e
X-Amz-Request-Id:
- - tx5683eddfef9349bf94688-0063ee2f85
+ - txg03b1167690614a3986f8-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1298,12 +1317,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132837Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:19 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txg7d3fc678219348fc96ca-006571d02f
+ X-Amz-Request-Id:
+ - txg7d3fc678219348fc96ca-006571d02f
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -1315,17 +1362,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx8e5f1704662f45dc92155-0063ee2f85
+ - txf06b6571a85a4eaa8799d-006571d02f
X-Amz-Request-Id:
- - tx8e5f1704662f45dc92155-0063ee2f85
+ - txf06b6571a85a4eaa8799d-006571d02f
X-Amz-Version-Id:
- - "1676554117132267"
+ - "1701957678750005"
status: 200 OK
code: 200
duration: ""
@@ -1334,28 +1381,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:38 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx1bd1f005b82f4602bae82-0063ee2f86
+ - txgffbf840d45ba4422958b-006571d030
X-Amz-Request-Id:
- - tx1bd1f005b82f4602bae82-0063ee2f86
+ - txgffbf840d45ba4422958b-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1364,26 +1411,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxf656d097e3b34978af79f-0063ee2f86
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-storage-class-4839663285646876788txg1c30b276713349ebbddb-006571d030
headers:
+ Content-Length:
+ - "276"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:38 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txf656d097e3b34978af79f-0063ee2f86
+ - txg1c30b276713349ebbddb-006571d030
X-Amz-Request-Id:
- - txf656d097e3b34978af79f-0063ee2f86
+ - txg1c30b276713349ebbddb-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1392,28 +1440,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-storage-class-42190632555583622591000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:28:37.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-storage-class-48396632856468767881000falsemyfile2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "666"
+ - "678"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:38 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txeda5ea94baef4bf383954-0063ee2f86
+ - txg8e94c7776a644c979673-006571d030
X-Amz-Request-Id:
- - txeda5ea94baef4bf383954-0063ee2f86
+ - txg8e94c7776a644c979673-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1422,26 +1470,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: foobar
+ body: |-
+
+ foobar
headers:
Content-Length:
- - "127"
+ - "166"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:38 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx9f65fa6dc5424627925bf-0063ee2f86
+ - txg6ad7d20cffa44b02a0ee-006571d030
X-Amz-Request-Id:
- - tx9f65fa6dc5424627925bf-0063ee2f86
+ - txg6ad7d20cffa44b02a0ee-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1450,26 +1500,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxac7333e3f6434b48aa2d3-0063ee2f86
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txgda0a9f48ec484d7f8be0-006571d030
headers:
+ Content-Length:
+ - "244"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:38 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txac7333e3f6434b48aa2d3-0063ee2f86
+ - txgda0a9f48ec484d7f8be0-006571d030
X-Amz-Request-Id:
- - txac7333e3f6434b48aa2d3-0063ee2f86
+ - txgda0a9f48ec484d7f8be0-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1478,28 +1529,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:38 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txc9528c3d523a4c7e97ae0-0063ee2f86
+ - txg49f4cdbb4594449f807d-006571d030
X-Amz-Request-Id:
- - txc9528c3d523a4c7e97ae0-0063ee2f86
+ - txg49f4cdbb4594449f807d-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1508,26 +1559,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132838Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txf2da2fbc13524a9a8b988-0063ee2f86
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-storage-class-4839663285646876788txg45a307eb668c49ecb9bb-006571d030
headers:
+ Content-Length:
+ - "254"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:28:41 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txf2da2fbc13524a9a8b988-0063ee2f86
+ - txg45a307eb668c49ecb9bb-006571d030
X-Amz-Request-Id:
- - txf2da2fbc13524a9a8b988-0063ee2f86
+ - txg45a307eb668c49ecb9bb-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1536,12 +1588,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132841Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1553,17 +1605,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:28:42 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:28:37 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txde2757d94f774cf3aef7e-0063ee2f89
+ - txg5a6f0397d98f4157a4e7-006571d030
X-Amz-Request-Id:
- - txde2757d94f774cf3aef7e-0063ee2f89
- X-Amz-Version-Id:
- - "1676554117132267"
+ - txg5a6f0397d98f4157a4e7-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1572,30 +1622,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132842Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:42 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx5f327c1380e74a4ea977e-0063ee2f8a
+ - txg00626a672e3346ed9096-006571d030
X-Amz-Request-Id:
- - tx5f327c1380e74a4ea977e-0063ee2f8a
- X-Amz-Version-Id:
- - "1676554117132267"
+ - txg00626a672e3346ed9096-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1604,28 +1652,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132842Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:28:42 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txddc35fb2303848749c36d-0063ee2f8a
+ - txgacf02eb52f81431bbbcf-006571d030
X-Amz-Request-Id:
- - txddc35fb2303848749c36d-0063ee2f8a
+ - txgacf02eb52f81431bbbcf-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1634,26 +1682,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132842Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/myfile
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:43 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx8a1b6917d8fc4e189921a-0063ee2f8b
+ - txgdf6d9f1b5a2e43ccaebc-006571d032
X-Amz-Request-Id:
- - tx8a1b6917d8fc4e189921a-0063ee2f8b
+ - txgdf6d9f1b5a2e43ccaebc-006571d032
status: 204 No Content
code: 204
duration: ""
@@ -1662,12 +1706,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132843Z
- url: https://test-acc-scaleway-object-storage-class-4219063255558362259.s3.fr-par.scw.cloud/
+ - 20231207T140122Z
+ url: https://test-acc-scaleway-object-storage-class-4839663285646876788.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1677,11 +1721,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:44 GMT
+ - Thu, 07 Dec 2023 14:01:22 GMT
X-Amz-Id-2:
- - tx676f8f807816492d956b9-0063ee2f8c
+ - tx32c2f457630b4ecda3434-006571d032
X-Amz-Request-Id:
- - tx676f8f807816492d956b9-0063ee2f8c
+ - tx32c2f457630b4ecda3434-006571d032
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-tags.cassette.yaml b/scaleway/testdata/object-tags.cassette.yaml
index c029d6d514..d8858c8ef0 100644
--- a/scaleway/testdata/object-tags.cassette.yaml
+++ b/scaleway/testdata/object-tags.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132745Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:46 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-tags-3785182762926789080
+ - /test-acc-scaleway-object-tags-5157247322662211501
X-Amz-Id-2:
- - tx9d4e3e06ff224186b6f49-0063ee2f51
+ - txgaabfe13a73144b8a91a1-006571d027
X-Amz-Request-Id:
- - tx9d4e3e06ff224186b6f49-0063ee2f51
+ - txgaabfe13a73144b8a91a1-006571d027
status: 200 OK
code: 200
duration: ""
@@ -44,28 +42,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132746Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:47 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx8378847ab0b94936b31e3-0063ee2f52
+ - txg4834f2124401441ab4a3-006571d028
X-Amz-Request-Id:
- - tx8378847ab0b94936b31e3-0063ee2f52
+ - txg4834f2124401441ab4a3-006571d028
status: 200 OK
code: 200
duration: ""
@@ -74,28 +70,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132747Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:48 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx756103b03cf04c409d22c-0063ee2f54
+ - txg076b0294e8d7404fb271-006571d028
X-Amz-Request-Id:
- - tx756103b03cf04c409d22c-0063ee2f54
+ - txg076b0294e8d7404fb271-006571d028
status: 200 OK
code: 200
duration: ""
@@ -104,26 +100,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132747Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxc0ba0d95b74a4db5a8030-0063ee2f54
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-tags-5157247322662211501txg93a3accf4e0f48218422-006571d028
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:48 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txc0ba0d95b74a4db5a8030-0063ee2f54
+ - txg93a3accf4e0f48218422-006571d028
X-Amz-Request-Id:
- - txc0ba0d95b74a4db5a8030-0063ee2f54
+ - txg93a3accf4e0f48218422-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -132,28 +129,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132748Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-tags-37851827629267890801000false
+
+ test-acc-scaleway-object-tags-51572473226622115011000false
headers:
Content-Length:
- - "271"
+ - "275"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:48 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx4973f0d2cc504bc49ece7-0063ee2f54
+ - txg51d48d4582db4e63a727-006571d028
X-Amz-Request-Id:
- - tx4973f0d2cc504bc49ece7-0063ee2f54
+ - txg51d48d4582db4e63a727-006571d028
status: 200 OK
code: 200
duration: ""
@@ -162,26 +159,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132748Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx71e99c82c2c843b996fd0-0063ee2f54
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-tags-5157247322662211501txg0d136f4c1f0547c6a9d3-006571d028
headers:
+ Content-Length:
+ - "212"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:48 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx71e99c82c2c843b996fd0-0063ee2f54
+ - txg0d136f4c1f0547c6a9d3-006571d028
X-Amz-Request-Id:
- - tx71e99c82c2c843b996fd0-0063ee2f54
+ - txg0d136f4c1f0547c6a9d3-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -190,26 +187,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132748Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx46c96ae40e574d66b4f0b-0063ee2f55
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg5b3436e9124f468f9650-006571d028
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx46c96ae40e574d66b4f0b-0063ee2f55
+ - txg5b3436e9124f468f9650-006571d028
X-Amz-Request-Id:
- - tx46c96ae40e574d66b4f0b-0063ee2f55
+ - txg5b3436e9124f468f9650-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -218,28 +216,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132749Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx1da108177cd54224b8d3d-0063ee2f55
+ - txgf3236f0b11d94a948ce4-006571d028
X-Amz-Request-Id:
- - tx1da108177cd54224b8d3d-0063ee2f55
+ - txgf3236f0b11d94a948ce4-006571d028
status: 200 OK
code: 200
duration: ""
@@ -248,26 +246,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132749Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx7c24698e3b03438e96f9f-0063ee2f55
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg44a1ef22f69042e78c1e-006571d028
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx7c24698e3b03438e96f9f-0063ee2f55
+ - txg44a1ef22f69042e78c1e-006571d028
X-Amz-Request-Id:
- - tx7c24698e3b03438e96f9f-0063ee2f55
+ - txg44a1ef22f69042e78c1e-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -278,12 +277,12 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132749Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -293,17 +292,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txfa99aed1a0bd4b36b40cc-0063ee2f55
+ - tx504a0589d5564108b1c2e-006571d028
X-Amz-Request-Id:
- - txfa99aed1a0bd4b36b40cc-0063ee2f55
+ - tx504a0589d5564108b1c2e-006571d028
X-Amz-Version-Id:
- - "1676554069548716"
+ - "1701957672496746"
status: 200 OK
code: 200
duration: ""
@@ -316,26 +315,24 @@ interactions:
Content-Md5:
- mQhDgcUN5gXE06zTwL9oCA==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- b84601260dbc2e75ff1eeefb4d67a4635b7eb2c322602647f78cb49a1a59a49b
X-Amz-Date:
- - 20230216T132750Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx78c4715aff66449ba24cb-0063ee2f56
+ - txg597da2bc1eef44a7888a-006571d028
X-Amz-Request-Id:
- - tx78c4715aff66449ba24cb-0063ee2f56
+ - txg597da2bc1eef44a7888a-006571d028
status: 200 OK
code: 200
duration: ""
@@ -344,12 +341,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132750Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -361,17 +358,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:50 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx651481294cc949c99fa3b-0063ee2f56
+ - txg50b7095f479e4ac6a164-006571d028
X-Amz-Request-Id:
- - tx651481294cc949c99fa3b-0063ee2f56
- X-Amz-Version-Id:
- - "1676554069548716"
+ - txg50b7095f479e4ac6a164-006571d028
status: 200 OK
code: 200
duration: ""
@@ -380,28 +375,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132750Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
- body: keyvalue
+ body: |-
+
+ keyvalue
headers:
Content-Length:
- - "129"
+ - "168"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:50 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx75c3c613e2be4a39bb6e3-0063ee2f56
+ - txg27bed39c125a478c869a-006571d029
X-Amz-Request-Id:
- - tx75c3c613e2be4a39bb6e3-0063ee2f56
- X-Amz-Version-Id:
- - "1676554069548716"
+ - txg27bed39c125a478c869a-006571d029
status: 200 OK
code: 200
duration: ""
@@ -410,28 +405,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132750Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:50 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - txa7bf2d5950814169a59ab-0063ee2f56
+ - txge172dfa0270d4dd18492-006571d029
X-Amz-Request-Id:
- - txa7bf2d5950814169a59ab-0063ee2f56
+ - txge172dfa0270d4dd18492-006571d029
status: 200 OK
code: 200
duration: ""
@@ -440,12 +435,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132750Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txg4ca33920b9534d6e8c87-006571d029
+ X-Amz-Request-Id:
+ - txg4ca33920b9534d6e8c87-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -457,17 +480,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:51 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txb7986d1d479b4250bd908-0063ee2f57
+ - txcc2966cf3bb84eb59d7eb-006571d029
X-Amz-Request-Id:
- - txb7986d1d479b4250bd908-0063ee2f57
+ - txcc2966cf3bb84eb59d7eb-006571d029
X-Amz-Version-Id:
- - "1676554069548716"
+ - "1701957672496746"
status: 200 OK
code: 200
duration: ""
@@ -476,28 +499,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132751Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:51 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx036973173bb543b58ac38-0063ee2f57
+ - txg906aa9fb4aa64fdb8175-006571d02a
X-Amz-Request-Id:
- - tx036973173bb543b58ac38-0063ee2f57
+ - txg906aa9fb4aa64fdb8175-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -506,26 +529,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132751Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettxdc9c7d02e0a74424901e2-0063ee2f57
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-tags-5157247322662211501txg953966ea217b458a8eed-006571d02a
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:51 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txdc9c7d02e0a74424901e2-0063ee2f57
+ - txg953966ea217b458a8eed-006571d02a
X-Amz-Request-Id:
- - txdc9c7d02e0a74424901e2-0063ee2f57
+ - txg953966ea217b458a8eed-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -534,28 +558,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132751Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-tags-37851827629267890801000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:49.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-tags-51572473226622115011000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:51 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx43b301b49797412982cd1-0063ee2f57
+ - txg4fe8fdc2f48c487690b9-006571d02a
X-Amz-Request-Id:
- - tx43b301b49797412982cd1-0063ee2f57
+ - txg4fe8fdc2f48c487690b9-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -564,26 +588,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132751Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx12e2a29529ff4564a9e70-0063ee2f57
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-tags-5157247322662211501txg19fb95ce23ee49e19aaa-006571d02a
headers:
+ Content-Length:
+ - "212"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:51 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx12e2a29529ff4564a9e70-0063ee2f57
+ - txg19fb95ce23ee49e19aaa-006571d02a
X-Amz-Request-Id:
- - tx12e2a29529ff4564a9e70-0063ee2f57
+ - txg19fb95ce23ee49e19aaa-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -592,26 +616,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132752Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx229f3f326b364bf083bb9-0063ee2f58
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg4c0155172f53475fa239-006571d02a
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:52 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx229f3f326b364bf083bb9-0063ee2f58
+ - txg4c0155172f53475fa239-006571d02a
X-Amz-Request-Id:
- - tx229f3f326b364bf083bb9-0063ee2f58
+ - txg4c0155172f53475fa239-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -620,28 +645,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132752Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:52 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txd092fad4b34145b2b19ab-0063ee2f58
+ - txgf0eec52169944bf79f35-006571d02a
X-Amz-Request-Id:
- - txd092fad4b34145b2b19ab-0063ee2f58
+ - txgf0eec52169944bf79f35-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -650,26 +675,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132752Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txb8c0e1a5eb99454e83551-0063ee2f58
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg0ea68f7565594cf2a0df-006571d02a
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:52 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txb8c0e1a5eb99454e83551-0063ee2f58
+ - txg0ea68f7565594cf2a0df-006571d02a
X-Amz-Request-Id:
- - txb8c0e1a5eb99454e83551-0063ee2f58
+ - txg0ea68f7565594cf2a0df-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -678,12 +704,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132752Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -695,17 +721,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:52 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txfb5d8804e3aa4e01af2eb-0063ee2f58
+ - txg100f27016c724c118ea7-006571d02a
X-Amz-Request-Id:
- - txfb5d8804e3aa4e01af2eb-0063ee2f58
- X-Amz-Version-Id:
- - "1676554069548716"
+ - txg100f27016c724c118ea7-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -714,28 +738,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132752Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
- body: keyvalue
+ body: |-
+
+ keyvalue
headers:
Content-Length:
- - "129"
+ - "168"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:52 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txf9645929ec2c4d30b4522-0063ee2f58
+ - txgc26fd57bce5c4ed5a6ea-006571d02a
X-Amz-Request-Id:
- - txf9645929ec2c4d30b4522-0063ee2f58
- X-Amz-Version-Id:
- - "1676554069548716"
+ - txgc26fd57bce5c4ed5a6ea-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -744,28 +768,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132752Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:52 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx0008e01563ce48318d064-0063ee2f58
+ - txg6c81b6b94d6b42aeaba8-006571d02a
X-Amz-Request-Id:
- - tx0008e01563ce48318d064-0063ee2f58
+ - txg6c81b6b94d6b42aeaba8-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -774,28 +798,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132753Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:53 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx3adff1bcefc24b4fad420-0063ee2f59
+ - txg2255d35a7cbb40698b3d-006571d02b
X-Amz-Request-Id:
- - tx3adff1bcefc24b4fad420-0063ee2f59
+ - txg2255d35a7cbb40698b3d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -804,26 +828,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132753Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx00382295deee40a3bab57-0063ee2f59
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-tags-5157247322662211501txg2d91f8eb658e463d8ff3-006571d02b
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:53 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx00382295deee40a3bab57-0063ee2f59
+ - txg2d91f8eb658e463d8ff3-006571d02b
X-Amz-Request-Id:
- - tx00382295deee40a3bab57-0063ee2f59
+ - txg2d91f8eb658e463d8ff3-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -832,28 +857,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132753Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-tags-37851827629267890801000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:49.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-tags-51572473226622115011000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:53 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx83dbbf6b69574cf199395-0063ee2f59
+ - txg9aa41b6a651e4f49949c-006571d02b
X-Amz-Request-Id:
- - tx83dbbf6b69574cf199395-0063ee2f59
+ - txg9aa41b6a651e4f49949c-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -862,26 +887,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132753Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx138fc1531f9a441784ad8-0063ee2f59
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-tags-5157247322662211501txg01e461b5524f4c8eaa35-006571d02b
headers:
+ Content-Length:
+ - "212"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:53 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx138fc1531f9a441784ad8-0063ee2f59
+ - txg01e461b5524f4c8eaa35-006571d02b
X-Amz-Request-Id:
- - tx138fc1531f9a441784ad8-0063ee2f59
+ - txg01e461b5524f4c8eaa35-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -890,26 +915,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132753Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxa5e6079b9bbd490dad1a1-0063ee2f59
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg1fe81f0ab1ed46c482ad-006571d02b
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:53 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa5e6079b9bbd490dad1a1-0063ee2f59
+ - txg1fe81f0ab1ed46c482ad-006571d02b
X-Amz-Request-Id:
- - txa5e6079b9bbd490dad1a1-0063ee2f59
+ - txg1fe81f0ab1ed46c482ad-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -918,28 +944,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132753Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:54 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx2e5bce97f3984db6ad19a-0063ee2f59
+ - txg3a8754080846426a9add-006571d02b
X-Amz-Request-Id:
- - tx2e5bce97f3984db6ad19a-0063ee2f59
+ - txg3a8754080846426a9add-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -948,26 +974,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132754Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txb9562dc546d44da788f42-0063ee2f5a
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg5cc046f89f424fd58245-006571d02b
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:54 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txb9562dc546d44da788f42-0063ee2f5a
+ - txg5cc046f89f424fd58245-006571d02b
X-Amz-Request-Id:
- - txb9562dc546d44da788f42-0063ee2f5a
+ - txg5cc046f89f424fd58245-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -976,12 +1003,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132754Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -993,17 +1020,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:54 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:49 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa58f3c6425e242a593972-0063ee2f5a
+ - txg582d7e197dca43aeb7f4-006571d02b
X-Amz-Request-Id:
- - txa58f3c6425e242a593972-0063ee2f5a
- X-Amz-Version-Id:
- - "1676554069548716"
+ - txg582d7e197dca43aeb7f4-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1012,28 +1037,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132754Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
- body: keyvalue
+ body: |-
+
+ keyvalue
headers:
Content-Length:
- - "129"
+ - "168"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:54 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx9a10ba19afdf40a38e423-0063ee2f5a
+ - txg4bba6304f5774c2b928d-006571d02b
X-Amz-Request-Id:
- - tx9a10ba19afdf40a38e423-0063ee2f5a
- X-Amz-Version-Id:
- - "1676554069548716"
+ - txg4bba6304f5774c2b928d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1042,28 +1067,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132754Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:54 GMT
+ - Thu, 07 Dec 2023 14:01:16 GMT
X-Amz-Id-2:
- - tx55dd8057d19a48449d1e4-0063ee2f5a
+ - txg4ff7f1bca4fc4f60add6-006571d02c
X-Amz-Request-Id:
- - tx55dd8057d19a48449d1e4-0063ee2f5a
+ - txg4ff7f1bca4fc4f60add6-006571d02c
status: 200 OK
code: 200
duration: ""
@@ -1072,68 +1097,66 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-tags-3785182762926789080/myfile
+ - test-acc-scaleway-object-tags-5157247322662211501/myfile
X-Amz-Date:
- - 20230216T132754Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: |-
- 2023-02-16T13:27:55.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:27:55 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txf799dd56478d4e31bc6c2-0063ee2f5a
+ - tx08d67d06f7d34b7298afc-006571d02e
X-Amz-Request-Id:
- - txf799dd56478d4e31bc6c2-0063ee2f5a
+ - tx08d67d06f7d34b7298afc-006571d02e
X-Amz-Version-Id:
- - "1676554069548716"
+ - "1701957672496746"
status: 200 OK
code: 200
duration: ""
- request:
- body: keyother_valueother_keyVALUE
+ body: keyother_valueVALUEother_key
form: {}
headers:
Content-Length:
- "186"
Content-Md5:
- - QlwT4BvMFdwNwywPaaGz6g==
+ - 9PFG1yvTn37n4gR6RFKitQ==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- - be6d70726d4d22a4b911968dd6ef4fa9b410f1060ae1df671f0935bec6763ffe
+ - 0b34b2bda95131dfe6faa894035c7c382e38bb7b376c8c668fa88ed82d63c839
X-Amz-Date:
- - 20230216T132755Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx6729eee6cd0d47d0b8ef3-0063ee2f5c
+ - txg5bfbb4d6fc57461d94b7-006571d02e
X-Amz-Request-Id:
- - tx6729eee6cd0d47d0b8ef3-0063ee2f5c
+ - txg5bfbb4d6fc57461d94b7-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1144,14 +1167,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132756Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -1161,17 +1184,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx4299ab643b444df78fd54-0063ee2f5c
+ - tx8de083ff16d94a5c9123e-006571d02e
X-Amz-Request-Id:
- - tx4299ab643b444df78fd54-0063ee2f5c
+ - tx8de083ff16d94a5c9123e-006571d02e
X-Amz-Version-Id:
- - "1676554076601932"
+ - "1701957678896549"
status: 200 OK
code: 200
duration: ""
@@ -1184,26 +1207,24 @@ interactions:
Content-Md5:
- QlwT4BvMFdwNwywPaaGz6g==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- be6d70726d4d22a4b911968dd6ef4fa9b410f1060ae1df671f0935bec6763ffe
X-Amz-Date:
- - 20230216T132756Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - tx9df29ef237654ec4b3d35-0063ee2f5c
+ - txga6b878f5ebbb49078e56-006571d02f
X-Amz-Request-Id:
- - tx9df29ef237654ec4b3d35-0063ee2f5c
+ - txga6b878f5ebbb49078e56-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1212,12 +1233,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132756Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1229,17 +1250,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txeb2bf9433afe491ebbf9a-0063ee2f5c
+ - txg1a3e883c566b4d3f823d-006571d02f
X-Amz-Request-Id:
- - txeb2bf9433afe491ebbf9a-0063ee2f5c
- X-Amz-Version-Id:
- - "1676554076601932"
+ - txg1a3e883c566b4d3f823d-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1248,28 +1267,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132756Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
- body: keyother_valueother_keyVALUE
+ body: |-
+
+ keyother_valueother_keyVALUE
headers:
Content-Length:
- - "186"
+ - "225"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:57 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
X-Amz-Id-2:
- - txb79d6a1dc7c34945bebb8-0063ee2f5c
+ - txg1071f5380bfa477d8a90-006571d02f
X-Amz-Request-Id:
- - txb79d6a1dc7c34945bebb8-0063ee2f5c
- X-Amz-Version-Id:
- - "1676554076601932"
+ - txg1071f5380bfa477d8a90-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1278,28 +1297,56 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132756Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:19 GMT
+ X-Amz-Id-2:
+ - txg3e23a2df8f2b42399253-006571d02f
+ X-Amz-Request-Id:
+ - txg3e23a2df8f2b42399253-006571d02f
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
Date:
- - Thu, 16 Feb 2023 13:27:57 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
X-Amz-Id-2:
- - tx03fdd691c3ff49599a485-0063ee2f5d
+ - txg64ce4343233647feb3a7-006571d02f
X-Amz-Request-Id:
- - tx03fdd691c3ff49599a485-0063ee2f5d
+ - txg64ce4343233647feb3a7-006571d02f
status: 200 OK
code: 200
duration: ""
@@ -1308,12 +1355,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132757Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -1325,17 +1372,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:57 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx3e0bf6739f9d4ce2bee7d-0063ee2f5d
+ - tx868b5b048d9049f38d062-006571d02f
X-Amz-Request-Id:
- - tx3e0bf6739f9d4ce2bee7d-0063ee2f5d
+ - tx868b5b048d9049f38d062-006571d02f
X-Amz-Version-Id:
- - "1676554076601932"
+ - "1701957678896549"
status: 200 OK
code: 200
duration: ""
@@ -1344,28 +1391,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132757Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:57 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx891c78bb72b94f1d9ad6b-0063ee2f5d
+ - txgf907e00d82d1476fa8fd-006571d030
X-Amz-Request-Id:
- - tx891c78bb72b94f1d9ad6b-0063ee2f5d
+ - txgf907e00d82d1476fa8fd-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1374,26 +1421,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132757Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx2d5bffd690c94a4db7008-0063ee2f5d
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-tags-5157247322662211501txgbbbd1a2b0218478f999c-006571d030
headers:
+ Content-Length:
+ - "267"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:58 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx2d5bffd690c94a4db7008-0063ee2f5d
+ - txgbbbd1a2b0218478f999c-006571d030
X-Amz-Request-Id:
- - tx2d5bffd690c94a4db7008-0063ee2f5d
+ - txgbbbd1a2b0218478f999c-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1402,28 +1450,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132757Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-tags-37851827629267890801000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:56.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-tags-51572473226622115011000falsemyfile2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "657"
+ - "669"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:58 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx9327dc9d839241349d0ca-0063ee2f5e
+ - txg7b053e9937e74e859fbc-006571d030
X-Amz-Request-Id:
- - tx9327dc9d839241349d0ca-0063ee2f5e
+ - txg7b053e9937e74e859fbc-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1432,26 +1480,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132758Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx48e509f210ab4504bc2a2-0063ee2f5e
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-tags-5157247322662211501txgad96800eb3d44b2eafed-006571d030
headers:
+ Content-Length:
+ - "212"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:58 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx48e509f210ab4504bc2a2-0063ee2f5e
+ - txgad96800eb3d44b2eafed-006571d030
X-Amz-Request-Id:
- - tx48e509f210ab4504bc2a2-0063ee2f5e
+ - txgad96800eb3d44b2eafed-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1460,26 +1508,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132758Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx319a995d72dc49dcb08ec-0063ee2f5e
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txgc34ca13a499340ecb255-006571d030
headers:
+ Content-Length:
+ - "235"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:58 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx319a995d72dc49dcb08ec-0063ee2f5e
+ - txgc34ca13a499340ecb255-006571d030
X-Amz-Request-Id:
- - tx319a995d72dc49dcb08ec-0063ee2f5e
+ - txgc34ca13a499340ecb255-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1488,28 +1537,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132758Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:58 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txad51c9ccb9084bc68dd03-0063ee2f5e
+ - txge1ca5fbac22a41c6b38e-006571d030
X-Amz-Request-Id:
- - txad51c9ccb9084bc68dd03-0063ee2f5e
+ - txge1ca5fbac22a41c6b38e-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1518,26 +1567,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132758Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx4a4f4ab54844430894a40-0063ee2f5e
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-tags-5157247322662211501txg40ef086b1ee840a78bd0-006571d030
headers:
+ Content-Length:
+ - "245"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:59 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx4a4f4ab54844430894a40-0063ee2f5e
+ - txg40ef086b1ee840a78bd0-006571d030
X-Amz-Request-Id:
- - tx4a4f4ab54844430894a40-0063ee2f5e
+ - txg40ef086b1ee840a78bd0-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1546,12 +1596,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132758Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1563,17 +1613,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:59 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:56 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx070692728de348a08244a-0063ee2f5f
+ - txgf1edb7a333a4448c844a-006571d030
X-Amz-Request-Id:
- - tx070692728de348a08244a-0063ee2f5f
- X-Amz-Version-Id:
- - "1676554076601932"
+ - txgf1edb7a333a4448c844a-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1582,28 +1630,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132759Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
- body: keyother_valueother_keyVALUE
+ body: |-
+
+ keyother_valueother_keyVALUE
headers:
Content-Length:
- - "186"
+ - "225"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:59 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txe9674b5b3a1346a5bbb28-0063ee2f5f
+ - txg49558a9bc3904d7e8e70-006571d031
X-Amz-Request-Id:
- - txe9674b5b3a1346a5bbb28-0063ee2f5f
- X-Amz-Version-Id:
- - "1676554076601932"
+ - txg49558a9bc3904d7e8e70-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1612,28 +1660,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132759Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140121Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:59 GMT
+ - Thu, 07 Dec 2023 14:01:21 GMT
X-Amz-Id-2:
- - txe944473fbc244c72bc148-0063ee2f5f
+ - txg4d4c26b77f864a8dbbb1-006571d031
X-Amz-Request-Id:
- - txe944473fbc244c72bc148-0063ee2f5f
+ - txg4d4c26b77f864a8dbbb1-006571d031
status: 200 OK
code: 200
duration: ""
@@ -1642,26 +1690,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132759Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/myfile
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:00 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx6dba9950cc064be4b749a-0063ee2f5f
+ - txga297da2824124c039d2f-006571d033
X-Amz-Request-Id:
- - tx6dba9950cc064be4b749a-0063ee2f5f
+ - txga297da2824124c039d2f-006571d033
status: 204 No Content
code: 204
duration: ""
@@ -1670,12 +1714,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132800Z
- url: https://test-acc-scaleway-object-tags-3785182762926789080.s3.fr-par.scw.cloud/
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-tags-5157247322662211501.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1685,11 +1729,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:28:00 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - txa94944c95ee041a290e93-0063ee2f60
+ - txe667f2789f0f438793c6d-006571d033
X-Amz-Request-Id:
- - txa94944c95ee041a290e93-0063ee2f60
+ - txe667f2789f0f438793c6d-006571d033
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-visibility.cassette.yaml b/scaleway/testdata/object-visibility.cassette.yaml
index b1624534d6..fe36456eab 100644
--- a/scaleway/testdata/object-visibility.cassette.yaml
+++ b/scaleway/testdata/object-visibility.cassette.yaml
@@ -2,38 +2,36 @@
version: 1
interactions:
- request:
- body: fr-par
+ body: nl-ams
form: {}
headers:
Content-Length:
- "150"
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Bucket-Object-Lock-Enabled:
- "false"
X-Amz-Content-Sha256:
- - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
X-Amz-Date:
- - 20230216T132721Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:25 GMT
+ - Thu, 07 Dec 2023 14:01:11 GMT
Location:
- - /test-acc-scaleway-object-visibility-5691394606352818344
+ - /test-acc-scaleway-object-visibility-3303044744864497130
X-Amz-Id-2:
- - tx0173af8566a04954bfea3-0063ee2f39
+ - txgecb999676700415bbe82-006571d027
X-Amz-Request-Id:
- - tx0173af8566a04954bfea3-0063ee2f39
+ - txgecb999676700415bbe82-006571d027
status: 200 OK
code: 200
duration: ""
@@ -44,28 +42,26 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132725Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?acl=
method: PUT
response:
body: ""
headers:
Content-Length:
- "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:26 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx2839627eaeb741a5a4f83-0063ee2f3d
+ - txg0e395d2c0f5a42ef9ef3-006571d028
X-Amz-Request-Id:
- - tx2839627eaeb741a5a4f83-0063ee2f3d
+ - txg0e395d2c0f5a42ef9ef3-006571d028
status: 200 OK
code: 200
duration: ""
@@ -74,28 +70,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132726Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:26 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txc41f05c51d3f4dbeb6eb7-0063ee2f3e
+ - txg5b7e5997ac88405095d3-006571d028
X-Amz-Request-Id:
- - txc41f05c51d3f4dbeb6eb7-0063ee2f3e
+ - txg5b7e5997ac88405095d3-006571d028
status: 200 OK
code: 200
duration: ""
@@ -104,26 +100,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132726Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx9c019f567d0b492a90a93-0063ee2f3e
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-visibility-3303044744864497130txg0729cf2d9c5e4e6abb17-006571d028
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:26 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx9c019f567d0b492a90a93-0063ee2f3e
+ - txg0729cf2d9c5e4e6abb17-006571d028
X-Amz-Request-Id:
- - tx9c019f567d0b492a90a93-0063ee2f3e
+ - txg0729cf2d9c5e4e6abb17-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -132,28 +129,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132726Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-visibility-56913946063528183441000false
+
+ test-acc-scaleway-object-visibility-33030447448644971301000false
headers:
Content-Length:
- - "277"
+ - "281"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx6b1a3db2c75745c592c4c-0063ee2f3f
+ - txgb15cc96f65b74de8a4c6-006571d028
X-Amz-Request-Id:
- - tx6b1a3db2c75745c592c4c-0063ee2f3f
+ - txgb15cc96f65b74de8a4c6-006571d028
status: 200 OK
code: 200
duration: ""
@@ -162,26 +159,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132727Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.txf76d1e1a786c47519db3c-0063ee2f3f
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg1fdc283ddbed4d54aff8-006571d028
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txf76d1e1a786c47519db3c-0063ee2f3f
+ - txg1fdc283ddbed4d54aff8-006571d028
X-Amz-Request-Id:
- - txf76d1e1a786c47519db3c-0063ee2f3f
+ - txg1fdc283ddbed4d54aff8-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -190,26 +187,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132727Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxb993d742634a44f3a94de-0063ee2f3f
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg7374b37c4be74629b4d2-006571d028
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txb993d742634a44f3a94de-0063ee2f3f
+ - txg7374b37c4be74629b4d2-006571d028
X-Amz-Request-Id:
- - txb993d742634a44f3a94de-0063ee2f3f
+ - txg7374b37c4be74629b4d2-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -218,28 +216,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132727Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:27 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx6f78e9262a1b41ab98bfa-0063ee2f3f
+ - txgefbef3c45f8842d6b259-006571d028
X-Amz-Request-Id:
- - tx6f78e9262a1b41ab98bfa-0063ee2f3f
+ - txgefbef3c45f8842d6b259-006571d028
status: 200 OK
code: 200
duration: ""
@@ -248,26 +246,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132728Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txad40cc463d0042f795348-0063ee2f40
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg91649f93b94c46b0a6ab-006571d028
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txad40cc463d0042f795348-0063ee2f40
+ - txg91649f93b94c46b0a6ab-006571d028
X-Amz-Request-Id:
- - txad40cc463d0042f795348-0063ee2f40
+ - txg91649f93b94c46b0a6ab-006571d028
status: 404 Not Found
code: 404
duration: ""
@@ -278,14 +277,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- public-read
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132728Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -295,17 +294,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:29 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx88bf24544e2b413ca190d-0063ee2f40
+ - tx2a610b31eef84ffb85b06-006571d028
X-Amz-Request-Id:
- - tx88bf24544e2b413ca190d-0063ee2f40
+ - tx2a610b31eef84ffb85b06-006571d028
X-Amz-Version-Id:
- - "1676554048904118"
+ - "1701957672637479"
status: 200 OK
code: 200
duration: ""
@@ -314,12 +313,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132729Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -331,17 +330,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:29 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx232e5acd40b94523b4e35-0063ee2f41
+ - txg172ed2aa4a874bcc87fb-006571d028
X-Amz-Request-Id:
- - tx232e5acd40b94523b4e35-0063ee2f41
- X-Amz-Version-Id:
- - "1676554048904118"
+ - txg172ed2aa4a874bcc87fb-006571d028
status: 200 OK
code: 200
duration: ""
@@ -350,30 +347,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132729Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:30 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - tx407c0a01441a4cbca7bdb-0063ee2f41
+ - txg7f939bfe24d040b4ac08-006571d029
X-Amz-Request-Id:
- - tx407c0a01441a4cbca7bdb-0063ee2f41
- X-Amz-Version-Id:
- - "1676554048904118"
+ - txg7f939bfe24d040b4ac08-006571d029
status: 200 OK
code: 200
duration: ""
@@ -382,28 +377,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132730Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "890"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:30 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
X-Amz-Id-2:
- - txa482f92b8b52456eac44c-0063ee2f42
+ - txg8f7f60b3a42c4a17be40-006571d029
X-Amz-Request-Id:
- - txa482f92b8b52456eac44c-0063ee2f42
+ - txg8f7f60b3a42c4a17be40-006571d029
status: 200 OK
code: 200
duration: ""
@@ -412,12 +407,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132730Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txg50e9d786df7a40edbec3-006571d029
+ X-Amz-Request-Id:
+ - txg50e9d786df7a40edbec3-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -429,17 +452,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:31 GMT
+ - Thu, 07 Dec 2023 14:01:13 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txa6a1f91210684acba8657-0063ee2f42
+ - tx7ccaf5f85f0642c59c87c-006571d029
X-Amz-Request-Id:
- - txa6a1f91210684acba8657-0063ee2f42
+ - tx7ccaf5f85f0642c59c87c-006571d029
X-Amz-Version-Id:
- - "1676554048904118"
+ - "1701957672637479"
status: 200 OK
code: 200
duration: ""
@@ -448,28 +471,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132731Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:31 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txc7dca9f15e4743d49bec0-0063ee2f43
+ - txg36d6698e29a049f48022-006571d02a
X-Amz-Request-Id:
- - txc7dca9f15e4743d49bec0-0063ee2f43
+ - txg36d6698e29a049f48022-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -478,26 +501,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132731Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx711fab5a382a497080e80-0063ee2f43
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-visibility-3303044744864497130txga51125b9791348ebac8c-006571d02a
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx711fab5a382a497080e80-0063ee2f43
+ - txga51125b9791348ebac8c-006571d02a
X-Amz-Request-Id:
- - tx711fab5a382a497080e80-0063ee2f43
+ - txga51125b9791348ebac8c-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -506,28 +530,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132732Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-visibility-56913946063528183441000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:28.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-visibility-33030447448644971301000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "663"
+ - "675"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx1df03eaaf124469b8cf69-0063ee2f44
+ - txg470d33da0ab541b891cc-006571d02a
X-Amz-Request-Id:
- - tx1df03eaaf124469b8cf69-0063ee2f44
+ - txg470d33da0ab541b891cc-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -536,26 +560,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132732Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.txcc0bda696e8f4af288161-0063ee2f44
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg7671b8eef85f4a07a306-006571d02a
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txcc0bda696e8f4af288161-0063ee2f44
+ - txg7671b8eef85f4a07a306-006571d02a
X-Amz-Request-Id:
- - txcc0bda696e8f4af288161-0063ee2f44
+ - txg7671b8eef85f4a07a306-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -564,26 +588,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132732Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxcf091c4a4c3845449e2b9-0063ee2f44
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txged1401488cb84dc3a54c-006571d02a
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:32 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txcf091c4a4c3845449e2b9-0063ee2f44
+ - txged1401488cb84dc3a54c-006571d02a
X-Amz-Request-Id:
- - txcf091c4a4c3845449e2b9-0063ee2f44
+ - txged1401488cb84dc3a54c-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -592,28 +617,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132732Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - txfdca9556ec2642358c9e9-0063ee2f44
+ - txg6c0eacaf815e4645b963-006571d02a
X-Amz-Request-Id:
- - txfdca9556ec2642358c9e9-0063ee2f44
+ - txg6c0eacaf815e4645b963-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -622,26 +647,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132733Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx26058af0c6a94d7db3f54-0063ee2f45
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg95a88e9340104718bc7e-006571d02a
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx26058af0c6a94d7db3f54-0063ee2f45
+ - txg95a88e9340104718bc7e-006571d02a
X-Amz-Request-Id:
- - tx26058af0c6a94d7db3f54-0063ee2f45
+ - txg95a88e9340104718bc7e-006571d02a
status: 404 Not Found
code: 404
duration: ""
@@ -650,12 +676,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132733Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -667,17 +693,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - tx43c2b47540474dcd890ac-0063ee2f45
+ - txg2840c35456534461bdf7-006571d02a
X-Amz-Request-Id:
- - tx43c2b47540474dcd890ac-0063ee2f45
- X-Amz-Version-Id:
- - "1676554048904118"
+ - txg2840c35456534461bdf7-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -686,30 +710,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132733Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx1acded355a2649da9b2f8-0063ee2f45
+ - txg1ca81aa82cd54f89850b-006571d02a
X-Amz-Request-Id:
- - tx1acded355a2649da9b2f8-0063ee2f45
- X-Amz-Version-Id:
- - "1676554048904118"
+ - txg1ca81aa82cd54f89850b-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -718,28 +740,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132733Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "890"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:33 GMT
+ - Thu, 07 Dec 2023 14:01:14 GMT
X-Amz-Id-2:
- - tx723082e58adf4be4a92a6-0063ee2f45
+ - txg6f0446baa1fc45a38823-006571d02a
X-Amz-Request-Id:
- - tx723082e58adf4be4a92a6-0063ee2f45
+ - txg6f0446baa1fc45a38823-006571d02a
status: 200 OK
code: 200
duration: ""
@@ -748,28 +770,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132734Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:34 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx36c6ce83b8cc4389935f5-0063ee2f46
+ - txg13941f93f51548078162-006571d02b
X-Amz-Request-Id:
- - tx36c6ce83b8cc4389935f5-0063ee2f46
+ - txg13941f93f51548078162-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -778,26 +800,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132734Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx3d5dddb9cd814f91964db-0063ee2f46
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-visibility-3303044744864497130txg63a560d0a2844ea682cb-006571d02b
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:36 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx3d5dddb9cd814f91964db-0063ee2f46
+ - txg63a560d0a2844ea682cb-006571d02b
X-Amz-Request-Id:
- - tx3d5dddb9cd814f91964db-0063ee2f46
+ - txg63a560d0a2844ea682cb-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -806,28 +829,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132735Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-visibility-56913946063528183441000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:28.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-visibility-33030447448644971301000falsemyfile2023-12-07T14:01:12.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "663"
+ - "675"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:36 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx6a51b2a70b834a71b9346-0063ee2f48
+ - txgfc4756211ef34ac1a38f-006571d02b
X-Amz-Request-Id:
- - tx6a51b2a70b834a71b9346-0063ee2f48
+ - txgfc4756211ef34ac1a38f-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -836,26 +859,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132736Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.tx3685b80219d24167a2bf2-0063ee2f48
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-visibility-3303044744864497130txgfc183800924348628a76-006571d02b
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:36 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx3685b80219d24167a2bf2-0063ee2f48
+ - txgfc183800924348628a76-006571d02b
X-Amz-Request-Id:
- - tx3685b80219d24167a2bf2-0063ee2f48
+ - txgfc183800924348628a76-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -864,26 +887,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132737Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtxeb3402d061e640f49b64b-0063ee2f49
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txgfd6a3e72906043059f3b-006571d02b
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:37 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txeb3402d061e640f49b64b-0063ee2f49
+ - txgfd6a3e72906043059f3b-006571d02b
X-Amz-Request-Id:
- - txeb3402d061e640f49b64b-0063ee2f49
+ - txgfd6a3e72906043059f3b-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -892,28 +916,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132737Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:37 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txb79b82c5b2154b03aece2-0063ee2f49
+ - txg5095783a5e8e433dab8d-006571d02b
X-Amz-Request-Id:
- - txb79b82c5b2154b03aece2-0063ee2f49
+ - txg5095783a5e8e433dab8d-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -922,26 +946,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132737Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.txa7b11eaf46974b65af865-0063ee2f49
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg13dff9f0ae244312932e-006571d02b
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:37 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txa7b11eaf46974b65af865-0063ee2f49
+ - txg13dff9f0ae244312932e-006571d02b
X-Amz-Request-Id:
- - txa7b11eaf46974b65af865-0063ee2f49
+ - txg13dff9f0ae244312932e-006571d02b
status: 404 Not Found
code: 404
duration: ""
@@ -950,12 +975,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132737Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -967,17 +992,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:38 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:28 GMT
+ - Thu, 07 Dec 2023 14:01:12 GMT
X-Amz-Id-2:
- - txd75208a708ae4972a1c76-0063ee2f49
+ - txgf350e6cbd5614081b999-006571d02b
X-Amz-Request-Id:
- - txd75208a708ae4972a1c76-0063ee2f49
- X-Amz-Version-Id:
- - "1676554048904118"
+ - txgf350e6cbd5614081b999-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -986,30 +1009,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132737Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:38 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - txf0bec2c2cbe340cb8446d-0063ee2f4a
+ - txg23e41e5b92be433cb95f-006571d02b
X-Amz-Request-Id:
- - txf0bec2c2cbe340cb8446d-0063ee2f4a
- X-Amz-Version-Id:
- - "1676554048904118"
+ - txg23e41e5b92be433cb95f-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1018,28 +1039,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132738Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "890"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:38 GMT
+ - Thu, 07 Dec 2023 14:01:15 GMT
X-Amz-Id-2:
- - tx0819ffd0f60a42358597d-0063ee2f4a
+ - txg1d5c5538cdec4644b68c-006571d02b
X-Amz-Request-Id:
- - tx0819ffd0f60a42358597d-0063ee2f4a
+ - txg1d5c5538cdec4644b68c-006571d02b
status: 200 OK
code: 200
duration: ""
@@ -1048,36 +1069,36 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Copy-Source:
- - test-acc-scaleway-object-visibility-5691394606352818344/myfile
+ - test-acc-scaleway-object-visibility-3303044744864497130/myfile
X-Amz-Date:
- - 20230216T132738Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140117Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: |-
- 2023-02-16T13:27:38.000Z"d41d8cd98f00b204e9800998ecf8427e"
+ 2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"
headers:
Content-Length:
- "224"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Last-Modified:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txbc9c2c36ec6742759226c-0063ee2f4a
+ - tx716b577467954f8bae006-006571d02d
X-Amz-Request-Id:
- - txbc9c2c36ec6742759226c-0063ee2f4a
+ - tx716b577467954f8bae006-006571d02d
X-Amz-Version-Id:
- - "1676554048904118"
+ - "1701957672637479"
status: 200 OK
code: 200
duration: ""
@@ -1088,14 +1109,14 @@ interactions:
Content-Md5:
- 1B2M2Y8AsgTpgAmY7PhCfg==
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Acl:
- private
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132739Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: PUT
response:
body: ""
@@ -1105,17 +1126,17 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx56b2506ceee44e989d81e-0063ee2f4b
+ - tx6ec9b6f9cf9242cf84689-006571d02e
X-Amz-Request-Id:
- - tx56b2506ceee44e989d81e-0063ee2f4b
+ - tx6ec9b6f9cf9242cf84689-006571d02e
X-Amz-Version-Id:
- - "1676554059292130"
+ - "1701957678704384"
status: 200 OK
code: 200
duration: ""
@@ -1124,12 +1145,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132739Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1141,17 +1162,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txbb034393e21a42c0a3573-0063ee2f4b
+ - txga107b704f18348b8ba99-006571d02e
X-Amz-Request-Id:
- - txbb034393e21a42c0a3573-0063ee2f4b
- X-Amz-Version-Id:
- - "1676554059292130"
+ - txga107b704f18348b8ba99-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1160,30 +1179,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132739Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx852fd1c351b0495abcb87-0063ee2f4b
+ - txg0aa2e807a59c46d3a949-006571d02e
X-Amz-Request-Id:
- - tx852fd1c351b0495abcb87-0063ee2f4b
- X-Amz-Version-Id:
- - "1676554059292130"
+ - txg0aa2e807a59c46d3a949-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1192,28 +1209,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132739Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txd4ebc5c02d1d487cb2a90-0063ee2f4b
+ - txg32f36b39fd3b484cbff5-006571d02e
X-Amz-Request-Id:
- - txd4ebc5c02d1d487cb2a90-0063ee2f4b
+ - txg32f36b39fd3b484cbff5-006571d02e
status: 200 OK
code: 200
duration: ""
@@ -1222,12 +1239,40 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132739Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:18 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txgc5d7cbb96521451a95f0-006571d02e
+ X-Amz-Request-Id:
+ - txgc5d7cbb96521451a95f0-006571d02e
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140119Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: GET
response:
body: ""
@@ -1239,17 +1284,17 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:40 GMT
+ - Thu, 07 Dec 2023 14:01:19 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - txfb1a2b23ddbf401c86e42-0063ee2f4c
+ - tx4ea82dc7ad57447386500-006571d02f
X-Amz-Request-Id:
- - txfb1a2b23ddbf401c86e42-0063ee2f4c
+ - tx4ea82dc7ad57447386500-006571d02f
X-Amz-Version-Id:
- - "1676554059292130"
+ - "1701957678704384"
status: 200 OK
code: 200
duration: ""
@@ -1258,28 +1303,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132740Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:40 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx229898bf437741d7931f0-0063ee2f4c
+ - txg1c3368c43b9c431f8e0e-006571d030
X-Amz-Request-Id:
- - tx229898bf437741d7931f0-0063ee2f4c
+ - txg1c3368c43b9c431f8e0e-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1288,26 +1333,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132740Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?object-lock=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?object-lock=
method: GET
response:
- body: |-
-
- ObjectLockConfigurationNotFoundError
Object Lock configuration does not exist for this buckettx9f646c6edc0d4487a1b35-0063ee2f4c
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-visibility-3303044744864497130txg0091854002d7481bac6c-006571d030
headers:
+ Content-Length:
+ - "273"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:40 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx9f646c6edc0d4487a1b35-0063ee2f4c
+ - txg0091854002d7481bac6c-006571d030
X-Amz-Request-Id:
- - tx9f646c6edc0d4487a1b35-0063ee2f4c
+ - txg0091854002d7481bac6c-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1316,28 +1362,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132740Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
method: GET
response:
body: |-
-
- test-acc-scaleway-object-visibility-56913946063528183441000false"d41d8cd98f00b204e9800998ecf8427e"myfile2023-02-16T13:27:39.000Z0STANDARD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf
+
+ test-acc-scaleway-object-visibility-33030447448644971301000falsemyfile2023-12-07T14:01:18.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
headers:
Content-Length:
- - "663"
+ - "675"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:40 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txd4e20ce117ee4f8494859-0063ee2f4c
+ - txg6ad51047df564fcbae1f-006571d030
X-Amz-Request-Id:
- - txd4e20ce117ee4f8494859-0063ee2f4c
+ - txg6ad51047df564fcbae1f-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1346,26 +1392,26 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132740Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?tagging=
method: GET
response:
- body: |-
-
- NoSuchTagSet
There is no tag set associated with the bucket or object.txddfc85a67f05442dbd4f2-0063ee2f4d
+ body: NoSuchTagSet
The TagSet does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg1a74378675b94389943d-006571d030
headers:
+ Content-Length:
+ - "218"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:41 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txddfc85a67f05442dbd4f2-0063ee2f4d
+ - txg1a74378675b94389943d-006571d030
X-Amz-Request-Id:
- - txddfc85a67f05442dbd4f2-0063ee2f4d
+ - txg1a74378675b94389943d-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1374,26 +1420,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132741Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?cors=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?cors=
method: GET
response:
- body: |-
-
- NoSuchCORSConfiguration
The CORS configuration does not existtx843d45d8447644eb84e12-0063ee2f4d
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txgc72bc8428a1045a599bb-006571d030
headers:
+ Content-Length:
+ - "241"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:41 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx843d45d8447644eb84e12-0063ee2f4d
+ - txgc72bc8428a1045a599bb-006571d030
X-Amz-Request-Id:
- - tx843d45d8447644eb84e12-0063ee2f4d
+ - txgc72bc8428a1045a599bb-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1402,28 +1449,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132741Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?versioning=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?versioning=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "113"
+ - "138"
Content-Type:
- - text/plain
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:41 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx36cbb63210194084904b9-0063ee2f4d
+ - txg2e4d6789febb4f9db5ab-006571d030
X-Amz-Request-Id:
- - tx36cbb63210194084904b9-0063ee2f4d
+ - txg2e4d6789febb4f9db5ab-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1432,26 +1479,27 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132741Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/?lifecycle=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/?lifecycle=
method: GET
response:
- body: |-
-
- NoSuchLifecycleConfiguration
The lifecycle configuration does not exist.tx6f7f71542127416c9551c-0063ee2f4d
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-visibility-3303044744864497130txg9e19936781b7434cafc6-006571d030
headers:
+ Content-Length:
+ - "251"
Content-Type:
- application/xml
Date:
- - Thu, 16 Feb 2023 13:27:42 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx6f7f71542127416c9551c-0063ee2f4d
+ - txg9e19936781b7434cafc6-006571d030
X-Amz-Request-Id:
- - tx6f7f71542127416c9551c-0063ee2f4d
+ - txg9e19936781b7434cafc6-006571d030
status: 404 Not Found
code: 404
duration: ""
@@ -1460,12 +1508,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132742Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: HEAD
response:
body: ""
@@ -1477,17 +1525,15 @@ interactions:
Content-Type:
- application/octet-stream
Date:
- - Thu, 16 Feb 2023 13:27:42 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
Etag:
- '"d41d8cd98f00b204e9800998ecf8427e"'
Last-Modified:
- - Thu, 16 Feb 2023 13:27:39 GMT
+ - Thu, 07 Dec 2023 14:01:18 GMT
X-Amz-Id-2:
- - tx5f1ec1ba1f184c7090d26-0063ee2f4e
+ - txg682cec4826664668b474-006571d030
X-Amz-Request-Id:
- - tx5f1ec1ba1f184c7090d26-0063ee2f4e
- X-Amz-Version-Id:
- - "1676554059292130"
+ - txg682cec4826664668b474-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1496,30 +1542,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132742Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?tagging=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?tagging=
method: GET
response:
body: |-
-
-
+
+
headers:
Content-Length:
- - "115"
+ - "75"
Content-Type:
- - application/xml
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:42 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - txed6a4570cfe443dabf74a-0063ee2f4e
+ - txg3469a87adfff46f996fe-006571d030
X-Amz-Request-Id:
- - txed6a4570cfe443dabf74a-0063ee2f4e
- X-Amz-Version-Id:
- - "1676554059292130"
+ - txg3469a87adfff46f996fe-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1528,28 +1572,28 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132742Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile?acl=
+ - 20231207T140120Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile?acl=
method: GET
response:
body: |-
-
- 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
headers:
Content-Length:
- "698"
Content-Type:
- - text/html; charset=UTF-8
+ - text/xml; charset=utf-8
Date:
- - Thu, 16 Feb 2023 13:27:43 GMT
+ - Thu, 07 Dec 2023 14:01:20 GMT
X-Amz-Id-2:
- - tx31d14db9187e453494716-0063ee2f4e
+ - txgd463240d7cd64ca3a3cb-006571d030
X-Amz-Request-Id:
- - tx31d14db9187e453494716-0063ee2f4e
+ - txgd463240d7cd64ca3a3cb-006571d030
status: 200 OK
code: 200
duration: ""
@@ -1558,26 +1602,22 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132743Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/myfile
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/myfile
method: DELETE
response:
body: ""
headers:
- Content-Length:
- - "0"
- Content-Type:
- - text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:44 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx8df0d9324b1246958523d-0063ee2f4f
+ - txg91154a21701e4b23a748-006571d033
X-Amz-Request-Id:
- - tx8df0d9324b1246958523d-0063ee2f4f
+ - txg91154a21701e4b23a748-006571d033
status: 204 No Content
code: 204
duration: ""
@@ -1586,12 +1626,12 @@ interactions:
form: {}
headers:
User-Agent:
- - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64)
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
X-Amz-Content-Sha256:
- e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date:
- - 20230216T132744Z
- url: https://test-acc-scaleway-object-visibility-5691394606352818344.s3.fr-par.scw.cloud/
+ - 20231207T140123Z
+ url: https://test-acc-scaleway-object-visibility-3303044744864497130.s3.nl-ams.scw.cloud/
method: DELETE
response:
body: ""
@@ -1601,11 +1641,11 @@ interactions:
Content-Type:
- text/html; charset=UTF-8
Date:
- - Thu, 16 Feb 2023 13:27:44 GMT
+ - Thu, 07 Dec 2023 14:01:23 GMT
X-Amz-Id-2:
- - tx85b55df940054af39407f-0063ee2f50
+ - tx968cfedcd84f48948cf1b-006571d033
X-Amz-Request-Id:
- - tx85b55df940054af39407f-0063ee2f50
+ - tx968cfedcd84f48948cf1b-006571d033
status: 204 No Content
code: 204
duration: ""
diff --git a/scaleway/testdata/object-with-bucket-name.cassette.yaml b/scaleway/testdata/object-with-bucket-name.cassette.yaml
new file mode 100644
index 0000000000..e46a53459d
--- /dev/null
+++ b/scaleway/testdata/object-with-bucket-name.cassette.yaml
@@ -0,0 +1,1118 @@
+---
+version: 1
+interactions:
+- request:
+ body: nl-ams
+ form: {}
+ headers:
+ Content-Length:
+ - "150"
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Acl:
+ - private
+ X-Amz-Bucket-Object-Lock-Enabled:
+ - "false"
+ X-Amz-Content-Sha256:
+ - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d
+ X-Amz-Date:
+ - 20231207T140111Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/
+ method: PUT
+ response:
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 07 Dec 2023 14:01:11 GMT
+ Location:
+ - /test-acc-scaleway-object-basic-4092300706723185735
+ X-Amz-Id-2:
+ - txgc4c03c816e4f47118d8d-006571d027
+ X-Amz-Request-Id:
+ - txgc4c03c816e4f47118d8d-006571d027
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: foobar
+ form: {}
+ headers:
+ Content-Length:
+ - "127"
+ Content-Md5:
+ - GLaI7og/rAKomUfPePCCFQ==
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?tagging=
+ method: PUT
+ response:
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txgcb765cd0a5064d66835f-006571d028
+ X-Amz-Request-Id:
+ - txgcb765cd0a5064d66835f-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Content-Md5:
+ - 1B2M2Y8AsgTpgAmY7PhCfg==
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Acl:
+ - private
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?acl=
+ method: PUT
+ response:
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txgd020393a5b6946789473-006571d028
+ X-Amz-Request-Id:
+ - txgd020393a5b6946789473-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: foobar
+ form: {}
+ headers:
+ Content-Length:
+ - "127"
+ Content-Md5:
+ - GLaI7og/rAKomUfPePCCFQ==
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - d68cba1a39d89eb72e49b2e5b04058846b60e88e6e32eae42901c4f57a4727a8
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?tagging=
+ method: PUT
+ response:
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg6d3d9e1e74414640bb48-006571d028
+ X-Amz-Request-Id:
+ - txg6d3d9e1e74414640bb48-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ body: |-
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txgdbc0abbe90934303ab98-006571d028
+ X-Amz-Request-Id:
+ - txgdbc0abbe90934303ab98-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-4092300706723185735txg47583d6112ca45beaa87-006571d028
+ headers:
+ Content-Length:
+ - "268"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg47583d6112ca45beaa87-006571d028
+ X-Amz-Request-Id:
+ - txg47583d6112ca45beaa87-006571d028
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ body: |-
+
+ test-acc-scaleway-object-basic-40923007067231857351000false
+ headers:
+ Content-Length:
+ - "276"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg3227e059183a4079887b-006571d028
+ X-Amz-Request-Id:
+ - txg3227e059183a4079887b-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ body: |-
+
+ foobar
+ headers:
+ Content-Length:
+ - "166"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txg7205fc47bba548d7834e-006571d028
+ X-Amz-Request-Id:
+ - txg7205fc47bba548d7834e-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-4092300706723185735txgdd578abde14040e8a062-006571d028
+ headers:
+ Content-Length:
+ - "236"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txgdd578abde14040e8a062-006571d028
+ X-Amz-Request-Id:
+ - txgdd578abde14040e8a062-006571d028
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "138"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txge71d4420fa034660b8ac-006571d028
+ X-Amz-Request-Id:
+ - txge71d4420fa034660b8ac-006571d028
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-4092300706723185735txgd336a028d3d846289ec8-006571d028
+ headers:
+ Content-Length:
+ - "246"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:12 GMT
+ X-Amz-Id-2:
+ - txgd336a028d3d846289ec8-006571d028
+ X-Amz-Request-Id:
+ - txgd336a028d3d846289ec8-006571d028
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Content-Md5:
+ - 1B2M2Y8AsgTpgAmY7PhCfg==
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140112Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.fr-par.scw.cloud/myfile
+ method: PUT
+ response:
+ body: |-
+
+ NoSuchBucket
The specified bucket does not exist.txc6b8b36cae56499f8cb2a-006571d028test-acc-scaleway-object-basic-4092300706723185735
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txc6b8b36cae56499f8cb2a-006571d028
+ X-Amz-Request-Id:
+ - txc6b8b36cae56499f8cb2a-006571d028
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ body: |-
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txg1e920f72329340d1829a-006571d029
+ X-Amz-Request-Id:
+ - txg1e920f72329340d1829a-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-4092300706723185735txg69151d3b6d254937aca2-006571d029
+ headers:
+ Content-Length:
+ - "268"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txg69151d3b6d254937aca2-006571d029
+ X-Amz-Request-Id:
+ - txg69151d3b6d254937aca2-006571d029
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ body: |-
+
+ test-acc-scaleway-object-basic-40923007067231857351000false
+ headers:
+ Content-Length:
+ - "276"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txga466e15ada0d40269ed3-006571d029
+ X-Amz-Request-Id:
+ - txga466e15ada0d40269ed3-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ body: |-
+
+ foobar
+ headers:
+ Content-Length:
+ - "166"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txg069be29209f84a34a9c7-006571d029
+ X-Amz-Request-Id:
+ - txg069be29209f84a34a9c7-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-4092300706723185735txg0bc946a30d6e4d038ee6-006571d029
+ headers:
+ Content-Length:
+ - "236"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txg0bc946a30d6e4d038ee6-006571d029
+ X-Amz-Request-Id:
+ - txg0bc946a30d6e4d038ee6-006571d029
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "138"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txgbea6a61c1ce4439bab60-006571d029
+ X-Amz-Request-Id:
+ - txgbea6a61c1ce4439bab60-006571d029
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140113Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-4092300706723185735txg35f2dbfa383e43d39eb4-006571d029
+ headers:
+ Content-Length:
+ - "246"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:13 GMT
+ X-Amz-Id-2:
+ - txg35f2dbfa383e43d39eb4-006571d029
+ X-Amz-Request-Id:
+ - txg35f2dbfa383e43d39eb4-006571d029
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Content-Md5:
+ - 1B2M2Y8AsgTpgAmY7PhCfg==
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140114Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile
+ method: PUT
+ response:
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Content-Type:
+ - text/html; charset=UTF-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:15 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 07 Dec 2023 14:01:14 GMT
+ X-Amz-Id-2:
+ - tx765a285d4cb64f43bbfe4-006571d02a
+ X-Amz-Request-Id:
+ - tx765a285d4cb64f43bbfe4-006571d02a
+ X-Amz-Version-Id:
+ - "1701957674788592"
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/octet-stream
+ Date:
+ - Thu, 07 Dec 2023 14:01:15 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 07 Dec 2023 14:01:14 GMT
+ X-Amz-Id-2:
+ - txgf3c5ac559e42408eb57f-006571d02b
+ X-Amz-Request-Id:
+ - txgf3c5ac559e42408eb57f-006571d02b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile?tagging=
+ method: GET
+ response:
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:15 GMT
+ X-Amz-Id-2:
+ - txg007e01ee374546d1b90e-006571d02b
+ X-Amz-Request-Id:
+ - txg007e01ee374546d1b90e-006571d02b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile?acl=
+ method: GET
+ response:
+ body: |-
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:15 GMT
+ X-Amz-Id-2:
+ - txg09341a678b38450993d5-006571d02b
+ X-Amz-Request-Id:
+ - txg09341a678b38450993d5-006571d02b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:15 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txge7e09bd25a104761ab96-006571d02b
+ X-Amz-Request-Id:
+ - txge7e09bd25a104761ab96-006571d02b
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140115Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile
+ method: GET
+ response:
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/octet-stream
+ Date:
+ - Thu, 07 Dec 2023 14:01:15 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 07 Dec 2023 14:01:14 GMT
+ X-Amz-Id-2:
+ - tx0d097128209944af99af5-006571d02b
+ X-Amz-Request-Id:
+ - tx0d097128209944af99af5-006571d02b
+ X-Amz-Version-Id:
+ - "1701957674788592"
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ body: |-
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg9a174a1271ce4e7186fb-006571d02c
+ X-Amz-Request-Id:
+ - txg9a174a1271ce4e7186fb-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ body: ObjectLockConfigurationNotFoundError
Object
+ Lock configuration does not exist for this bucket/test-acc-scaleway-object-basic-4092300706723185735txg6d5c87fbc9b044649cf4-006571d02c
+ headers:
+ Content-Length:
+ - "268"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg6d5c87fbc9b044649cf4-006571d02c
+ X-Amz-Request-Id:
+ - txg6d5c87fbc9b044649cf4-006571d02c
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ body: |-
+
+ test-acc-scaleway-object-basic-40923007067231857351000falsemyfile2023-12-07T14:01:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARD
+ headers:
+ Content-Length:
+ - "670"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg245cc2380ffb4873965a-006571d02c
+ X-Amz-Request-Id:
+ - txg245cc2380ffb4873965a-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ body: |-
+
+ foobar
+ headers:
+ Content-Length:
+ - "166"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg9be22eedd32a45cab0cc-006571d02c
+ X-Amz-Request-Id:
+ - txg9be22eedd32a45cab0cc-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ body: NoSuchCORSConfiguration
The CORS configuration
+ does not exist/test-acc-scaleway-object-basic-4092300706723185735txg0e2171d6f52344669990-006571d02c
+ headers:
+ Content-Length:
+ - "236"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg0e2171d6f52344669990-006571d02c
+ X-Amz-Request-Id:
+ - txg0e2171d6f52344669990-006571d02c
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "138"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg0366e62c21d54370ba2a-006571d02c
+ X-Amz-Request-Id:
+ - txg0366e62c21d54370ba2a-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ body: NoSuchLifecycleConfiguration
The lifecycle configuration
+ does not exist/test-acc-scaleway-object-basic-4092300706723185735txg6f67eaa4499a4c398476-006571d02c
+ headers:
+ Content-Length:
+ - "246"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txg6f67eaa4499a4c398476-006571d02c
+ X-Amz-Request-Id:
+ - txg6f67eaa4499a4c398476-006571d02c
+ status: 404 Not Found
+ code: 404
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile
+ method: HEAD
+ response:
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/octet-stream
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 07 Dec 2023 14:01:14 GMT
+ X-Amz-Id-2:
+ - txg241284a28b9746aeb438-006571d02c
+ X-Amz-Request-Id:
+ - txg241284a28b9746aeb438-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile?tagging=
+ method: GET
+ response:
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txgd34c260d21b34b0f9ecd-006571d02c
+ X-Amz-Request-Id:
+ - txgd34c260d21b34b0f9ecd-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140116Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile?acl=
+ method: GET
+ response:
+ body: |-
+
+ 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:16 GMT
+ X-Amz-Id-2:
+ - txgabfde1d929ea4d83b74e-006571d02c
+ X-Amz-Request-Id:
+ - txgabfde1d929ea4d83b74e-006571d02c
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/myfile
+ method: DELETE
+ response:
+ body: ""
+ headers:
+ Date:
+ - Thu, 07 Dec 2023 14:01:18 GMT
+ X-Amz-Id-2:
+ - txgce98a979cbb74b949d49-006571d02e
+ X-Amz-Request-Id:
+ - txgce98a979cbb74b949d49-006571d02e
+ status: 204 No Content
+ code: 204
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64)
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20231207T140118Z
+ url: https://test-acc-scaleway-object-basic-4092300706723185735.s3.nl-ams.scw.cloud/
+ method: DELETE
+ response:
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Content-Type:
+ - text/html; charset=UTF-8
+ Date:
+ - Thu, 07 Dec 2023 14:01:18 GMT
+ X-Amz-Id-2:
+ - tx3e7f93ae0052480390ee6-006571d02e
+ X-Amz-Request-Id:
+ - tx3e7f93ae0052480390ee6-006571d02e
+ status: 204 No Content
+ code: 204
+ duration: ""