Skip to content

Commit

Permalink
Test against ubuntu-jammy stemcell
Browse files Browse the repository at this point in the history
Previously only the ubuntu-xenial stemcell was directly tested but that
stemcell is EOL.

Now all tests use the currently supported ubuntu-jammy stemcell.

Authored-by: Andrew Garner <[email protected]>
  • Loading branch information
abg committed Sep 30, 2024
1 parent 27cb3ea commit 37b39a3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions contract_tests/fixtures/deployment_with_link_provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ releases:
version: latest

stemcells:
- alias: xenial
os: ubuntu-xenial
- alias: jammy
os: ubuntu-jammy
version: latest

instance_groups:
- name: dummy
instances: 1
vm_type: small
stemcell: xenial
stemcell: jammy
azs: [z1]
networks:
- name: default
Expand Down
8 changes: 4 additions & 4 deletions contract_tests/fixtures/single_vm_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ releases:
version: latest

stemcells:
- alias: xenial
os: ubuntu-xenial
- alias: jammy
os: ubuntu-jammy
version: latest

instance_groups:
- name: dummy
instances: 1
vm_type: small
stemcell: xenial
stemcell: jammy
azs: [z1]
networks:
- name: default
Expand All @@ -23,7 +23,7 @@ instance_groups:
lifecycle: errand
instances: 1
vm_type: small
stemcell: xenial
stemcell: jammy
azs: [z1]
networks:
- name: default
Expand Down
4 changes: 2 additions & 2 deletions contract_tests/fixtures/successful_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ update:
update_watch_time: 3000-180000
max_in_flight: 4
stemcells:
- alias: xenial
os: ubuntu-xenial
- alias: jammy
os: ubuntu-jammy
version: latest
4 changes: 2 additions & 2 deletions system_tests/dynamic_bosh_config/fixtures/broker_manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ releases:
version: latest

stemcells:
- alias: xenial
- alias: jammy
os: ((meta.stemcell.os))
version: "((meta.stemcell.version))"

Expand All @@ -26,7 +26,7 @@ instance_groups:
- name: broker
networks:
- name: ((meta.services_subnet))
stemcell: xenial
stemcell: jammy
vm_extensions:
- public_ip
vm_type: ((meta.vm_type))
Expand Down
2 changes: 1 addition & 1 deletion system_tests/test_helpers/bosh_helpers/bosh_cli_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func deploy(systemTestSuffix string, deploymentOptions BrokerDeploymentOptions,
"--var", "service_release=" + variables.ServiceReleaseName,
"--var", "service_release_version=" + variables.ServiceReleaseVersion,
"--var", "disable_ssl_cert_verification=false",
"--var", "stemcell_alias=xenial",
"--var", "stemcell_alias=jammy",
"--ops-file", adapterOpsFile,
}

Expand Down

0 comments on commit 37b39a3

Please sign in to comment.