Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

should the fulcio keys & cert be removed from chart in favor of the secret creation from files? #16

Open
sallyom opened this issue Sep 8, 2023 · 0 comments

Comments

@sallyom
Copy link
Collaborator

sallyom commented Sep 8, 2023

Copy/pasting the values in the helm UI is more tedious than creating the secret via oc with below cmds from files on disk. The user experience for cp/pasting values is not ideal. I'm not sure we should keep those options in the scaffolding chart. Instead, a BYO secret with the necessary content can be a pre-req.

oc create ns fulcio-system
./fulcio-create-root-ca-openssl.sh
./rekor-create-signer-key.sh
cd keys-cert
oc -n fulcio-system create secret generic fulcio-secret-rh --from-file=private=file_ca_key.pem --from-file=public=file_ca_pub.pem --from-file=cert=fulcio-root.pem  --from-literal=password=secure --dry-run=client -o yaml | oc apply -f-
oc -n rekor-system create secret generic rekor-private-key --from-file=private=./keys-cert/rekor_key.pem --dry-run=client -o yaml | oc apply -f-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant