Skip to content

Commit

Permalink
CNJR-5445: Use conjur edge image from internal registry
Browse files Browse the repository at this point in the history
  • Loading branch information
gl-johnson authored and imheresamir committed Sep 13, 2024
1 parent 7b0d8fc commit 84d3eb1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ pipeline {
}

stage('Run tests and archive test results') {
environment {
INFRAPOOL_REGISTRY_URL = "registry.tld"
}
steps {
script {
lock("api-java-${env.NODE_NAME}") {
Expand Down
2 changes: 2 additions & 0 deletions bin/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ source bin/utils.sh

trap finish EXIT

export REGISTRY_URL=${INFRAPOOL_REGISTRY_URL:-"docker.io"}

function main() {
finish
runDap
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
POSTGRES_PASSWORD: pa55w0rd

conjur:
image: cyberark/conjur:latest
image: ${REGISTRY_URL:-docker.io}/cyberark/conjur:edge
command: server -a cucumber
environment:
CONJUR_ACCOUNT: cucumber
Expand Down

0 comments on commit 84d3eb1

Please sign in to comment.