Skip to content

Commit aaacec7

Browse files
authored
Added command to verify the pull secret
Adding the pull secret does not restart the nodes in clusters that are 4.10 or later https://docs.openshift.com/container-platform/4.10/release_notes/ocp-4-10-release-notes.html Added also a command to verify the pull secret directly in the node
1 parent f60c4b9 commit aaacec7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

articles/openshift/howto-add-update-pull-secret.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,19 @@ This section walks through updating that pull secret with additional values from
131131
Run the following command to update your pull secret.
132132

133133
> [!NOTE]
134-
> Running this command will cause your cluster nodes to restart one by one as they're updated.
134+
> In ARO 4.9 or older, running this command will cause your cluster nodes to restart one by one as they're updated.
135+
> In ARO 4.10 version or later a restart will not be triggered.
135136

136137
```console
137138
oc set data secret/pull-secret -n openshift-config --from-file=.dockerconfigjson=./pull-secret.json
138139
```
139140

141+
### Verify that pull secret is in place
142+
143+
```
144+
oc exec $(oc get pod -n openshift-apiserver -o jsonpath="{.items[0].metadata.name}") -- cat /var/lib/kubelet/config.json
145+
```
146+
140147
After the secret is set, you're ready to enable Red Hat Certified Operators.
141148

142149
### Modify the configuration files

0 commit comments

Comments
 (0)