[bitnami/cassandra] Release cassandra-4.0.13-debian-12-r10 (#71186)
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
parent
9e1ca13a37
commit
ea8875938f
|
|
@ -8,11 +8,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-07-25T03:38:26Z" \
|
||||
org.opencontainers.image.created="2024-08-23T18:20:58Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/cassandra/README.md" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="4.0.13-debian-12-r9" \
|
||||
org.opencontainers.image.ref.name="4.0.13-debian-12-r10" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/cassandra" \
|
||||
org.opencontainers.image.title="cassandra" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
|
|
@ -29,9 +29,9 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
|
|||
RUN install_packages ca-certificates curl libbz2-1.0 libcom-err2 libcrypt1 libffi8 libgssapi-krb5-2 libjemalloc2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblzma5 libncursesw6 libnsl2 libreadline8 libsqlite3-0 libssl3 libtinfo6 libtirpc3 procps zlib1g
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
|
||||
COMPONENTS=( \
|
||||
"python-3.11.9-11-linux-${OS_ARCH}-debian-12" \
|
||||
"java-11.0.24-9-0-linux-${OS_ARCH}-debian-12" \
|
||||
"cassandra-4.0.13-1-linux-${OS_ARCH}-debian-12" \
|
||||
"python-3.12.5-1-linux-${OS_ARCH}-debian-12" \
|
||||
"java-11.0.24-9-1-linux-${OS_ARCH}-debian-12" \
|
||||
"cassandra-4.0.13-2-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
|
|||
|
|
@ -0,0 +1,41 @@
|
|||
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
version: '2'
|
||||
services:
|
||||
cassandra:
|
||||
image: docker.io/bitnami/cassandra:4.0
|
||||
ports:
|
||||
- 7000:7000
|
||||
- 9042:9042
|
||||
volumes:
|
||||
- cassandra_data:/bitnami
|
||||
environment:
|
||||
- CASSANDRA_SEEDS=cassandra,cassandra2
|
||||
- CASSANDRA_CLUSTER_NAME=cassandra-cluster
|
||||
- CASSANDRA_PASSWORD_SEEDER=yes
|
||||
- CASSANDRA_PASSWORD=cassandra
|
||||
# By default, Cassandra autodetects the available host memory and takes as much as it can.
|
||||
# Therefore, memory options are mandatory if multiple Cassandras are launched in the same node.
|
||||
- MAX_HEAP_SIZE=2G
|
||||
- HEAP_NEWSIZE=200M
|
||||
cassandra2:
|
||||
image: docker.io/bitnami/cassandra:4.0
|
||||
ports:
|
||||
- 7001:7000
|
||||
- 9043:9042
|
||||
volumes:
|
||||
- cassandra2_data:/bitnami
|
||||
environment:
|
||||
- CASSANDRA_SEEDS=cassandra,cassandra2
|
||||
- CASSANDRA_CLUSTER_NAME=cassandra-cluster
|
||||
- CASSANDRA_PASSWORD=cassandra
|
||||
# By default, Cassandra autodetects the available host memory and takes as much as it can.
|
||||
# Therefore, memory options are mandatory if multiple Cassandras are launched in the same node.
|
||||
- MAX_HEAP_SIZE=2G
|
||||
- HEAP_NEWSIZE=200M
|
||||
volumes:
|
||||
cassandra_data:
|
||||
driver: local
|
||||
cassandra2_data:
|
||||
driver: local
|
||||
|
|
@ -3,18 +3,18 @@
|
|||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "4.0.13-1"
|
||||
"version": "4.0.13-2"
|
||||
},
|
||||
"java": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "11.0.24-9-0"
|
||||
"version": "11.0.24-9-1"
|
||||
},
|
||||
"python": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "3.11.9-11"
|
||||
"version": "3.12.5-1"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue