Skip to content

OCP 4.19 IPI in a disconnected environment #93690

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
19 changes: 9 additions & 10 deletions modules/installation-ibm-power-vs-config-yaml.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -322,19 +322,19 @@ platform:
region: "powervs-region"
vpcRegion: "vpc-region"
vpcName: name-of-existing-vpc <10>
vpcSubnets: <11>
vpcSubnets:
- name-of-existing-vpc-subnet
zone: "powervs-zone"
serviceInstanceID: "service-instance-id"
publish: Internal
credentialsMode: Manual
pullSecret: '{"auths":{"<local_registry>": {"auth": "<credentials>","email": "[email protected]"}}}' <12>
sshKey: ssh-ed25519 AAAA... <13>
additionalTrustBundle: | <14>
pullSecret: '{"auths":{"<local_registry>": {"auth": "<credentials>","email": "[email protected]"}}}' <11>
sshKey: ssh-ed25519 AAAA... <12>
additionalTrustBundle: | <13>
-----BEGIN CERTIFICATE-----
<MY_TRUSTED_CA_CERT>
-----END CERTIFICATE-----
imageContentSources: <15>
imageContentSources: <14>
- mirrors:
- <local_registry>/<local_repository_name>/release
source: quay.io/openshift-release-dev/ocp-release
Expand Down Expand Up @@ -362,11 +362,10 @@ When simultaneous multithreading (SMT), or hyperthreading is not enabled, one vC
<8> The cluster network plugin to install. The default value `OVNKubernetes` is the only supported value.
<9> The name of an existing resource group. The existing VPC and subnets should be in this resource group. The cluster is deployed to this resource group.
<10> Specify the name of an existing VPC.
<11> Specify the name of the existing VPC subnet. The subnets must belong to the VPC that you specified. Specify a subnet for each availability zone in the region.
<12> For `<local_registry>`, specify the registry domain name, and optionally the port, that your mirror registry uses to serve content. For example, registry.example.com or registry.example.com:5000. For `<credentials>`, specify the base64-encoded user name and password for your mirror registry.
<13> You can optionally provide the `sshKey` value that you use to access the machines in your cluster.
<14> Provide the contents of the certificate file that you used for your mirror registry.
<15> Provide the `imageContentSources` section from the output of the command to mirror the repository.
<11> For `<local_registry>`, specify the registry domain name, and optionally the port, that your mirror registry uses to serve content. For example, registry.example.com or registry.example.com:5000. For `<credentials>`, specify the base64-encoded user name and password for your mirror registry.
<12> You can optionally provide the `sshKey` value that you use to access the machines in your cluster.
<13> Provide the contents of the certificate file that you used for your mirror registry.
<14> Provide the `imageContentSources` section from the output of the command to mirror the repository.
+
[NOTE]
====
Expand Down
7 changes: 3 additions & 4 deletions modules/installation-initializing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -513,15 +513,14 @@ For `platform.gcp.network`, specify the name for the existing Google VPC. For `p
endif::gcp+restricted[]

ifdef::ibm-power-vs+restricted[]
.. Define the network and subnets for the VPC to install the cluster in under the parent `platform.powervs` field:
.. Define the network for the VPC to install the cluster in under the parent `platform.powervs` field:
+
[source,yaml]
----
vpcName: <existing_vpc>
vpcSubnets: <vpcSubnet>
----
+
For `platform.powervs.vpcName`, specify the name for the existing {ibm-cloud-name}. For `platform.powervs.vpcSubnets`, specify the existing subnets.
For `platform.powervs.vpcName`, specify the name for the existing {ibm-cloud-name}.
endif::ibm-power-vs+restricted[]
ifdef::ibm-cloud+restricted[]
.. Define the network and subnets for the VPC to install the cluster in under the parent `platform.ibmcloud` field:
Expand Down Expand Up @@ -587,7 +586,7 @@ Only one VPE can be specified per service.
====
endif::ibm-cloud[]
ifdef::restricted[]
.. Optional: Set the publishing strategy to `Internal`:
.. Set the publishing strategy to `Internal`:
+
[source,yaml]
----
Expand Down