Skip to content
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

Update PowerVS image builder document #1756

Merged
merged 1 commit into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/book/src/developer/build-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ Compose the `user-variables.json` file containing the information for the PowerV
"region": "",
"service_instance_id": "",
"ssh_private_key_file": "",
"zone": ""
"zone": "",
"dhcp_network": "false"
}
```

Expand All @@ -58,6 +59,7 @@ Compose the `user-variables.json` file containing the information for the PowerV
- `service_instance_id`: PowerVS service instance ID
- `ssh_private_key_file`: Path to the SSH private key file used to connect to the vm while image preparation, e.g: /Users/manjunath/.ssh/id_rsa
- `zone`: PowerVS zone, e.g: osa21
- `dhcp_network`: Boolean value when set to true, a DHCP server will be created in PowerVS workspace and its private network will be attached to VM, Make sure to customize the network settings while building OS using [pvsadm tool](https://github.com/ppc64le-cloud/pvsadm/blob/main/docs/Build%20DHCP%20enabled%20Centos%20Images.md).

```shell
# Clone the image-builder repository
Expand Down