-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmain.yml
More file actions
88 lines (67 loc) · 2.6 KB
/
Copy pathmain.yml
File metadata and controls
88 lines (67 loc) · 2.6 KB
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
---
# Customize these vars to deploy the initial AAP bootstrap node
# title: This is the bootstrap user with sudo that should already exist on the bootsrap host
# required: true
bootstrap_user: ansible
# title: Add a list of SSH public keys to be added to authorized_keys on the bootstrap VM
# required: false
bootstrap_public_keys: []
# title: Working direcotry on the bootstrap host
# required: true
bootstrap_aap_setup_working_dir: /home/ansible/bootstrap_dir
# title: Red Hat account login (this is used to attach your subs to controller)
# required: true
bootstrap_rh_username: "{{ rh_username }}"
# title: Red Hat account password
# required: true
bootstrap_rh_password: "{{ rh_password }}"
# title: Red Hat Service Account Client ID
# required: false
bootstrap_rh_client_id: "{{ rh_client_id }}"
# title: Red Hat Service Account Client Secret
# required: false
bootstrap_rh_client_secret: "{{ rh_client_secret }}"
# title: Red Hat subscription ID
# required: true
bootstrap_rh_subscription_id: ""
# title: Red Hat subscription product name
# required: false
bootstrap_rh_filter_product_name: Red Hat Ansible Automation Platform
# title: Red Hat subscription support level
# required: false
bootstrap_rh_filter_support_level: Self-Support
# title: The admin password for the controller
# required: true
bootstrap_controller_password: "{{ controller_password }}"
# title: Level from 0 - 5 for verbosity
# required: false
bootstrap_aap_setup_inst_verbosity: 1
# title: Location of the AAP license manifest file
# required: false
bootstrap_aap_license_manifest: ""
# aap_setup_down_installer_file: # For future offline install
# Controller variables. Note that bootstrap_controller_hostname is used later
# in this vars file, but for the next section it will not expand properly
# title: Bootstrap controller hostname
# required: false
bootstrap_controller_hostname: "{{ controller_hostname | default(ansible_host) }}"
# title: Bootstrap controller username
# required: false
bootstrap_controller_username: admin
# title: Bootstrap AAP Version
# required: false
bootstrap_aap_version: "{{ aap_version | default(2.6) }}"
# title: Validate Controller SSL certificates
# required: false
bootstrap_controller_validate_certs: "{{ controller_validate_certs | default(false) }}"
# title: License File Submission Retries
# required: True
# description_lines:
# Number of retries to submit the license file
bootstrap_license_file_submission_retries: 25
# title: License File Submission Delay
# required: True
# description_lines:
# Amount of time to wait between retries to submit the license file
bootstrap_license_file_submission_delay: 10
...