Skip to content

Commit

Permalink
6.3.0.22_1
Browse files Browse the repository at this point in the history
  • Loading branch information
pvinh-spike committed May 10, 2024
1 parent b3581f9 commit 3b33286
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 22 deletions.
30 changes: 21 additions & 9 deletions bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -10,48 +10,60 @@
#------------------------------------ test -----------------------------------

group "test" {
targets=["enterprise_debian11_amd64", "federal_debian11_amd64", "community_debian11_amd64"]
targets=["enterprise_debian11_amd64", "enterprise_debian11_arm64", "federal_debian11_amd64", "community_debian11_amd64", "community_debian11_arm64"]
}

target "enterprise_debian11_amd64" {
tags=["aerospike/aerospike-server-enterprise-amd64:6.1.0.34", "aerospike/aerospike-server-enterprise-amd64:latest"]
tags=["aerospike/aerospike-server-enterprise-amd64:6.3.0.22", "aerospike/aerospike-server-enterprise-amd64:latest"]
platforms=["linux/amd64"]
context="./enterprise/debian11"
}

target "enterprise_debian11_arm64" {
tags=["aerospike/aerospike-server-enterprise-arm64:6.3.0.22", "aerospike/aerospike-server-enterprise-arm64:latest"]
platforms=["linux/arm64"]
context="./enterprise/debian11"
}

target "federal_debian11_amd64" {
tags=["aerospike/aerospike-server-federal-amd64:6.1.0.34", "aerospike/aerospike-server-federal-amd64:latest"]
tags=["aerospike/aerospike-server-federal-amd64:6.3.0.22", "aerospike/aerospike-server-federal-amd64:latest"]
platforms=["linux/amd64"]
context="./federal/debian11"
}

target "community_debian11_amd64" {
tags=["aerospike/aerospike-server-community-amd64:6.1.0.34", "aerospike/aerospike-server-community-amd64:latest"]
tags=["aerospike/aerospike-server-community-amd64:6.3.0.22", "aerospike/aerospike-server-community-amd64:latest"]
platforms=["linux/amd64"]
context="./community/debian11"
}

target "community_debian11_arm64" {
tags=["aerospike/aerospike-server-community-arm64:6.3.0.22", "aerospike/aerospike-server-community-arm64:latest"]
platforms=["linux/arm64"]
context="./community/debian11"
}

#------------------------------------ push -----------------------------------

group "push" {
targets=["enterprise_debian11", "federal_debian11", "community_debian11"]
}

target "enterprise_debian11" {
tags=["aerospike/aerospike-server-enterprise:6.1.0.34", "aerospike/aerospike-server-enterprise:6.1.0.34_1"]
platforms=["linux/amd64"]
tags=["aerospike/aerospike-server-enterprise:6.3.0.22", "aerospike/aerospike-server-enterprise:6.3.0.22_1"]
platforms=["linux/amd64,linux/arm64"]
context="./enterprise/debian11"
}

target "federal_debian11" {
tags=["aerospike/aerospike-server-federal:6.1.0.34", "aerospike/aerospike-server-federal:6.1.0.34_1"]
tags=["aerospike/aerospike-server-federal:6.3.0.22", "aerospike/aerospike-server-federal:6.3.0.22_1"]
platforms=["linux/amd64"]
context="./federal/debian11"
}

target "community_debian11" {
tags=["aerospike/aerospike-server:6.1.0.34", "aerospike/aerospike-server:6.1.0.34_1"]
platforms=["linux/amd64"]
tags=["aerospike/aerospike-server:6.3.0.22", "aerospike/aerospike-server:6.3.0.22_1"]
platforms=["linux/amd64,linux/arm64"]
context="./community/debian11"
}

10 changes: 5 additions & 5 deletions community/debian11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.title="Aerospike Community Server" \
org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.1.0.34" \
org.opencontainers.image.version="6.3.0.22" \
org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker"

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
Expand All @@ -23,10 +23,10 @@ LABEL org.opencontainers.image.title="Aerospike Community Server" \
# By selecting "federal" you agree to the "FEDERAL_LICENSE"
ARG AEROSPIKE_EDITION="community"

ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.1.0.34/aerospike-server-community-6.1.0.34-debian11.tgz"
ARG AEROSPIKE_SHA_X86_64="0a4d8dac7115da69902692553ba5a06daae9e5b7548005f28c0534b0cd5d49d1"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.22/aerospike-server-community_6.3.0.22_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="b6b69b340c67f7f65539a0e181aa3206bbef826e0eed21c04043b35deb852d62"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.22/aerospike-server-community_6.3.0.22_tools-8.5.1_debian11_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="4c37047be3293564930ea2da920e3dc8d019c2bef58e27e2545f899f3c588897"

SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"]

Expand Down
10 changes: 5 additions & 5 deletions enterprise/debian11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.title="Aerospike Enterprise Server" \
org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.1.0.34" \
org.opencontainers.image.version="6.3.0.22" \
org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker"

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
Expand All @@ -23,10 +23,10 @@ LABEL org.opencontainers.image.title="Aerospike Enterprise Server" \
# By selecting "federal" you agree to the "FEDERAL_LICENSE"
ARG AEROSPIKE_EDITION="enterprise"

ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.1.0.34/aerospike-server-enterprise-6.1.0.34-debian11.tgz"
ARG AEROSPIKE_SHA_X86_64="708776a9d482394078f4c2239659651a044e76b72252e8f36ede0492cd573730"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.22/aerospike-server-enterprise_6.3.0.22_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="b264dcbe652065137685f0f45e4af1c25e9f7b77513e728ba9d67915e5150c56"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.22/aerospike-server-enterprise_6.3.0.22_tools-8.5.1_debian11_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="0b0273dc6315b6a064e518c42b87da00ad19d8b7453d9cecd693ca3a065604f8"

SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"]

Expand Down
6 changes: 3 additions & 3 deletions federal/debian11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.title="Aerospike Federal Server" \
org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.1.0.34" \
org.opencontainers.image.version="6.3.0.22" \
org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker"

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
Expand All @@ -23,8 +23,8 @@ LABEL org.opencontainers.image.title="Aerospike Federal Server" \
# By selecting "federal" you agree to the "FEDERAL_LICENSE"
ARG AEROSPIKE_EDITION="federal"

ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.1.0.34/aerospike-server-federal-6.1.0.34-debian11.tgz"
ARG AEROSPIKE_SHA_X86_64="8b9b8236508d72cf7c8748aed9784971fdaa7f104f1d9dfd27ad5802494b8be1"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.3.0.22/aerospike-server-federal_6.3.0.22_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="e255319987e52e6adabea47de7fe87df3e360d19c84e183e7f7fc7e5de80c4a6"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""

Expand Down

0 comments on commit 3b33286

Please sign in to comment.