Remove puppet-ec2api
The EC2-API project was marked inactive, because of lack of appropriate maintenance effort[1] and the project was excluded from Caracal deliverables. This removes testing with the puppet-ec2api module because we are also retiring this module for the unmaintained project. [1] https://review.opendev.org/c/openstack/governance/+/902625 Change-Id: Ic8c89e096e9b3acd5a71ec0be1bff20936977bcf
This commit is contained in:
parent
44834b77ba
commit
cddbe5e38b
@ -29,10 +29,6 @@ mod 'designate',
|
|||||||
:git => 'https://opendev.org/openstack/puppet-designate',
|
:git => 'https://opendev.org/openstack/puppet-designate',
|
||||||
:ref => 'master'
|
:ref => 'master'
|
||||||
|
|
||||||
mod 'ec2api',
|
|
||||||
:git => 'https://opendev.org/openstack/puppet-ec2api',
|
|
||||||
:ref => 'master'
|
|
||||||
|
|
||||||
mod 'glance',
|
mod 'glance',
|
||||||
:git => 'https://opendev.org/openstack/puppet-glance',
|
:git => 'https://opendev.org/openstack/puppet-glance',
|
||||||
:ref => 'master'
|
:ref => 'master'
|
||||||
|
@ -59,7 +59,6 @@ scenario](#all-in-one).
|
|||||||
| designate | | | bind | | | |
|
| designate | | | bind | | | |
|
||||||
| backup | ceph | swift | | | | |
|
| backup | ceph | swift | | | | |
|
||||||
| gnocchi | rbd | swift | | | | |
|
| gnocchi | rbd | swift | | | | |
|
||||||
| ec2api | | X | | | | |
|
|
||||||
| heat | X | | X | | | |
|
| heat | X | | X | | | |
|
||||||
| swift | | X | | | | |
|
| swift | | X | | | | |
|
||||||
| trove | | | X | | | |
|
| trove | | | X | | | |
|
||||||
|
@ -22,13 +22,10 @@ if $facts['os']['name'] == 'Ubuntu' {
|
|||||||
|
|
||||||
case $facts['os']['family'] {
|
case $facts['os']['family'] {
|
||||||
'Debian': {
|
'Debian': {
|
||||||
$ipv6 = false
|
$ipv6 = false
|
||||||
# ec2api is not packaged on UCA
|
|
||||||
$ec2api_enabled = false
|
|
||||||
}
|
}
|
||||||
'RedHat': {
|
'RedHat': {
|
||||||
$ipv6 = true
|
$ipv6 = true
|
||||||
$ec2api_enabled = true
|
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
fail("Unsupported osfamily (${facts['os']['family']})")
|
fail("Unsupported osfamily (${facts['os']['family']})")
|
||||||
@ -81,10 +78,6 @@ class { 'openstack_integration::cinder':
|
|||||||
|
|
||||||
include openstack_integration::barbican
|
include openstack_integration::barbican
|
||||||
|
|
||||||
if $ec2api_enabled {
|
|
||||||
include openstack_integration::ec2api
|
|
||||||
}
|
|
||||||
|
|
||||||
class { 'openstack_integration::ceilometer':
|
class { 'openstack_integration::ceilometer':
|
||||||
separate_polling => true,
|
separate_polling => true,
|
||||||
}
|
}
|
||||||
@ -109,6 +102,4 @@ class { 'openstack_integration::tempest':
|
|||||||
ironic => true,
|
ironic => true,
|
||||||
zaqar => true,
|
zaqar => true,
|
||||||
attach_encrypted_volume => true,
|
attach_encrypted_volume => true,
|
||||||
# Enable this once bug 2050063 is fixed
|
|
||||||
ec2api => false,
|
|
||||||
}
|
}
|
||||||
|
@ -1,87 +0,0 @@
|
|||||||
# Configure the ec2api service
|
|
||||||
#
|
|
||||||
class openstack_integration::ec2api {
|
|
||||||
|
|
||||||
include openstack_integration::config
|
|
||||||
include openstack_integration::params
|
|
||||||
|
|
||||||
if $::openstack_integration::config::ssl {
|
|
||||||
openstack_integration::ssl_key { 'ec2api':
|
|
||||||
notify => Anchor['ec2api::service::begin'],
|
|
||||||
require => Anchor['ec2api::install::end'],
|
|
||||||
}
|
|
||||||
Exec['update-ca-certificates'] ~> Service<| tag == 'ec2api-service' |>
|
|
||||||
}
|
|
||||||
|
|
||||||
class { 'ec2api::keystone::auth':
|
|
||||||
public_url => "${::openstack_integration::config::base_url}:8788",
|
|
||||||
internal_url => "${::openstack_integration::config::base_url}:8788",
|
|
||||||
admin_url => "${::openstack_integration::config::base_url}:8788",
|
|
||||||
password => 'a_big_secret',
|
|
||||||
roles => ['admin', 'service'],
|
|
||||||
}
|
|
||||||
class { 'ec2api::db::mysql':
|
|
||||||
charset => $::openstack_integration::params::mysql_charset,
|
|
||||||
collate => $::openstack_integration::params::mysql_collate,
|
|
||||||
password => 'ec2api',
|
|
||||||
host => $::openstack_integration::config::host,
|
|
||||||
}
|
|
||||||
|
|
||||||
case $facts['os']['family'] {
|
|
||||||
'RedHat': {
|
|
||||||
class { 'ec2api::cache':
|
|
||||||
backend => 'dogpile.cache.pymemcache',
|
|
||||||
enabled => true,
|
|
||||||
memcache_servers => $::openstack_integration::config::memcache_servers,
|
|
||||||
}
|
|
||||||
class { 'ec2api::db':
|
|
||||||
database_connection => os_database_connection({
|
|
||||||
'dialect' => 'mysql+pymysql',
|
|
||||||
'host' => $::openstack_integration::config::ip_for_url,
|
|
||||||
'username' => 'ec2api',
|
|
||||||
'password' => 'ec2api',
|
|
||||||
'database' => 'ec2api',
|
|
||||||
'charset' => 'utf8',
|
|
||||||
'extra' => $::openstack_integration::config::db_extra,
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
class { 'ec2api::db::sync': }
|
|
||||||
class { 'ec2api::logging':
|
|
||||||
debug => true,
|
|
||||||
}
|
|
||||||
class { 'ec2api': }
|
|
||||||
class { 'ec2api::keystone::authtoken':
|
|
||||||
password => 'a_big_secret',
|
|
||||||
user_domain_name => 'Default',
|
|
||||||
project_domain_name => 'Default',
|
|
||||||
auth_url => $::openstack_integration::config::keystone_admin_uri,
|
|
||||||
www_authenticate_uri => $::openstack_integration::config::keystone_auth_uri,
|
|
||||||
memcached_servers => $::openstack_integration::config::memcached_servers,
|
|
||||||
service_token_roles_required => true,
|
|
||||||
}
|
|
||||||
class { 'ec2api::api':
|
|
||||||
my_ip => $::openstack_integration::config::host,
|
|
||||||
ec2_host => $::openstack_integration::config::host,
|
|
||||||
ec2api_listen => $::openstack_integration::config::host,
|
|
||||||
keystone_ec2_tokens_url => "${::openstack_integration::config::keystone_auth_uri}/v3/ec2tokens",
|
|
||||||
external_network => 'public',
|
|
||||||
ec2api_use_ssl => $::openstack_integration::config::ssl,
|
|
||||||
ssl_cert_file => $::openstack_integration::params::cert_path,
|
|
||||||
ssl_key_file => "/etc/ec2api/ssl/private/${facts['networking']['fqdn']}.pem",
|
|
||||||
ec2api_workers => 2,
|
|
||||||
}
|
|
||||||
class { 'ec2api::metadata':
|
|
||||||
nova_metadata_ip => $::openstack_integration::config::host,
|
|
||||||
metadata_listen => $::openstack_integration::config::host,
|
|
||||||
metadata_use_ssl => $::openstack_integration::config::ssl,
|
|
||||||
metadata_workers => 2,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'Debian': {
|
|
||||||
warning('ec2api is not yet packaged on Ubuntu systems.')
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
fail("Unsupported osfamily (${facts['os']['family']})")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -28,10 +28,6 @@
|
|||||||
# (optional) Define if Designate needs to be tested.
|
# (optional) Define if Designate needs to be tested.
|
||||||
# Default to false.
|
# Default to false.
|
||||||
#
|
#
|
||||||
# [*ec2api*]
|
|
||||||
# (optional) Define if EC2-API needs to be tested.
|
|
||||||
# Default to false.
|
|
||||||
#
|
|
||||||
# [*glance*]
|
# [*glance*]
|
||||||
# (optional) Define if Glance needs to be tested.
|
# (optional) Define if Glance needs to be tested.
|
||||||
# Default to true.
|
# Default to true.
|
||||||
@ -163,7 +159,6 @@ class openstack_integration::tempest (
|
|||||||
$cinder = false,
|
$cinder = false,
|
||||||
$cinder_backup = false,
|
$cinder_backup = false,
|
||||||
$designate = false,
|
$designate = false,
|
||||||
$ec2api = false,
|
|
||||||
$glance = true,
|
$glance = true,
|
||||||
$gnocchi = false,
|
$gnocchi = false,
|
||||||
$heat = false,
|
$heat = false,
|
||||||
@ -335,7 +330,6 @@ class openstack_integration::tempest (
|
|||||||
mistral_available => $mistral,
|
mistral_available => $mistral,
|
||||||
vitrage_available => $vitrage,
|
vitrage_available => $vitrage,
|
||||||
gnocchi_available => $gnocchi,
|
gnocchi_available => $gnocchi,
|
||||||
ec2api_available => $ec2api,
|
|
||||||
watcher_available => $watcher,
|
watcher_available => $watcher,
|
||||||
public_network_name => 'public',
|
public_network_name => 'public',
|
||||||
neutron_api_extensions => join(any2array($neutron_api_extensions_real), ','),
|
neutron_api_extensions => join(any2array($neutron_api_extensions_real), ','),
|
||||||
@ -358,7 +352,6 @@ class openstack_integration::tempest (
|
|||||||
run_ssh => true,
|
run_ssh => true,
|
||||||
l2gw_switch => $l2gw_switch,
|
l2gw_switch => $l2gw_switch,
|
||||||
disable_dashboard_ssl_validation => true,
|
disable_dashboard_ssl_validation => true,
|
||||||
ec2api_tester_roles => ['member'],
|
|
||||||
aws_ec2_url => "${::openstack_integration::config::base_url}:8788/",
|
aws_ec2_url => "${::openstack_integration::config::base_url}:8788/",
|
||||||
aws_region => 'regionOne',
|
aws_region => 'regionOne',
|
||||||
# TODO(tkajinam): we have to configure image id parameters but we have to
|
# TODO(tkajinam): we have to configure image id parameters but we have to
|
||||||
|
@ -5,7 +5,6 @@ ceph
|
|||||||
cinder
|
cinder
|
||||||
cloudkitty
|
cloudkitty
|
||||||
designate
|
designate
|
||||||
ec2api
|
|
||||||
glance
|
glance
|
||||||
gnocchi
|
gnocchi
|
||||||
heat
|
heat
|
||||||
|
@ -309,12 +309,6 @@ echo "magnum_tempest_plugin.tests.api.v1.test_magnum_service.MagnumServiceTest"
|
|||||||
# Zaqar
|
# Zaqar
|
||||||
echo "v2.test_queues.TestManageQueue" >> /tmp/openstack/tempest/test-include-list.txt
|
echo "v2.test_queues.TestManageQueue" >> /tmp/openstack/tempest/test-include-list.txt
|
||||||
|
|
||||||
# ec2api
|
|
||||||
# VPN tests require VPNaaS, which doesn't work yet in puppet-tempest.
|
|
||||||
# As soon as enabling neutron_vpnaas_available works there, the VPN tests can
|
|
||||||
# be included.
|
|
||||||
echo "ec2api_tempest_plugin.api.*test_create_delete(?!.*_vpn_connection)" >> /tmp/openstack/tempest/test-include-list.txt
|
|
||||||
|
|
||||||
# Cinder Backup
|
# Cinder Backup
|
||||||
echo "VolumesBackupsAdminTest" >> /tmp/openstack/tempest/test-include-list.txt
|
echo "VolumesBackupsAdminTest" >> /tmp/openstack/tempest/test-include-list.txt
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
- name: openstack/puppet-cinder
|
- name: openstack/puppet-cinder
|
||||||
- name: openstack/puppet-cloudkitty
|
- name: openstack/puppet-cloudkitty
|
||||||
- name: openstack/puppet-designate
|
- name: openstack/puppet-designate
|
||||||
- name: openstack/puppet-ec2api
|
|
||||||
- name: openstack/puppet-glance
|
- name: openstack/puppet-glance
|
||||||
- name: openstack/puppet-gnocchi
|
- name: openstack/puppet-gnocchi
|
||||||
- name: openstack/puppet-heat
|
- name: openstack/puppet-heat
|
||||||
|
Loading…
x
Reference in New Issue
Block a user