forked from twnaxy/virk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viya_pre_install_playbook.yml
48 lines (46 loc) · 1.84 KB
/
viya_pre_install_playbook.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
####################################################################
#### viya_pre_install_playbook.yml ####
####################################################################
#### Author: SAS Institute Inc. ####
#### ####
#### WARNING: this playbook only works ####
#### with Ansible 2.2 and above. ####
#### ####
####################################################################
####################################################################
#
# This playbook verifies and possibly performs many of the
# pre-requisites for a generic Viya deployment.
#
# to see an index of the things it does, run:
# ansible-playbook viya_pre_install_playbook.yml --list-tasks
#
# to see how far from the desired state you are, run:
# ansible-playbook viya_pre_install_playbook.yml --check
#
# to let the playbook make all the required changes and bring you
# to the desired state, run:
# ansible-playbook viya_pre_install_playbook.yml
#
# useful tags to know:
#
# - skipifbelowspecs: allows the playbook to run even if your
# servers do not meet the specs (CPU, Mem, Storage)
#
# If you server(s) fails one of the specs tests, the error
# message will tell you how to bypass that check.
#
# - detectableonly: tasks where we can detect the wrong or right
# config, but can't fix it
#
# - fixable: tasks where we can both
#
####################################################################
---
# if you want everything to apply to all machines.
# using all the default values (from roles/virk.preinstall/defaults/main.yml)
- hosts: sas-all
become: yes
become_user: root
roles:
- virk.preinstall