-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcreate_infrastructure.yml
94 lines (84 loc) · 2.15 KB
/
create_infrastructure.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Copyright 2021 Cloudera, Inc.
#
# 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: Install custom parcel repository
hosts: custom_repo
become: yes
roles:
- infrastructure/custom_repo
tags:
- custom_repo
- name: Install RDBMS
hosts: db_server
become: yes
roles:
- infrastructure/rdbms
tags:
- database
- name: Install MIT KDC
hosts: krb5_server
become: yes
roles:
- role: infrastructure/krb5_server
when: "krb5_kdc_type == 'MIT KDC'"
tags:
- security
- kerberos
- name: Install CA server
hosts: ca_server
become: yes
roles:
- infrastructure/ca_server
vars_files:
- vars/ca_server.yml
tags:
- security
- tls
- name: Install HAProxy
hosts: haproxy
become: yes
roles:
- infrastructure/haproxy
tags:
- ha
# Install DBs connectors
- name: Install MySQL Connector
hosts: cloudera_manager, cluster
gather_facts: no
become: yes
roles:
- role: prereqs/mysql_connector
when: database_type == 'mysql' or database_type == 'mariadb'
- role: prereqs/mysql_fix_rhel8
when: database_type == 'mysql' or database_type == 'mariadb' and ansible_distribution == "RedHat" and ansible_distribution_major_version == "8"
tags:
- mysql_connector
- name: Install Oracle Connector
hosts: cloudera_manager, cluster
gather_facts: no
become: yes
roles:
- role: prereqs/oracle_connector
when: database_type == 'oracle'
tags:
- oracle_connector
- name: Install Postgres Connector
hosts: cloudera_manager, cluster
gather_facts: no
become: yes
roles:
- role: prereqs/psql_connector
when: database_type == 'postgresql'
tags:
- psql_connector