Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
default: &default-python "circleci/python:3.6-buster"
influxdb-image:
type: string
default: "influxdb:v2.0.4"
default: "influxdb:latest"
enabled-ciso-8601:
type: boolean
default: true
Expand All @@ -58,7 +58,7 @@ jobs:
environment: # environment variables for primary container
PIPENV_VENV_IN_PROJECT: true
ENABLED_CISO_8601: << parameters.enabled-ciso-8601 >>
- image: quay.io/influxdb/<< parameters.influxdb-image >>
- image: << parameters.influxdb-image >>
environment:
INFLUXD_HTTP_BIND_ADDRESS: :8086
steps:
Expand Down Expand Up @@ -136,7 +136,7 @@ workflows:
enabled-ciso-8601: false
- tests-python:
name: test-3.6-influxdb-nightly
influxdb-image: "influxdb2:nightly"
influxdb-image: "quay.io/influxdb/influxdb:nightly"
- tests-python:
name: test-3.7
python-image: "circleci/python:3.7-buster"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
### Documentation
1. [#200](https://github.com/influxdata/influxdb-client-python/pull/200): Updated docs, examples, tests: use `close` instead of `__del__`.

### CI
1. [#199](https://github.com/influxdata/influxdb-client-python/pull/199): Updated stable image to `influxdb:latest` and nightly to `quay.io/influxdb/influxdb:nightly`

## 1.14.0 [2021-01-29]

### Features
Expand Down
9 changes: 2 additions & 7 deletions scripts/influxdb-restart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,9 @@

set -e

DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"

DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
DEFAULT_INFLUXDB_V2_VERSION="v2.0.4"
INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
DEFAULT_INFLUXDB_V2_VERSION="latest"
INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}
INFLUXDB_V2_IMAGE=influxdb:${INFLUXDB_V2_VERSION}

SCRIPT_PATH="$( cd "$(dirname "$0")" ; pwd -P )"

Expand Down