You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ oc debug --namespace hypershift deployments/operator --image $(hack/publish-ocp.sh ./hypershift-operator) -- \
/ko-app/hypershift-operator run \
--oidc-storage-provider-s3-region $BUCKET_REGION \
--oidc-storage-provider-s3-bucket-name $BUCKET_NAME \
--oidc-storage-provider-s3-credentials /etc/oidc-storage-provider-s3-creds/credentials \
--namespace hypershift \
--pod-name operator-debug
{"level":"info","ts":"2025-01-29T18:44:32Z","logger":"setup","msg":"Starting hypershift-operator-manager","version":"openshift/hypershift: 6889612230b4caedddd1feb28fc783b72f03d99f. Latest supported OCP: 4.19.0"}
{"level":"info","ts":"2025-01-29T18:44:37Z","logger":"setup","msg":"objectkey","objectkey":{"name":"operator-debug","namespace":"hypershift"}}
failed to find operator image: failed to get operator pod hypershift/operator-debug: pods "operator-debug" not found
I'm not exactly sure why this doesn't fail regularly, but I assume this is because of the way the debug pod is named vs. the way a regular deployment pod is name:
OpenShift:
4.17.10
HyperShift binary:
latest
Following the steps here: https://hypershift-docs.netlify.app/contribute/develop_in_cluster/#launch-a-custom-hypershift-operator-image-interactively runs in to an issue where if you don't specify a control plane operator image, the hypershift-operator will try and retrieve the image from it's own pod spec, and fail.
I'm not exactly sure why this doesn't fail regularly, but I assume this is because of the way the debug pod is named vs. the way a regular deployment pod is name:
The debug pod does not have a pod template hash suffix, and I guess that makes this lookup fail?
hypershift/hypershift-operator/main.go
Lines 231 to 232 in 3f2e01c
A way to fix this is to just pass in the full pod name using downward API, but I wasn't sure if that would create other bugs:
The text was updated successfully, but these errors were encountered: