I am currently trying to get https://github.com/open-component-model/ocm-examples/tree/main/kubernetes/podify-walkthrough working.
When executing following step, I get this error
./scripts/setup-secrets.sh ${GITHUB_USER} ${GITHUB_TOKEN} ${GITHUB_USER_EMAIL}
error: failed to create secret secrets "regcred" already exists
error: failed to create secret secrets "creds" already exists
error: error reading ./component/key.pub: no such file or directory
i was able to fix it but I had to execute following command in folder kubernetes/podify-walkthrough/component
make keys
rm -f key.priv key.pub && \
ocm create rsakeypair key.priv key.pub
created rsa key pair key.priv[key.pub]
Is it intended that ./scripts/setup-secrets.sh is executing make keys or is this documentation missing?
I am currently trying to get https://github.com/open-component-model/ocm-examples/tree/main/kubernetes/podify-walkthrough working.
When executing following step, I get this error
i was able to fix it but I had to execute following command in folder
kubernetes/podify-walkthrough/componentIs it intended that
./scripts/setup-secrets.shis executingmake keysor is this documentation missing?