You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of global credential kubeconfig binding work fine with code as it says in docs
withCredentials([kubeconfigFile(credentialsId: 'global_credential_kubeconfig', variable: 'KUBECONFIG')]) {
// some block
}
but in user-scoped kubeconfig case it failed
withCredentials([kubeconfigFile(credentialsId: 'user-scoped_credential_kubeconfig', variable: 'KUBECONFIG')]) {
// some block
}
with error
Cannot find kubeconfig credentials with ID
The text was updated successfully, but these errors were encountered:
Hello everyone!
In case of global credential kubeconfig binding work fine with code as it says in docs
withCredentials([kubeconfigFile(credentialsId: 'global_credential_kubeconfig', variable: 'KUBECONFIG')]) {
// some block
}
but in user-scoped kubeconfig case it failed
withCredentials([kubeconfigFile(credentialsId: 'user-scoped_credential_kubeconfig', variable: 'KUBECONFIG')]) {
// some block
}
with error
Cannot find kubeconfig credentials with ID
The text was updated successfully, but these errors were encountered: