An open API service indexing awesome lists of open source software.

https://github.com/samrocketman/jervis-secrets-test

Test out repository secrets in Jenkins.
https://github.com/samrocketman/jervis-secrets-test

Last synced: 4 months ago
JSON representation

Test out repository secrets in Jenkins.

Awesome Lists containing this project

README

          

# Jervis Secrets Test

Automatically loading secrets from a repository into Jenkins. Based on
[repository-secrets][rs].

Keys were generated with:

openssl genrsa -out ./id_rsa 2048
openssl rsa -in ./id_rsa -pubout -outform pem -out ./id_rsa.pub

Create credentials in a Jenkins folder and give it the credentials ID
`jervis-secrets-test`.

Secret generated with:

echo -n 'plaintext' | openssl rsautl -encrypt -inkey ./id_rsa.pub -pubin | openssl enc -base64 -A

Support added in [jervis#64][jervis#64].

[jervis#64]: https://github.com/samrocketman/jervis/issues/64
[rs]: https://github.com/samrocketman/repository-secrets/blob/main/docs/proof_of_concept.md