Skip to content

Commit 7a752c9

Browse files
[9.1][Automation] Bump stack images versions to 9.1.0-2ea4374b (#8815)
* chore: Update create_deployment_csp_configuration.yaml Made with ❤️️ by updatecli * chore: Update create_deployment_csp_configuration.yaml Made with ❤️️ by updatecli * chore: Update create_deployment_csp_configuration.yaml Made with ❤️️ by updatecli * Update to 9.1.0-225b89ae * Bump stack version to 9.1.0-728f6093 * Log policy in test if it fails to unmarshal * Fix policy struct in test --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Mikołaj Świątek <[email protected]>
1 parent 2219c48 commit 7a752c9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pkg/testing/ess/create_deployment_csp_configuration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ aws:
1515
kibana_instance_configuration_id: "aws.kibana.c5d"
1616
# Automatically updated by updatecli-bump-stack-version.yml. Don't change the structure and key names
1717
docker:
18-
integration_server_image: "docker.elastic.co/cloud-release/elastic-agent-cloud:9.1.0-dd974feb-SNAPSHOT"
19-
elasticsearch_image: "docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.1.0-dd974feb-SNAPSHOT"
20-
kibana_image: "docker.elastic.co/cloud-release/kibana-cloud:9.1.0-dd974feb-SNAPSHOT"
18+
integration_server_image: "docker.elastic.co/cloud-release/elastic-agent-cloud:9.1.0-728f6093-SNAPSHOT"
19+
elasticsearch_image: "docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.1.0-728f6093-SNAPSHOT"
20+
kibana_image: "docker.elastic.co/cloud-release/kibana-cloud:9.1.0-728f6093-SNAPSHOT"

testing/integration/ess/beat_receivers_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@ func TestClassicAndReceiverAgentMonitoring(t *testing.T) {
205205
Inputs []map[string]any `yaml:"inputs"`
206206
Signed map[string]any `yaml:"signed"`
207207
SecretReferences []map[string]any `yaml:"secret_references"`
208-
Namespaces []map[string]any `yaml:"namespaces"`
208+
Namespaces []string `yaml:"namespaces"`
209209
}
210210

211211
policy := PolicyStruct{}
212212
err = yaml.Unmarshal(policyBytes, &policy)
213-
require.NoError(t, err, "error unmarshalling policy")
213+
require.NoError(t, err, "error unmarshalling policy: %s", string(policyBytes))
214214
d, prs := policy.Outputs["default"]
215215
require.True(t, prs, "default must be in outputs")
216216
d.ApiKey = string(apiKey)

0 commit comments

Comments
 (0)