Skip to content

Commit

Permalink
Add flow for using agent subcommand of openshift installer
Browse files Browse the repository at this point in the history
  • Loading branch information
nocturnalastro committed Oct 14, 2022
1 parent 687b914 commit a310998
Show file tree
Hide file tree
Showing 35 changed files with 694 additions and 19 deletions.
21 changes: 4 additions & 17 deletions deploy_cluster.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
---
- import_playbook: playbooks/generate_ssh_key_pair.yml
when: generate_ssh_keys | default(True) == True
- import_playbook: playbooks/deploy_cluster_agent_based_installer.yml
when: (use_agent_based_installer | default(false)) | bool

- import_playbook: playbooks/create_cluster.yml

- import_playbook: playbooks/generate_discovery_iso.yml

- import_playbook: playbooks/mount_discovery_iso_for_pxe.yml

- import_playbook: playbooks/boot_iso.yml
vars:
boot_iso_hosts: masters,workers

- import_playbook: playbooks/install_cluster.yml

- import_playbook: playbooks/monitor_hosts.yml

- import_playbook: playbooks/monitor_cluster.yml
- import_playbook: playbooks/deploy_cluster_assisted_installer.yml
when: not ((use_agent_based_installer | default(false)) | bool)
1 change: 1 addition & 0 deletions deploy_prerequisites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
- import_playbook: playbooks/deploy_dns.yml

- import_playbook: playbooks/deploy_assisted_installer_onprem.yml
when: not ((use_agent_based_installer | default(false)) | bool)

- import_playbook: playbooks/deploy_sushy_tools.yml
28 changes: 28 additions & 0 deletions docs/crucible_installer_features_comparison.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Crucible Features

This is a comparison of the features available through crucible depending on which installer is used

| Feature | Assisted installer (on-prem) | Agent based installer[1] |
| -------------------------------------------------- | ----------------------------- | ------------------------ |
| Compact cluster | Y | Y |
| Workers | Y | Y |
| SNO | Y | - |
| 2 day workers | Y | N |
| Set Network type | Y | N |
| Patitions | Y | N |
| IPV6 | Y | N[2] |
| Dual Stack | Y | Y[3] |
| NMState network config | Y | Y |
| Mirror Registry support | Y | Y |
| Set hostname | Y | Y |
| Set role | Y | Y |
| Proxy | Y | N |
| Discovery iso password | Y | N |
| DHCP | Y | Y[4] |
| - | - | - |

Footnotes:
[1] When compared to OCP version 4.12-ec.3.
[2] Worked when tested but not supported, support aimed for 4.12
[3] Not working yet support aimed for 4.12
[4] A `network_config` is still required however you could provide a raw nmstate, which configures the interfaces for dhcp and the corisponding `mac_interface_map`. If you are not using the DHCP provided by crucible you would need to provide the correct IP for the bootstrap node (by default the first node in the masters group) as the `host_ip_keyword` (default: `ansible_host`).
135 changes: 135 additions & 0 deletions docs/network_config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
# Network configuration
Network configuration can currently be used in two places in the inventory to configure the network config of a node and the network config of a vm_host.

The `network_config` entry on a node is a simplified version of the `nmstate`([nmstate.io](http://nmstate.io/)) required by the [assisted installer api](https://github.com/openshift/assisted-service/blob/3bcaca8abef5173b0e2175b5d0b722e851e39cee/docs/user-guide/restful-api-guide.md).

#### Static IPs

To activate static IPs in the discovery iso and resulting cluster there is some configuration required in the inventory.

```yaml
network_config:
interfaces:
- name: "{{ interface }}"
mac: "{{ mac }}"
addresses:
ipv4:
- ip: "{{ ansible_host}}"
prefix: "{{ mask }}"
dns_server_ips:
- "{{ dns }}"
- "{{ dns2 }}"
routes: # optional
- destination: 0.0.0.0/0
address: "{{ gateway }}"
interface: "{{ interface }}"
```
where the variables are as follows:
- `ip`: The static IP is set
- `dns` & `dns2`: IPs of the DNS servers
- `gateway`: IP of the gateway
- `mask`: Length of subnet mask (e.g. 24)
- `interface`: The name of the interface you wish to configure
- `mac`: Mac address of the interface you wish to configure

## Examples

### Link Aggregation

```yaml
network_config:
interfaces:
- name: bond0
type: bond
state: up
addresses:
ipv4:
- ip: 172.17.0.101
prefix: 24
link_aggregation:
mode: active-backup
options:
miimon: "1500"
slaves:
- ens7f0
- ens7f1
- name: ens1f0
type: ethernet
mac: "40:A6:B7:3D:B3:70"
state: up
- name: ens1f1
type: ethernet
mac: "40:A6:B7:3D:B3:71"
state: up
dns_server_ips:
- 10.40.0.100
routes:
- destination: 0.0.0.0/0
address: 172.17.0.1
interface: bond0
```

### Dual Stack:
``` yaml
network_config:
interfaces:
- name: "enp1s0"
mac: "{{ mac }}"
addresses:
ipv4:
- ip: "{{ ansible_host }}"
prefix: "{{ ipv4.mask }}"
ipv6:
- ip: "{{ ipv6_address }}"
prefix: "{{ ipv6.mask }}"
dns_server_ips:
- "{{ ipv6.dns }}"
- "{{ ipv4.dns }}"
routes:
- destination: "0:0:0:0:0:0:0:0/0"
address: "{{ ipv6.gateway }}"
interface: "enp1s0"
- destination: 0.0.0.0/0
address: "{{ ipv4.gateway }}"
interface: "enp1s0"
```

## Advanced

### Raw nmstate

If you wish to write the `nmstate` by hand you can use the `network_config.raw` entry, however you will also need to add `mac_interface_map`, the following is static ipv4 address

```yaml
mac_interface_map:
- logical_nic_name: "enp1s0"
mac_address: "{{ mac }}"
network_config:
raw:
dns-resolver:
config:
server:
- "{{ dns }}"
interfaces:
- name: enp1s0
state: up
type: ethernet
ipv4:
address:
- ip: "{{ ansible_host }}"
prefix-length: "{{ mask }}"
dhcp: false
enabled: true
routes:
config:
- destination: 0.0.0.0/0
next-hop-address: "{{ gateway }}"
next-hop-interface: enp1s0
table-id: 254
```


### Custom template
If you wish to use your own template you can set `network_config.template` with a path to your desired template the default can be found [here](../roles/generate_discovery_iso/templates/nmstate.yml.j2).
7 changes: 7 additions & 0 deletions playbooks/deploy_cluster_agent_based_installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
- import_playbook: extract_agent_based_installer.yml
when: agent_based_installer_path is not defined
- import_playbook: generate_manifests.yml
- import_playbook: generate_agent_iso.yml
- import_playbook: boot_iso.yml
- import_playbook: monitor_agent_based_installer.yml
19 changes: 19 additions & 0 deletions playbooks/deploy_cluster_assisted_installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
- import_playbook: generate_ssh_key_pair.yml
when: generate_ssh_keys | default(True) == True

- import_playbook: create_cluster.yml

- import_playbook: generate_discovery_iso.yml

- import_playbook: mount_discovery_iso_for_pxe.yml

- import_playbook: boot_iso.yml
vars:
boot_iso_hosts: masters,workers

- import_playbook: install_cluster.yml

- import_playbook: monitor_hosts.yml

- import_playbook: monitor_cluster.yml
15 changes: 15 additions & 0 deletions playbooks/extract_agent_based_installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
- name: Extract openshift installer
hosts: bastion
gather_facts: false
vars:
destination_hosts:
- bastion
pre_tasks:
- name: pre-compute need to get hashes
set_fact:
run_get_hash: "{{ assisted_installer_release_images | default({}) | length == 0 }}"
roles:
- role: get_image_hash
when: run_get_hash | bool
- extract_openshift_installer
5 changes: 5 additions & 0 deletions playbooks/generate_agent_iso.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
- name: Generate agent iso using agent_based_installer
hosts: bastion
roles:
- generate_agent_iso
14 changes: 14 additions & 0 deletions playbooks/generate_manifests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
- name: Generate manfiests for agent_based_installer
hosts: bastion
vars:
destination_hosts:
- bastion
pre_tasks:
- name: pre-compute need to get hashes
set_fact:
run_get_hash: "{{ image_hashes | default({}) | length == 0 }}"
roles:
- role: get_image_hash
when: run_get_hash
- generate_manifests
5 changes: 5 additions & 0 deletions playbooks/monitor_agent_based_installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- name: Monitor install process of agent_based_installer
hosts: bastion
gather_facts: False
roles:
- monitor_agent_based_installer
6 changes: 6 additions & 0 deletions roles/extract_openshift_installer/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
arch: x86_64
version_filter: "[?(openshift_version == '{{ openshift_version }}') && (cpu_architecture == '{{ arch }}')]"
release_image: "{{ (assisted_installer_release_images | json_query(version_filter))[0].url }}"
extact_dest_path: /tmp/wip/extract/
pull_secret_file: "{{ extact_dest_path }}/pull_secret.txt"
openshift_installer_path: "{{ extact_dest_path }}/openshift-install"
40 changes: 40 additions & 0 deletions roles/extract_openshift_installer/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
- name: "Create {{ extact_dest_path }}"
file:
path: "{{ extact_dest_path }}"
state: directory
mode: 0755
recurse: true

- name: Create pull_secret_file
copy:
content: "{{ pull_secret }}"
dest: "{{ pull_secret_file }}"
mode: "0600"

- name: Extract openshift_installer
shell:
cmd: >
oc adm
-a {{ pull_secret_file }}
release extract
--command=openshift-install
{{ release_image }}
--to={{ extact_dest_path }}
- name: Check extracted installer has agent subcommand
shell:
cmd: "{{ openshift_installer_path }} agent --help"
register: res
failed_when: False

- name: Check agent sub-commmand output
fail:
msg: >
Version of openshift install extracted from
release image does not have agent subcommand
when: "'unknown command' in res.stderr"

- name: Set agent_based_installer_path
set_fact:
agent_based_installer_path: "{{ openshift_installer_path }}"
8 changes: 8 additions & 0 deletions roles/generate_agent_iso/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
generated_dir: "{{ repo_root_path }}/generated"
cluster_manifest_parent_dir: "{{ generated_dir}}/{{ cluster_name }}"
download_agent_dest_file: "{{ discovery_iso_name }}"
download_dest_path: "{{ iso_download_dest_path | default('/opt/http_store/data') }}"
config_file_path: /tmp/wip/config
arch: x86_64
version_filter: "[?(openshift_version == '{{ openshift_version }}') && (cpu_architecture == '{{ arch }}')]"
release_image: "{{ (assisted_installer_release_images | json_query(version_filter))[0].url }}"
68 changes: 68 additions & 0 deletions roles/generate_agent_iso/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
- name: Create podman auth dir
file:
path: "{{ ansible_env.HOME }}/.docker"
state: directory
mode: 0755
recurse: true

- name: Copy pull_secret file.
copy:
content: "{{ pull_secret }}"
dest: "{{ ansible_env.HOME }}/.docker/config.json"
mode: 0644

- name: Login and generate iso
environment:
XDG_RUNTIME_DIR: "{{ config_file_path }}"
REGISTRY_AUTH_FILE: "{{ config_file_path }}/containers/auth.json"
block:
- name: Create temp_dir to store nmstateconfig
file:
path: "{{ config_file_path }}/nmstate_store"
state: directory
mode: 0755
recurse: true

- name: Copy configs to nmstate_store
copy:
src: "{{ cluster_manifest_parent_dir }}/cluster-manifests"
dest: "{{ config_file_path }}/nmstate_store"
mode: 0755
remote_src: true

- name: Generate cluster-manifests
ansible.builtin.shell:
cmd: "{{ agent_based_installer_path }} --log-level=debug agent create cluster-manifests"
chdir: "{{ cluster_manifest_parent_dir }}"
ignore_errors: true

- name: Copy configs back to cluster-manifests
copy:
src: "{{ config_file_path }}/nmstate_store/cluster-manifests/{{ item }}"
dest: "{{ cluster_manifest_parent_dir }}/cluster-manifests/{{ item }}"
mode: 0755
remote_src: true
loop:
- infraenv.yaml
- nmstateconfig.yaml

- name: Generate ISO with agent-config
ansible.builtin.shell:
cmd: "{{ agent_based_installer_path }} --log-level=debug agent create image"
chdir: "{{ cluster_manifest_parent_dir }}"

- name: Put discovery iso in http store
block:
- name: Create discovery directory
file:
path: "{{ download_dest_path }}/{{ download_agent_dest_file | dirname }}"
recurse: yes
state: directory

- name: Copy agent iso to discovery directory
ansible.builtin.copy:
src: "{{ cluster_manifest_parent_dir }}/agent.iso"
dest: "{{ download_dest_path }}/{{ download_agent_dest_file }}"
mode: 0644
delegate_to: http_store
become: true
Loading

0 comments on commit a310998

Please sign in to comment.