[
https://issues.jboss.org/browse/SWSQE-838?page=com.atlassian.jira.plugin....
]
Prachi Yadav commented on SWSQE-838:
------------------------------------
In jenkins we can use Secret also to encrypt the credentials
*************************************
import hudson.util.Secret
def secret = Secret.fromString("your password")
println(secret.getEncryptedValue())
*************************************
and decrypt it
*************************************
import hudson.util.Secret
def secret = Secret.fromString("zlvnUMF1/hXwe3PLoitMpQ6BuQHBJ1FnpH7vmMmQ2qk=")
println(secret.getPlainText())
*************************************
Investigate how we could use git-crypt
--------------------------------------
Key: SWSQE-838
URL:
https://issues.jboss.org/browse/SWSQE-838
Project: Kiali QE
Issue Type: QE Task
Reporter: Filip Brychta
Assignee: Prachi Yadav
Priority: Minor
Labels: infrastructure
Do we want to use git-crypt to store credentials?
Problem is how to safely share credentials among team members, how to use them in jenkins
jobs and automation, etc.
# check how other teams are doing it
# suggest improvements for kiali team
--
This message was sent by Atlassian Jira
(v7.13.5#713005)