Skip to content

Commit

Permalink
Change fake pull secret to a parsable value (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reamer committed Mar 30, 2021
1 parent de8a4c7 commit 35281e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Guides/UPI/okd4-terraform-openstack/install-config.yaml
Expand Up @@ -13,15 +13,15 @@ metadata:
name: same-name-as-in-terraform.tfvars
networking:
clusterNetwork:
- cidr: 10.128.0.0/14
hostPrefix: 23
- cidr: 10.128.0.0/14
hostPrefix: 23
networkType: OpenShiftSDN
serviceNetwork:
serviceNetwork:
- 172.30.0.0/16
platform:
none: {}
## The pull secret that provides components in the cluster access to images for OpenShift components.
# a fake value to satisfy the installer. Images for okd need no subscription
pullSecret: '{"auths":{"fake":{"auth": "bar"}}}'
pullSecret: '{"auths":{"fake":{"auth":"aWQ6cGFzcwo="}}}'
## The default SSH key that will be programmed for `core` user.
sshKey: 'ssh-pubkey-for-instance-access'
2 changes: 1 addition & 1 deletion Guides/UPI/vSphere_terraform/README.md
Expand Up @@ -154,7 +154,7 @@ Extract `openshift-install` tool (e.g. `oc adm release extract --command=openshi
password: 'YOUR_VSPHERE_PASSWORD'
datacenter: 'OCP-Datacenter'
defaultDatastore: 'iscsi-hdd'
pullSecret: '{"auths":{"fake":{"auth": "bar"}}}'
pullSecret: '{"auths":{"fake":{"auth":"aWQ6cGFzcwo="}}}'
sshKey: 'YOUR_SSH_KEY'
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -34,7 +34,7 @@ You'll be prompted to choose a platform to install to - AWS is currently the bes

You will need to have cloud credentials set in your shell properly before installation. You must have permission to configure the appropriate cloud resources from that account (such as VPCs, instances, and DNS records). You must have already configured a public DNS zone on your chosen cloud before the install starts.

You will also be prompted for a pull-secret that will be made available to all of of your machines - for OKD4 you should either paste the pull-secret you use for your registry, or paste `{"auths":{"fake":{"auth": "bar"}}}` to bypass the required value check (see [bug #182](https://github.com/openshift/okd/issues/182)).
You will also be prompted for a pull-secret that will be made available to all of of your machines - for OKD4 you should either paste the pull-secret you use for your registry, or paste `{"auths":{"fake":{"auth":"aWQ6cGFzcwo="}}}` to bypass the required value check (see [bug #182](https://github.com/openshift/okd/issues/182)).

Once the install completes successfully (usually 30m on AWS) the console URL and an admin username and password will be printed. If your DNS records were correct, you should be able to log in to your new OKD4 cluster!

Expand Down

0 comments on commit 35281e5

Please sign in to comment.