Skip to content

Commit 157deee

Browse files
committed
CNJR-5954: Push internal versions (just exclude 'edge' tag)
1 parent 60d2af6 commit 157deee

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,9 +1173,9 @@ pipeline {
11731173
script {
11741174
release(INFRAPOOL_EXECUTORV2_AGENT_0) { billOfMaterialsDirectory, assetDirectory ->
11751175
// Publish docker images
1176-
// INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './publish-images.sh --edge --dockerhub'
1177-
// INFRAPOOL_EXECUTORV2ARM_AGENT_0.agentSh './publish-images.sh --edge --arch=arm64'
1178-
// INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './publish-manifest.sh --edge'
1176+
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './publish-images.sh --edge'
1177+
INFRAPOOL_EXECUTORV2ARM_AGENT_0.agentSh './publish-images.sh --edge --arch=arm64'
1178+
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './publish-manifest.sh --edge'
11791179

11801180
// Create deb and rpm packages (ARM64)
11811181
INFRAPOOL_EXECUTORV2ARM_AGENT_0.agentSh 'echo "CONJUR_VERSION=5" >> debify.env'

publish-images.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ if [[ "${PUBLISH_EDGE}" = true ]]; then
113113
tag_and_push "${VERSION}-${ARCH}" "${RH_LOCAL_IMAGE}" "registry.tld/conjur-ubi"
114114

115115
# Push image to internal registry
116-
tag_and_push "edge-${ARCH}" "${LOCAL_IMAGE}" "registry.tld/${IMAGE_NAME}"
117-
tag_and_push "edge-${ARCH}" "${RH_LOCAL_IMAGE}" "registry.tld/conjur-ubi"
116+
# tag_and_push "edge-${ARCH}" "${LOCAL_IMAGE}" "registry.tld/${IMAGE_NAME}"
117+
# tag_and_push "edge-${ARCH}" "${RH_LOCAL_IMAGE}" "registry.tld/conjur-ubi"
118118

119119
# Publish release specific and edge tags to dockerhub
120120
if [[ "${DOCKERHUB}" = true ]]; then
121121
echo "Pushing to DockerHub"
122122

123123
tag_and_push "${VERSION}" "${LOCAL_IMAGE}" "${IMAGE_NAME}"
124-
tag_and_push "edge" "${LOCAL_IMAGE}" "${IMAGE_NAME}"
124+
# tag_and_push "edge" "${LOCAL_IMAGE}" "${IMAGE_NAME}"
125125
fi
126126
fi
127127

0 commit comments

Comments
 (0)