elastic / cloud-sdk-go

Apache License 2.0
21 stars 46 forks source link

Upgrading Integration Server vrom 8.1.2 to 8.1.3 is failing #400

Closed simitt closed 2 years ago

simitt commented 2 years ago

ECE Version Info ESS production Bug description:

The update from 8.1.2 to 8.1.3 updates Elasticsearch, Kibana but it does not update the Integrations server

Steps to reproduce:

provider "ec" { endpoint = "https://cloud.elastic.co" apikey = "<>"

verbose = false }

Create an Elastic Cloud deployment

resource "ec_deployment" "main" { name = "xyz"

Mandatory fields

region = "gcp-us-west2" version = "8.1.2" deployment_template_id = "gcp-io-optimized-v2"

elasticsearch { autoscale = true }

kibana {}

integrations_server { topology { zone_count = 2 size = "2g" } } }

* Update the Cluster to 8.1.3 using terraform too

terraform { required_version = ">= 0.12.29"

required_providers { ec = { source = "elastic/ec" version = "0.4.0" } } }

provider "ec" { endpoint = "https://cloud.elastic.co" apikey = "<>"

verbose = false }

Create an Elastic Cloud deployment

resource "ec_deployment" "main" { name = "xyz"

Mandatory fields

region = "gcp-us-west2" version = "8.1.3" deployment_template_id = "gcp-io-optimized-v2"

elasticsearch { autoscale = true }

kibana {}

integrations_server { topology { zone_count = 2 size = "2g" } } }


* Check that the activities end successfully and the integration server is not updated
tobio commented 2 years ago

This is actually an elastic/cloud-sdk-go issue, transferring it there.

simitt commented 2 years ago

thanks @tobio !