-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fixing up issues for bad sshKey declaration in install-config.yaml #66190
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
fixing up issues for bad sshKey declaration in install-config.yaml #66190
Conversation
and removing additional spaces before "EOF" for sample configs files of agent-config.yaml and install-config.yaml Signed-off-by: Ultimate-etamitlU <[email protected]>
|
🤖 Build preview is available at: Build log: https://circleci.com/gh/ocpdocs-previewbot/openshift-docs/27760 |
|
@skopacz1 Erased all of the separates PR's I had and combined them all to one with this fresh one, can you please review this one. |
skopacz1
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. This is a redo of #66032 which was QE approved, so I believe this PR itself won't need QE review. Let me know if I need it reviewed anyways.
|
/label merge-review-needed |
|
Since QE approved the other PR, it's fine to merge this one - it does appear to be the same change. |
|
/cherrypick enterprise-4.14 |
|
@kcarmichael08: new pull request created: #66207 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
|
/cherrypick enterprise-4.13 |
|
@kcarmichael08: #66190 failed to apply on top of branch "enterprise-4.13": In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Fixing up issues for bad sshKey declaration in install-config.yaml
and removing additional spaces before "EOF" for sample configs files
of agent-config.yaml and install-config.yaml
Signed-off-by: Ultimate-etamitlU [email protected]
Version(s): 4.13 and above
Issue:
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.
Also there are white spaces before "EOF" which break the copy paste operation of
the sample configs for user and needs that's adjusted manually so removing those.
Link to docs preview:
QE review:
Additional information:
Earlier had separate PR for each of it and messed up with that by trying it by GUI so
correcting everything in a single commit to avoid kids noise!