
To cut down on Zuul nodes, this patchset combines the integration docker job with the airship-deckhand-ubuntu job together, because the former essentially subsumes the latter: integration docker job sets up the host, deploys docker, deploys k8s, generates the Deckhand chart using Helm, builds the Deckhand image using Docker, deploys Deckhand, PostgreSQL and other Keystone/Barbican dependencies using OSH, then finally runs integration tests against the deployment. This, then, validates everything that airship-deckhand-ubuntu did deployment-wise. Also, this patchset switches the 2 uwsgi jobs over to voting: false as the Docker jobs are already voting. Change-Id: I10b15f5a45a32413dc904ee32bdbbb4e9cdf98a2
22 lines
797 B
YAML
22 lines
797 B
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: Build Helm Charts
|
|
when: disable_keystone == false
|
|
shell: |
|
|
set -xe;
|
|
./tools/gate/scripts/010-build-charts.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|