Which section(s) is the issue in?
In https://github.com/openshift/openshift-docs/edit/main/modules/installing-ocp-agent-inputs.adoc
we have sample install-config as,
..
..
pullSecret: '<pull_secret>' <4>
sshKey: |
'<ssh_pub_key>' <5>
..
..
But when we add ssh key like that if fails to start services that creates initial cluster and infraenv though the node gets IP but we can't do ssh.
Changing it to something like below fixes it.
What needs fixing?
From this,
..
..
pullSecret: '<pull_secret>' <4>
sshKey: |
'<ssh_pub_key>' <5>
..
..
To this,
..
..
pullSecret: '<pull_secret>' <4>
sshKey: '<ssh_pub_key>' <5>
..
..
Tested this to my environment and seems not working with ABI somehow.