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

Change fake pull secret to a parsable value #578

Merged
merged 1 commit into from
Mar 30, 2021
Merged
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
8 changes: 4 additions & 4 deletions Guides/UPI/okd4-terraform-openstack/install-config.yaml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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