db79e79788
The current copyright refers to a non-existent group "openstack helm authors" with often out-of-date references that are confusing when adding a new file to the repo. This change removes all references to this copyright by the non-existent group and any blank lines underneath. Change-Id: Ia035037e000f1bf95202fc07b8cd1ad0fc019094
113 lines
3.3 KiB
YAML
113 lines
3.3 KiB
YAML
# 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.
|
|
|
|
- hosts: primary
|
|
tasks:
|
|
- name: Setup OS and K8s Clients
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/010-setup-client.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Ingress
|
|
environment:
|
|
OSH_DEPLOY_MULTINODE: True
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/component/common/ingress.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Ceph
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/030-ceph.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Setup openstack namespace for ceph
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/040-ceph-ns-activate.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy MariaDB
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/050-mariadb.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy RabbitMQ
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/060-rabbitmq.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Memcached
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/070-memcached.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Keystone
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/080-keystone.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Keystone RadosGW endpoints and user
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/090-ceph-radosgateway.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Glance
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/100-glance.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Cinder
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/110-cinder.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy OpenVswitch
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/120-openvswitch.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Libvirt
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/130-libvirt.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy ComputeKit
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/140-compute-kit.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Heat
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/150-heat.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Tempest
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/multinode/900-tempest.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|