File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 49
49
default : &default-python "circleci/python:3.6-buster"
50
50
influxdb-image :
51
51
type : string
52
- default : " influxdb:v2.0.4 "
52
+ default : " influxdb:latest "
53
53
enabled-ciso-8601 :
54
54
type : boolean
55
55
default : true
58
58
environment : # environment variables for primary container
59
59
PIPENV_VENV_IN_PROJECT : true
60
60
ENABLED_CISO_8601 : << parameters.enabled-ciso-8601 >>
61
- - image : quay.io/influxdb/ << parameters.influxdb-image >>
61
+ - image : << parameters.influxdb-image >>
62
62
environment :
63
63
INFLUXD_HTTP_BIND_ADDRESS : :8086
64
64
steps :
@@ -136,7 +136,7 @@ workflows:
136
136
enabled-ciso-8601 : false
137
137
- tests-python :
138
138
name : test-3.6-influxdb-nightly
139
- influxdb-image : " influxdb2 :nightly"
139
+ influxdb-image : " quay.io/influxdb/influxdb :nightly"
140
140
- tests-python :
141
141
name : test-3.7
142
142
python-image : " circleci/python:3.7-buster"
Original file line number Diff line number Diff line change 23
23
24
24
set -e
25
25
26
- DEFAULT_DOCKER_REGISTRY=" quay.io/influxdb/"
27
- DOCKER_REGISTRY=" ${DOCKER_REGISTRY:- $DEFAULT_DOCKER_REGISTRY } "
28
-
29
- DEFAULT_INFLUXDB_V2_REPOSITORY=" influxdb"
30
- DEFAULT_INFLUXDB_V2_VERSION=" v2.0.4"
31
- INFLUXDB_V2_REPOSITORY=" ${INFLUXDB_V2_REPOSITORY:- $DEFAULT_INFLUXDB_V2_REPOSITORY } "
26
+ DEFAULT_INFLUXDB_V2_VERSION=" latest"
32
27
INFLUXDB_V2_VERSION=" ${INFLUXDB_V2_VERSION:- $DEFAULT_INFLUXDB_V2_VERSION } "
33
- INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY} :${INFLUXDB_V2_VERSION}
28
+ INFLUXDB_V2_IMAGE=influxdb :${INFLUXDB_V2_VERSION}
34
29
35
30
SCRIPT_PATH=" $( cd " $( dirname " $0 " ) " ; pwd -P ) "
36
31
You can’t perform that action at this time.
0 commit comments