-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
57 lines (53 loc) · 2.1 KB
/
config.yml
File metadata and controls
57 lines (53 loc) · 2.1 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
icon: smallicon.png
logo: logo.png
logo_size: 320x240 # Specify width x height in pixels
menu_title: RHCI Foundation Instructor Toolkit
num_columns: 2 # Define number of columns for the main menu
menu_items:
- name: Initial Setup
column: 1 # This menu item will be in the first column
submenu_columns: 2 # This submenu will have 2 columns
button_info: |
This will perform initial setup tasks
items:
- name: Setup Ansible Inventory
column: 1 # This submenu item will be in the first column
command: echo "Sets up Ansible Inventory"
button_info: |
This will setup the Ansible Inventory. It runs the playbook blah blah blah.
- name: Setup SSH Files
column: 1 # This submenu item will be in the first column
command: echo "Sets up SSH Files"
- name: Setup DNS
column: 2 # This submenu item will be in the second column
command: echo "Sets up DNS configuration"
- name: Setup Network
column: 2 # This submenu item will be in the second column
command: echo "Sets up network configuration"
- name: Perform RHCI Foundation Testing
column: 1 # This menu item will be in the first column
# No submenu_columns defined, defaults to 1 column
items:
- name: Test Installation
command: echo "Tests the installation"
- name: Test Connectivity
command: echo "Tests connectivity between nodes"
- name: Fix Bastion Items
column: 2 # This menu item will be in the second column
submenu_columns: 3 # This submenu will have 3 columns
items:
- name: Fix Bastion MTU
column: 1
command: echo "Fixes Bastion MTU"
- name: Fix Bastion DNS
column: 2
command: echo "Fixes Bastion DNS"
- name: Fix Bastion Network
column: 3
command: echo "Fixes Bastion Network"
- name: Fix Workstation Items
column: 2 # This menu item will be in the second column
items:
- name: Fix Workstation MTU
command: ./greeting.sh
# Items without column specified default to column 1