mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-23 06:40:23 +00:00
ci: fix calling podman_login()
A typo when calling podman_log() causes CI jobs to fail.
Fixes: 1eec379
"ci: pre-pull Ceph base-image and cephcsi:devel for mini-e2e-helm jobs"
Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
f36ef72a19
commit
ea5985fa3a
@ -95,7 +95,7 @@ node('cico-workspace') {
|
|||||||
returnStatus: true)
|
returnStatus: true)
|
||||||
|
|
||||||
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
||||||
podman_login("${CREDS_USER}", "${CREDS_PASSWD}:)
|
podman_login("${CREDS_USER}", "${CREDS_PASSWD}")
|
||||||
}
|
}
|
||||||
|
|
||||||
parallel test: {
|
parallel test: {
|
||||||
|
@ -113,7 +113,7 @@ node('cico-workspace') {
|
|||||||
).trim()
|
).trim()
|
||||||
|
|
||||||
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
||||||
podman_login("${CREDS_USER}", "${CREDS_PASSWD}:)
|
podman_login("${CREDS_USER}", "${CREDS_PASSWD}")
|
||||||
}
|
}
|
||||||
|
|
||||||
// base_image is like ceph/ceph:v15
|
// base_image is like ceph/ceph:v15
|
||||||
|
@ -110,7 +110,7 @@ node('cico-workspace') {
|
|||||||
).trim()
|
).trim()
|
||||||
|
|
||||||
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
||||||
podman_login("${CREDS_USER}", "${CREDS_PASSWD}:)
|
podman_login("${CREDS_USER}", "${CREDS_PASSWD}")
|
||||||
}
|
}
|
||||||
|
|
||||||
// base_image is like ceph/ceph:v15
|
// base_image is like ceph/ceph:v15
|
||||||
|
@ -110,7 +110,7 @@ node('cico-workspace') {
|
|||||||
).trim()
|
).trim()
|
||||||
|
|
||||||
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
||||||
podman_login("${CREDS_USER}", "${CREDS_PASSWD}:)
|
podman_login("${CREDS_USER}", "${CREDS_PASSWD}")
|
||||||
}
|
}
|
||||||
|
|
||||||
// base_image is like ceph/ceph:v15
|
// base_image is like ceph/ceph:v15
|
||||||
|
Loading…
Reference in New Issue
Block a user