Skip to content

Commit ee61b9d

Browse files
author
Vitaly Korolev
committed
fix repo and latest tag values
1 parent c8ff0aa commit ee61b9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ gitCredID = 'marklogic-builder-github'
1111
operatorRegistry = 'ml-marklogic-operator-dev.bed-artifactory.bedford.progress.com'
1212
JIRA_ID = ''
1313
JIRA_ID_PATTERN = /(?i)(MLE)-\d{3,6}/
14-
operatorRepo = 'marklogic-operator-kubernetes'
14+
operatorRepo = 'marklogic-kubernetes-operator'
1515

1616
// Define local funtions
1717
void preBuildCheck() {
@@ -167,13 +167,13 @@ void publishToInternalRegistry() {
167167
docker tag ${operatorRepo}:${VERSION} ${operatorRegistry}/${operatorRepo}:${VERSION}
168168
docker tag ${operatorRepo}:${VERSION} ${operatorRegistry}/${operatorRepo}:${VERSION}-${branchNameTag}
169169
docker tag ${operatorRepo}:${VERSION} ${operatorRegistry}/${operatorRepo}:${VERSION}-${branchNameTag}-${timeStamp}
170-
docker tag ${operatorRepo}:${VERSION} ${operatorRegistry}/${operatorRepo}/latest
170+
docker tag ${operatorRepo}:${VERSION} ${operatorRegistry}/${operatorRepo}:latest
171171
172172
# Push images to internal registry
173173
docker push ${operatorRegistry}/${operatorRepo}:${VERSION}
174174
docker push ${operatorRegistry}/${operatorRepo}:${VERSION}-${branchNameTag}
175175
docker push ${operatorRegistry}/${operatorRepo}:${VERSION}-${branchNameTag}-${timeStamp}
176-
docker push ${operatorRegistry}/${operatorRepo}/latest
176+
docker push ${operatorRegistry}/${operatorRepo}:latest
177177
"""
178178
}
179179
}

0 commit comments

Comments
 (0)