Skip to content

Commit

Permalink
6.4.0.0_1
Browse files Browse the repository at this point in the history
  • Loading branch information
pvinh-spike committed Aug 4, 2023
1 parent 1a67d9e commit 015a589
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 39 deletions.
52 changes: 26 additions & 26 deletions bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -10,60 +10,60 @@
#------------------------------------- test -----------------------------------

group "test" {
targets=["enterprise_debian11_amd64", "enterprise_debian11_arm64", "federal_debian11_amd64", "community_debian11_amd64", "community_debian11_arm64"]
targets=["enterprise_debian12_amd64", "enterprise_debian12_arm64", "federal_debian12_amd64", "community_debian12_amd64", "community_debian12_arm64"]
}

target "enterprise_debian11_amd64" {
tags=["aerospike/aerospike-server-enterprise-amd64:6.3.0.6", "aerospike/aerospike-server-enterprise-amd64:latest"]
target "enterprise_debian12_amd64" {
tags=["aerospike/aerospike-server-enterprise-amd64:6.4.0.0", "aerospike/aerospike-server-enterprise-amd64:latest"]
platforms=["linux/amd64"]
context="./enterprise/debian11"
context="./enterprise/debian12"
}

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

target "federal_debian11_amd64" {
tags=["aerospike/aerospike-server-federal-amd64:6.3.0.6", "aerospike/aerospike-server-federal-amd64:latest"]
target "federal_debian12_amd64" {
tags=["aerospike/aerospike-server-federal-amd64:6.4.0.0", "aerospike/aerospike-server-federal-amd64:latest"]
platforms=["linux/amd64"]
context="./federal/debian11"
context="./federal/debian12"
}

target "community_debian11_amd64" {
tags=["aerospike/aerospike-server-community-amd64:6.3.0.6", "aerospike/aerospike-server-community-amd64:latest"]
target "community_debian12_amd64" {
tags=["aerospike/aerospike-server-community-amd64:6.4.0.0", "aerospike/aerospike-server-community-amd64:latest"]
platforms=["linux/amd64"]
context="./community/debian11"
context="./community/debian12"
}

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

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

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

target "enterprise_debian11" {
tags=["aerospike/aerospike-server-enterprise:6.3.0.6", "aerospike/aerospike-server-enterprise:6.3.0.6_1", "aerospike/aerospike-server-enterprise:latest"]
target "enterprise_debian12" {
tags=["aerospike/aerospike-server-enterprise:6.4.0.0", "aerospike/aerospike-server-enterprise:6.4.0.0_1", "aerospike/aerospike-server-enterprise:latest"]
platforms=["linux/amd64,linux/arm64"]
context="./enterprise/debian11"
context="./enterprise/debian12"
}

target "federal_debian11" {
tags=["aerospike/aerospike-server-federal:6.3.0.6", "aerospike/aerospike-server-federal:6.3.0.6_1", "aerospike/aerospike-server-federal:latest"]
target "federal_debian12" {
tags=["aerospike/aerospike-server-federal:6.4.0.0", "aerospike/aerospike-server-federal:6.4.0.0_1", "aerospike/aerospike-server-federal:latest"]
platforms=["linux/amd64"]
context="./federal/debian11"
context="./federal/debian12"
}

target "community_debian11" {
tags=["aerospike/aerospike-server:6.3.0.6", "aerospike/aerospike-server:6.3.0.6_1", "aerospike/aerospike-server:latest"]
target "community_debian12" {
tags=["aerospike/aerospike-server:6.4.0.0", "aerospike/aerospike-server:6.4.0.0_1", "aerospike/aerospike-server:latest"]
platforms=["linux/amd64,linux/arm64"]
context="./community/debian11"
context="./community/debian12"
}

10 changes: 5 additions & 5 deletions community/debian11/Dockerfile → community/debian12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://github.com/aerospike/aerospike-server.docker
#

FROM debian:bullseye-slim
FROM debian:bookworm-slim

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
# "federal".
Expand All @@ -14,10 +14,10 @@ FROM debian:bullseye-slim
# 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.3.0.6/aerospike-server-community_6.3.0.6_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="40db2ae8824d9a561c235aca56bcd1cb92c88eb29b36312060b96a0aaa95d705"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.6/aerospike-server-community_6.3.0.6_tools-8.5.1_debian11_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="3a782a13cdc0c5eb92cb1e48d128cde31e9db0b70f722a7f57ffc28ffaf9b52d"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.4.0.0/aerospike-server-community_6.4.0.0_tools-9.0.0_debian12_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="789c55d13f420af16ac049a1944fc0ba93ef32a54ed1d7a7722e61851fa53e4d"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.4.0.0/aerospike-server-community_6.4.0.0_tools-9.0.0_debian12_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="6211ee6f4830ea4de86e340a4ea5649864ca539ae53a2d8394b767e8e9731099"

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

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://github.com/aerospike/aerospike-server.docker
#

FROM debian:bullseye-slim
FROM debian:bookworm-slim

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
# "federal".
Expand All @@ -14,10 +14,10 @@ FROM debian:bullseye-slim
# 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.3.0.6/aerospike-server-enterprise_6.3.0.6_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="85b00ab32cdc21cfe0e67495ede6ff3b58614cdb2ce37a6b9c5fa903cfdce223"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.6/aerospike-server-enterprise_6.3.0.6_tools-8.5.1_debian11_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="15359a49ea62fbbc64c79129cca61000d8e2aa6e7927c9105a8ba5764868909f"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.4.0.0/aerospike-server-enterprise_6.4.0.0_tools-9.0.0_debian12_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="852bc02a7234db5632d12afbf49d14eb039fdf1a5b1e35c4f377e56dc265f5d4"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.4.0.0/aerospike-server-enterprise_6.4.0.0_tools-9.0.0_debian12_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="d6ec3c9fbd6029ded6284dcdf998169b19de614f398e688098b7196b8f29e2ad"

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

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions federal/debian11/Dockerfile → federal/debian12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://github.com/aerospike/aerospike-server.docker
#

FROM debian:bullseye-slim
FROM debian:bookworm-slim

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
# "federal".
Expand All @@ -14,8 +14,8 @@ FROM debian:bullseye-slim
# 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.3.0.6/aerospike-server-federal_6.3.0.6_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="70ef1997beded18cdbda2c8b179dfc09a456b04a8155c2d53895665fdd2c4110"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.4.0.0/aerospike-server-federal_6.4.0.0_tools-9.0.0_debian12_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="ef043a1423b2db3a8377d6bfb94b5949c3149cf69f192e4c51e8b99a2730095e"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 015a589

Please sign in to comment.