-
Notifications
You must be signed in to change notification settings - Fork 10
chore(local-deployment): update marketplace local deployment #96
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
base: main
Are you sure you want to change the base?
chore(local-deployment): update marketplace local deployment #96
Conversation
| wget http://did-helper:3002/did-material/private-key.pem | ||
| export BAE_LP_SIOP_PRIVATE_KEY=$(openssl ec -in private-key.pem -noout -text | grep 'priv:' -A 3 | tail -n +2 | tr -d ':\n ') | ||
| echo ${BAE_LP_SIOP_PRIVATE_KEY} | ||
| export BAE_LP_SIOP_PRIVATE_KEY_PEM="$PWD/private-key.pem" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the updated version of the bae include a fix for reading that key?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we contribute to that change and it was released in 10.6.0, because we encounter issues with that openssl command.
k3s/provider.yaml
Outdated
| accessModes: | ||
| - ReadWriteOnce | ||
| storageClassName: default | ||
| storageClassName: local-path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually local deployment uses local-path SC. I don't know how was it working before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, you were right, it is not local-path because it uses static provisioning of PVs using default sc. I just revert that in f40ada1
No description provided.