File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,9 @@ pipeline {
137
137
}
138
138
139
139
stage(' Integration tests' ) {
140
+ environment {
141
+ INFRAPOOL_REGISTRY_URL = " registry.tld"
142
+ }
140
143
steps {
141
144
script {
142
145
grantIPAccess(infrapool)
Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ services:
24
24
- ${PWD}/ci/test/conjur-deployment/configuration/https/:/tmp/conf
25
25
26
26
pg :
27
- image : postgres:9.4
27
+ image : postgres:15
28
28
environment :
29
29
POSTGRES_HOST_AUTH_METHOD : trust
30
30
31
31
conjur :
32
- image : cyberark/conjur:latest
32
+ image : ${REGISTRY_URL:-docker.io}/ cyberark/conjur:edge
33
33
command : server -a dev -f /policy/initial_policy.yml
34
34
environment :
35
35
CONJUR_DATA_KEY : ' OyXV68Mip14xj33huGaQKewmmS+gKtDlp6ECZ2iATpU='
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ function get_parameters() {
34
34
get_parameters $@
35
35
cleanup
36
36
37
+ export REGISTRY_URL=${INFRAPOOL_REGISTRY_URL:- " docker.io" }
38
+
37
39
echo " Building API container..."
38
40
docker_compose_command build test
39
41
You can’t perform that action at this time.
0 commit comments