Chef 16 updates

Depends-On: https://review.opendev.org/750030
Depends-On: https://review.opendev.org/749851
Change-Id: Ibfec641dd817f8cf72a9543066ae61739d3ae1b5
Signed-off-by: Lance Albertson <lance@osuosl.org>
This commit is contained in:
Lance Albertson 2020-08-24 08:49:53 -07:00
parent 786d6a3896
commit cb2ae8b6aa
4 changed files with 4 additions and 8 deletions

View File

@ -21,7 +21,7 @@ Requirements
============
- Chef 15 or higher
- Chef Workstation 0.15.18 for testing (also includes Berkshelf for
- Chef Workstation 20.8.111 for testing (also includes Berkshelf for
cookbook dependency resolution)
Cookbooks

View File

@ -3,7 +3,7 @@ maintainer 'openstack-chef'
maintainer_email 'openstack-discuss@lists.openstack.org'
license 'Apache-2.0'
description 'Installs and configures the Tempest Integration Test Suite'
version '19.0.0'
version '19.1.0'
%w(ubuntu redhat centos).each do |os|
supports os

View File

@ -26,8 +26,6 @@ execute 'run_tempest' do
end
# Run tempest after everything else.
log 'start_tempest' do
message 'Starting tempest at the very end.'
level :info
notify_group 'start_tempest' do
notifies :run, 'execute[run_tempest]', :delayed
end

View File

@ -18,8 +18,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
require 'uri'
class Chef::Recipe
include ::Openstack
end
@ -37,7 +35,7 @@ package platform_options['tempest_packages'] do
end
identity_endpoint = internal_endpoint 'identity'
auth_url = ::URI.decode identity_endpoint.to_s
auth_url = identity_endpoint.to_s
admin_user = node['openstack']['identity']['admin_user']
admin_pass = get_password 'user', admin_user