deckhand/tools/gate/roles/deploy-barbican/tasks/deploy-barbican.yaml

36 lines
1.2 KiB
YAML

# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Deploy Barbican
shell: |
set -xe;
# git reset --hard "{{ barbican_stable_commit | default('') }}"
./tools/deployment/component/barbican/barbican.sh
args:
chdir: "{{ zuul.project.src_dir }}/{{ zuul_osh_relative_path | default('') }}"
- name: Retrieve Barbican URL for integration tests
shell: |-
set -e;
test_barbican_url=$(
openstack endpoint list \
--format value | grep barbican | grep public | awk '{print $7}' | sed 's/\(.*\)\//\1 /'
)
echo $test_barbican_url
register: test_barbican_url
environment:
OS_CLOUD: openstack_helm