-
Type: Task
-
Status: Resolved
-
Priority: Minor
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Continuous Integration, Jenkins X
-
Team:DevTools
We want to setup credentials in Jenkins X Platform cluster in order to upload artefacts to connect prod.
Here below a suggested kubernetes secret whose name will be connect-prod:
apiVersion: v1 data: username: ... password: ... kind: Secret ... metadata: ... labels: jenkins.io/credentials-type: usernamePassword name: connect-prod namespace: platform ... type: Opaque
Retrieved in pipeline with:
withCredentials([usernameColonPassword(credentialsId: 'connect-prod', variable: 'CONNECT_PASS')]) { ... }
- is required by
-
NEV-19 Move ARender CI/CD to Jenkins X
- Resolved