-
Notifications
You must be signed in to change notification settings - Fork 56
docs: improve README, update host/group vars, and prerequisites #437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| **env.file_server.iso_os_variant** | The os variant for the bastion kvm to be created | rhel8.8 | ||
| **env.file_server.iso_mount_dir** | Directory path relative to the HTTP/FTP accessible directory where RHEL ISO is mounted. For example, if the FTP root is at /home/user1 and the ISO is mounted at /home/user1/RHEL/8.7 then this variable would be RHEL/8.7 - no slash before or after. | RHEL/8.7 | ||
| **env.file_server.cfgs_dir** | Directory path relative to to the HTTP/FTP accessible directory where configuration files can be stored. For example, if FTP root is /home/user1 and you would like to store the configs at /home/user1/ocpz-config then this variable would be ocpz-config. No slash before or after. | ocpz-config | ||
| **env.file_server.ip** | IPv4 address for the file server that will be used to pass config files and iso to KVM host LPAR(s) and bastion VM during their first boot. | `'172.23.10.1'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ayanarukasar
Why are we changing the IP here ?
Please revert back this updating IP as we are exposing the IP here.
| **env.bastion.options.loadbalancer.public_ip** | (Only required if env.bastion.options.loadbalancer.on_bastion is True). The public IPv4 address for your environment's loadbalancer. api, apps, *.apps must use this. | 192.168.10.50 | ||
| **env.bastion.options.loadbalancer.private_ip** | (Only required if env.bastion.options.loadbalancer.on_bastion is True). The private IPv4 address for your environment's loadbalancer. api-int must use this. | 10.24.17.12 | ||
| **env.bastion.create** | True or False. Would you like to create a bastion KVM guest to host essential infrastructure services like DNS, load balancer, firewall, etc? Can de-select certain services with the env.bastion.options variables below. | `True` | ||
| **env.bastion.vm_name** | Name of the bastion VM. Arbitrary value. | `'bastion'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any specific reason to mention everything in single quotes ?
| **env.bastion.networking.ip** | IPv4 address for the bastion. | `192.168.122.20` | ||
| **env.bastion.networking.internal_ip** | <b>(Optional)</b> Private IPv4 address for bastion required when installing LPAR cluster with HiperSocket. Currently supports only when bastion is on LPAR or on zVM host. Incase of zVM bastion enable the HiperSocket prior to the playbook run with vmcp commands on the bastion. Alternative Option would be setting up the bridge port on OSA or RoCE. | `10.42.16.1` | ||
| **env.bastion.networking.ipv6** | IPv6 address for the bastion if use_ipv6 variable is 'True'. Keep empty `''` to use default ipv6 | `'fd00::3'` | ||
| **env.bastion.networking.mac** | MAC address for the bastion if use_dhcp variable is 'True'. (Generate using: `printf 'fa:1d:67:%02d:%02d:%02d\n' $((RANDOM%100)) $((RANDOM%100)) $((RANDOM%100))`) | `'fa:1d:67:35:13:20'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to give random mac address generation here, as we are talking bout DHCP , do we need a random generated mac ?
| **env.bastion.resources.swap** | How much swap storage would you like to allocate the bastion (in megabytes)? Recommended 4096 or more. | `4096` | ||
| **env.bastion.resources.vcpu** | How many virtual CPUs would you like to allocate to the bastion? Recommended 4 or more. | `4` | ||
| **env.bastion.resources.vcpu_model_option** | Configure the CPU model and CPU features exposed to the guest | `"--cpu host"` | ||
| **env.bastion.networking.ip** | IPv4 address for the bastion. | `192.168.122.20` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any specific reason here to change the IP ?
Updated docs/set-variables-host-vars.md
Updated docs/set-variables-group-vars.md
Updated docs/prerequisites.md
Improvements made to the README and variable documentation for clarity.