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
Installing fulcio failed, the pods didn't come up. In the log
2023-04-22T20:13:45.002Z �[31mFATAL�[0m app/serve.go:187 error loading --config-path=/etc/fulcio-config/config.json: provider https://kubernetes.default.svc: oidc: issuer did not match the issuer returned by provider, expected "https://kubernetes.default.svc" got "https://kubernetes.default.svc.cluster.local"
# Install Fulcio and wait for it to come up
echo '::group:: Install Fulcio'
if [ "${NEED_TO_UPDATE_FULCIO_CONFIG}" == "true" ]; then
echo "Fixing Fulcio config"
cp config/fulcio/fulcio/200-configmap.yaml ./200-configmap.yaml
# The sed works differently in mac and other places, so just shuffle
# files around for now.
sed 's@https://kubernetes.default.svc.cluster.local@https://kubernetes.default.svc@' config/fulcio/fulcio/200-configmap.yaml > ./200-configmap-new.yaml
mv ./200-configmap-new.yaml config/fulcio/fulcio/200-configmap.yaml
fi
make ko-apply-fulcio
echo '::endgroup::'
And although NEED_TO_UPDATE_FULCIO_CONFIG is false, this looks like it is kind/k8s version dependent.
Description
Installing fulcio failed, the pods didn't come up. In the log
Had to change the config to add '.cluster.local'
To get this to work.
Version
This was on the master branch sigs.k8s.io/release-utils/version.gitVersion=927786a-dirty
The text was updated successfully, but these errors were encountered: