Skip to content
Draft
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/bash

# This script configures an OpenShift IPI installation on IBM PowerVC.
# It validates the environment, installs required tools (PowerVC-Tool, yq),
# provisions a bastion host with HAProxy, and generates the install-config.yaml
# needed by the openshift-install binary.

# Strict mode
set -o nounset
set -o errexit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,9 @@ create_node () {
if [[ "$ARCH" == "ppc64le" ]]; then
HTTPD_PORT="$(leaseLookup 'httpd-port')"
EXTRA_ARGS="${EXTRA_ARGS} coreos.live.rootfs_url=http://${HOSTNAME}:${HTTPD_PORT}/${ROOTFS_NAME}"
# domain XML templates (domain-install-template.xml, domain-template.xml) in the
# cluster profile secret must use machine='pseries-rhel10.0.0' and cpu POWER10
# for hosts running CentOS Stream 10 / POWER10 (e.g. power-s2s leases on 10.130.41.76).
fi

# Boot artifacts names/paths were exported above upon creation
Expand Down