Browse Source

add creds

pull/79/head
Megha Mehta 4 years ago
committed by GitHub
parent
commit
d66b01a134
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      Jenkinsfile

10
Jenkinsfile

@ -1,16 +1,14 @@
node { node {
stage('Start argocd') { stage('Start argocd') {
withKubeConfig(credentialsId: 'aws-eksctl-kubeconfig', serverUrl: '') { withKubeConfig(credentialsId: 'aws-eksctl-kubeconfig', serverUrl: '') {
// sh 'kubectl get all' withCredentials([usernamePassword(credentialsId: 'argocd-devops-lab', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh""" sh"""
kubectl port-forward svc/argocd-server -n argocd 8080:443& kubectl port-forward svc/argocd-server -n argocd 8080:443&
sh 'argocd login 127.0.0.1:8080 --insecure --username $USERNAME --password $PASSWORD'
withCredentials([usernamePassword(credentialsId: 'argocd-devops-lab', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh 'argocd login 127.0.0.1:8080 --insecure --username $USERNAME --password $PASSWORD'
}
argocd app list argocd app list
""" """
}
} }
} }

Loading…
Cancel
Save