[bitnami/influxdb] Release 2.7.6-debian-12-r11 (#67348)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
947d27eb4c
commit
effd5b7b9c
|
|
@ -7,11 +7,11 @@ ARG TARGETARCH
|
|||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||
org.opencontainers.image.created="2024-05-29T15:47:57Z" \
|
||||
org.opencontainers.image.created="2024-05-30T10:11:11Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/influxdb/README.md" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="2.7.6-debian-12-r10" \
|
||||
org.opencontainers.image.ref.name="2.7.6-debian-12-r11" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/influxdb" \
|
||||
org.opencontainers.image.title="influxdb" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
|
|
@ -29,7 +29,7 @@ RUN install_packages ca-certificates curl libgcc-s1 procps
|
|||
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
|
||||
COMPONENTS=( \
|
||||
"wait-for-port-1.0.7-13-linux-${OS_ARCH}-debian-12" \
|
||||
"influxdb-2.7.6-6-linux-${OS_ARCH}-debian-12" \
|
||||
"influxdb-2.7.6-7-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "2.7.6-6"
|
||||
"version": "2.7.6-7"
|
||||
},
|
||||
"wait-for-port": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -106,8 +106,8 @@ export INFLUXDB_PORT_READINESS_TIMEOUT="${INFLUXDB_PORT_READINESS_TIMEOUT:-30}"
|
|||
export INFLUXDB_INIT_MODE="${INFLUXDB_INIT_MODE:-setup}"
|
||||
export INFLUXDB_INIT_V1_DIR="${INFLUXDB_INIT_V1_DIR:-${BITNAMI_VOLUME_DIR}/v1}"
|
||||
export INFLUXDB_INIT_V1_CONFIG="${INFLUXDB_INIT_V1_CONFIG:-${BITNAMI_VOLUME_DIR}/v1/config.yaml}"
|
||||
export INFLUXDB_UPGRADE_LOG_FILE="${INFLUXDB_UPGRADE_LOG_FILE:-${BITNAMI_VOLUME_DIR}/v1/upgrade.log}"
|
||||
export INFLUXDB_CONTINUOUS_QUERY_EXPORT_FILE="${INFLUXDB_CONTINUOUS_QUERY_EXPORT_FILE:-${BITNAMI_VOLUME_DIR}/v1/v1-cq-export.txt}"
|
||||
export INFLUXDB_UPGRADE_LOG_FILE="${INFLUXDB_UPGRADE_LOG_FILE:-${INFLUXDB_INIT_V1_DIR}/upgrade.log}"
|
||||
export INFLUXDB_CONTINUOUS_QUERY_EXPORT_FILE="${INFLUXDB_CONTINUOUS_QUERY_EXPORT_FILE:-${INFLUXDB_INIT_V1_DIR}/v1-cq-export.txt}"
|
||||
|
||||
# InfluxDB auth settings
|
||||
export INFLUXDB_HTTP_AUTH_ENABLED="${INFLUXDB_HTTP_AUTH_ENABLED:-true}"
|
||||
|
|
|
|||
|
|
@ -163,42 +163,42 @@ InfluxDB (TM) can be configured via environment variables or using a configurati
|
|||
|
||||
#### Customizable environment variables
|
||||
|
||||
| Name | Description | Default Value |
|
||||
|-----------------------------------------|----------------------------------------------------------------------------------------|---------------------------------------------|
|
||||
| `INFLUXDB_DATA_DIR` | InfluxDB directory where data is stored. | `${INFLUXDB_VOLUME_DIR}/data` |
|
||||
| `INFLUXDB_DATA_WAL_DIR` | InfluxDB directory where the WAL file is stored. | `${INFLUXDB_VOLUME_DIR}/wal` |
|
||||
| `INFLUXDB_META_DIR` | InfluxDB directory where metadata is stored. | `${INFLUXDB_VOLUME_DIR}/meta` |
|
||||
| `INFLUXD_CONFIG_PATH` | InfluxDB 2.x alias for configuration file path. | `${INFLUXDB_CONF_DIR}` |
|
||||
| `INFLUXDB_REPORTING_DISABLED` | Whether to disable InfluxDB reporting. | `true` |
|
||||
| `INFLUXDB_HTTP_PORT_NUMBER` | Port number used by InfluxDB HTTP server. | `8086` |
|
||||
| `INFLUXDB_HTTP_BIND_ADDRESS` | InfluxDB HTTP bind address. | `0.0.0.0:${INFLUXDB_HTTP_PORT_NUMBER}` |
|
||||
| `INFLUXDB_HTTP_READINESS_TIMEOUT` | InfluxDB HTTP port readiness timeout in seconds. | `60` |
|
||||
| `INFLUXDB_PORT_NUMBER` | Port number used by InfluxDB. | `8088` |
|
||||
| `INFLUXDB_BIND_ADDRESS` | InfluxDB bind address. | `0.0.0.0:${INFLUXDB_PORT_NUMBER}` |
|
||||
| `INFLUXDB_PORT_READINESS_TIMEOUT` | InfluxDB port readiness timeout in seconds. | `30` |
|
||||
| `INFLUXDB_INIT_MODE` | InfluxDB init mode. | `setup` |
|
||||
| `INFLUXDB_INIT_V1_DIR` | Path to InfluxDB 1.x data to be imported into 2.x format | `${BITNAMI_VOLUME_DIR}/v1` |
|
||||
| `INFLUXDB_INIT_V1_CONFIG` | Path to InfluxDB 1.x config file | `${BITNAMI_VOLUME_DIR}/v1/config.yaml` |
|
||||
| `INFLUXDB_UPGRADE_LOG_FILE` | InfluxDB 1.x to 2.x log file (do not place it into ${INFLUXDB_VOLUME_DIR}) | `${BITNAMI_VOLUME_DIR}/v1/upgrade.log` |
|
||||
| `INFLUXDB_CONTINUOUS_QUERY_EXPORT_FILE` | InfluxDB continuous query file created during 1.x data to 2.x format migration process | `${BITNAMI_VOLUME_DIR}/v1/v1-cq-export.txt` |
|
||||
| `INFLUXDB_HTTP_AUTH_ENABLED` | Whether to enable InfluxDB HTTP auth. | `true` |
|
||||
| `INFLUXDB_ADMIN_USER` | InfluxDB admin username. | `admin` |
|
||||
| `INFLUXDB_ADMIN_USER_PASSWORD` | InfluxDB admin user password. | `nil` |
|
||||
| `INFLUXDB_ADMIN_USER_TOKEN` | InfluxDB admin user token. | `nil` |
|
||||
| `INFLUXDB_ADMIN_CONFIG_NAME` | InfluxDB admin user config name. | `default` |
|
||||
| `INFLUXDB_ADMIN_ORG` | InfluxDB admin org. | `primary` |
|
||||
| `INFLUXDB_ADMIN_BUCKET` | InfluxDB admin user bucket. | `primary` |
|
||||
| `INFLUXDB_ADMIN_RETENTION` | InfluxDB admin user retention. | `0` |
|
||||
| `INFLUXDB_USER` | Additional InfluxDB username. | `nil` |
|
||||
| `INFLUXDB_USER_PASSWORD` | Additional InfluxDB user password. | `nil` |
|
||||
| `INFLUXDB_USER_ORG` | Additional InfluxDB user org. | `${INFLUXDB_ADMIN_ORG}` |
|
||||
| `INFLUXDB_USER_BUCKET` | Additional InfluxDB user bucket. | `nil` |
|
||||
| `INFLUXDB_CREATE_USER_TOKEN` | Whether to create user token for InfluxDB. | `no` |
|
||||
| `INFLUXDB_READ_USER` | Additional InfluxDB read-only username. | `nil` |
|
||||
| `INFLUXDB_READ_USER_PASSWORD` | Additional InfluxDB read-only user password. | `nil` |
|
||||
| `INFLUXDB_WRITE_USER` | Additional InfluxDB username with write privileges. | `nil` |
|
||||
| `INFLUXDB_WRITE_USER_PASSWORD` | Additional InfluxDB user with write privileges. | `nil` |
|
||||
| `INFLUXDB_DB` | InfluxDB database name. | `nil` |
|
||||
| Name | Description | Default Value |
|
||||
|-----------------------------------------|----------------------------------------------------------------------------------------|--------------------------------------------|
|
||||
| `INFLUXDB_DATA_DIR` | InfluxDB directory where data is stored. | `${INFLUXDB_VOLUME_DIR}/data` |
|
||||
| `INFLUXDB_DATA_WAL_DIR` | InfluxDB directory where the WAL file is stored. | `${INFLUXDB_VOLUME_DIR}/wal` |
|
||||
| `INFLUXDB_META_DIR` | InfluxDB directory where metadata is stored. | `${INFLUXDB_VOLUME_DIR}/meta` |
|
||||
| `INFLUXD_CONFIG_PATH` | InfluxDB 2.x alias for configuration file path. | `${INFLUXDB_CONF_DIR}` |
|
||||
| `INFLUXDB_REPORTING_DISABLED` | Whether to disable InfluxDB reporting. | `true` |
|
||||
| `INFLUXDB_HTTP_PORT_NUMBER` | Port number used by InfluxDB HTTP server. | `8086` |
|
||||
| `INFLUXDB_HTTP_BIND_ADDRESS` | InfluxDB HTTP bind address. | `0.0.0.0:${INFLUXDB_HTTP_PORT_NUMBER}` |
|
||||
| `INFLUXDB_HTTP_READINESS_TIMEOUT` | InfluxDB HTTP port readiness timeout in seconds. | `60` |
|
||||
| `INFLUXDB_PORT_NUMBER` | Port number used by InfluxDB. | `8088` |
|
||||
| `INFLUXDB_BIND_ADDRESS` | InfluxDB bind address. | `0.0.0.0:${INFLUXDB_PORT_NUMBER}` |
|
||||
| `INFLUXDB_PORT_READINESS_TIMEOUT` | InfluxDB port readiness timeout in seconds. | `30` |
|
||||
| `INFLUXDB_INIT_MODE` | InfluxDB init mode. | `setup` |
|
||||
| `INFLUXDB_INIT_V1_DIR` | Path to InfluxDB 1.x data to be imported into 2.x format | `${BITNAMI_VOLUME_DIR}/v1` |
|
||||
| `INFLUXDB_INIT_V1_CONFIG` | Path to InfluxDB 1.x config file | `${BITNAMI_VOLUME_DIR}/v1/config.yaml` |
|
||||
| `INFLUXDB_UPGRADE_LOG_FILE` | InfluxDB 1.x to 2.x log file (do not place it into ${INFLUXDB_VOLUME_DIR}) | `${INFLUXDB_INIT_V1_DIR}/upgrade.log` |
|
||||
| `INFLUXDB_CONTINUOUS_QUERY_EXPORT_FILE` | InfluxDB continuous query file created during 1.x data to 2.x format migration process | `${INFLUXDB_INIT_V1_DIR}/v1-cq-export.txt` |
|
||||
| `INFLUXDB_HTTP_AUTH_ENABLED` | Whether to enable InfluxDB HTTP auth. | `true` |
|
||||
| `INFLUXDB_ADMIN_USER` | InfluxDB admin username. | `admin` |
|
||||
| `INFLUXDB_ADMIN_USER_PASSWORD` | InfluxDB admin user password. | `nil` |
|
||||
| `INFLUXDB_ADMIN_USER_TOKEN` | InfluxDB admin user token. | `nil` |
|
||||
| `INFLUXDB_ADMIN_CONFIG_NAME` | InfluxDB admin user config name. | `default` |
|
||||
| `INFLUXDB_ADMIN_ORG` | InfluxDB admin org. | `primary` |
|
||||
| `INFLUXDB_ADMIN_BUCKET` | InfluxDB admin user bucket. | `primary` |
|
||||
| `INFLUXDB_ADMIN_RETENTION` | InfluxDB admin user retention. | `0` |
|
||||
| `INFLUXDB_USER` | Additional InfluxDB username. | `nil` |
|
||||
| `INFLUXDB_USER_PASSWORD` | Additional InfluxDB user password. | `nil` |
|
||||
| `INFLUXDB_USER_ORG` | Additional InfluxDB user org. | `${INFLUXDB_ADMIN_ORG}` |
|
||||
| `INFLUXDB_USER_BUCKET` | Additional InfluxDB user bucket. | `nil` |
|
||||
| `INFLUXDB_CREATE_USER_TOKEN` | Whether to create user token for InfluxDB. | `no` |
|
||||
| `INFLUXDB_READ_USER` | Additional InfluxDB read-only username. | `nil` |
|
||||
| `INFLUXDB_READ_USER_PASSWORD` | Additional InfluxDB read-only user password. | `nil` |
|
||||
| `INFLUXDB_WRITE_USER` | Additional InfluxDB username with write privileges. | `nil` |
|
||||
| `INFLUXDB_WRITE_USER_PASSWORD` | Additional InfluxDB user with write privileges. | `nil` |
|
||||
| `INFLUXDB_DB` | InfluxDB database name. | `nil` |
|
||||
|
||||
#### Read-only environment variables
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue