93757adee7
This patch set adds a nv-gating with an OpenLDAP server with some sample data loaded for development or testing use using a bootstrap job. This patch set also adds confirming authentication works using domain- specific configuration for keystone. Consolidated change from: https://review.openstack.org/#/c/552976/ Co-Authored-By: Gage Hugo <gagehugo@gmail.com> Change-Id: I1aeccffc018d0fcefc8e2b15a4ac6b83cb2be8b6 Signed-off-by: Tin Lam <tin@irrational.io>
182 lines
7.1 KiB
YAML
182 lines
7.1 KiB
YAML
# Copyright 2017 The Openstack-Helm Authors.
|
|
#
|
|
# 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: Deploy Required packages
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/000-install-packages.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Required packages
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/010-deploy-k8s.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Setup OS and K8s Clients
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/020-setup-client.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Ingress
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/030-ingress.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy NFS
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/040-nfs-provisioner.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Mariadb
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/050-mariadb.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy RabbitMQ
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/060-rabbitmq.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Memcached
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/070-memcached.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Keystone
|
|
when: idp_backend is not defined
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/080-keystone.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Keystone with LDAP
|
|
when: idp_backend is defined and idp_backend == "ldap"
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/ldap/080-keystone.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Heat
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/090-heat.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Horizon
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/100-horizon.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Glance
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/120-glance.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy OpenvSwitch
|
|
when: osh_neutron_backend == 'openvswitch'
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/140-openvswitch.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Libvirt
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/150-libvirt.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy VM Compute Kit
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/160-compute-kit.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Setup Gateway
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/170-setup-gateway.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy use the cloud
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/developer/nfs/900-use-it.sh
|
|
environment:
|
|
OSH_EXTRA_HELM_ARGS: "{{ zuul_osh_extra_helm_args_relative_path | default('') }}"
|
|
OSH_INFRA_PATH: "{{ zuul_osh_infra_relative_path | default('') }}"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|