Skip to content

Commit e400623

Browse files
committed
Remove the system:openshift:openshift-authenticator csr
Looks like after the cert rotation `system:openshift:openshift-authenticator` csr is not recreated and causing issue for auth operator. As a workaround we need to manually delete it so new csr is generated with updated cert info. - https://bugzilla.redhat.com/show_bug.cgi?id=1978193
1 parent 7e78f95 commit e400623

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

snc.sh

+4
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,10 @@ fi
169169
# Wait for install to complete, this provide another 30 mins to make resources (apis) stable
170170
${OPENSHIFT_INSTALL} --dir ${INSTALL_DIR} wait-for install-complete ${OPENSHIFT_INSTALL_EXTRA_ARGS}
171171

172+
# Remove the openshift-authenticator CSR to force a certificate regeneration
173+
# BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1978193
174+
retry ${OC} delete csr system:openshift:openshift-authenticator
175+
172176
# Set the VM static hostname to crc-xxxxx-master-0 instead of localhost.localdomain
173177
HOSTNAME=$(${SSH} core@api.${CRC_VM_NAME}.${BASE_DOMAIN} hostnamectl status --transient)
174178
${SSH} core@api.${CRC_VM_NAME}.${BASE_DOMAIN} sudo hostnamectl set-hostname ${HOSTNAME}

0 commit comments

Comments
 (0)