93630ac6e3
This moves the mariadb chart to openstack-helm-infra as part of the effort to move charts to the appropriate repositories Change-Id: Ife56e28de46c536108cebb4f4cdf6bad2a415289 Story: 2002204 Task: 21725
69 lines
2.2 KiB
YAML
69 lines
2.2 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/openstack-support/000-install-packages.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
environment:
|
|
zuul_site_mirror_fqdn: "{{ zuul_site_mirror_fqdn }}"
|
|
- name: Deploy Kubernetes
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/005-deploy-k8s.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
environment:
|
|
zuul_site_mirror_fqdn: "{{ zuul_site_mirror_fqdn }}"
|
|
- name: Deploy Cluster and Namespace Ingress
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/010-ingress.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Ceph
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/015-ceph.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Ceph NS Activate
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/020-ceph-ns-activate.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Rabbitmq
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/025-rabbitmq.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Memcached
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/030-memcached.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
- name: Deploy Mariadb
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/openstack-support/035-mariadb.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|