*What*
* Add form filed to to upload an Android keystore PKCS 12 file. * Add form filed for keystore password * Create secret from the uploaded file, equivalent of:
{noformat} oc create secret generic testcert --from-file=certificate=./testcert.p12 --from-literal=password=password {noformat} * Apply the jenkins sync label to the secret, equivalent of:
{noformat} oc label secret testcert credential.sync.jenkins.openshift.io=true oc label secret testcert mobile-client-build=true
{noformat} |
|