Closed simitt closed 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:
Create a cluster running 8.1.2 with the Elastic terraform provider
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 }
resource "ec_deployment" "main" { name = "xyz"
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" } } }
region = "gcp-us-west2" version = "8.1.3" deployment_template_id = "gcp-io-optimized-v2"
* Check that the activities end successfully and the integration server is not updated
This is actually an elastic/cloud-sdk-go issue, transferring it there.
thanks @tobio !
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:
Create a cluster running 8.1.2 with the Elastic terraform provider
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" } } }
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" } } }