Skip to content

Commit

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

group "test" {
targets=["enterprise_ubuntu20-04_amd64", "enterprise_ubuntu20-04_arm64", "federal_ubuntu20-04_amd64", "community_ubuntu20-04_amd64", "community_ubuntu20-04_arm64"]
targets=["enterprise_ubuntu20-04_amd64", "federal_ubuntu20-04_amd64", "community_ubuntu20-04_amd64"]
}

target "enterprise_ubuntu20-04_amd64" {
tags=["aerospike/aerospike-server-enterprise-amd64:6.2.0.32", "aerospike/aerospike-server-enterprise-amd64:latest"]
tags=["aerospike/aerospike-server-enterprise-amd64:6.1.0.43", "aerospike/aerospike-server-enterprise-amd64:latest"]
platforms=["linux/amd64"]
context="./enterprise/ubuntu20.04"
}

target "enterprise_ubuntu20-04_arm64" {
tags=["aerospike/aerospike-server-enterprise-arm64:6.2.0.32", "aerospike/aerospike-server-enterprise-arm64:latest"]
platforms=["linux/arm64"]
context="./enterprise/ubuntu20.04"
}

target "federal_ubuntu20-04_amd64" {
tags=["aerospike/aerospike-server-federal-amd64:6.2.0.32", "aerospike/aerospike-server-federal-amd64:latest"]
tags=["aerospike/aerospike-server-federal-amd64:6.1.0.43", "aerospike/aerospike-server-federal-amd64:latest"]
platforms=["linux/amd64"]
context="./federal/ubuntu20.04"
}

target "community_ubuntu20-04_amd64" {
tags=["aerospike/aerospike-server-community-amd64:6.2.0.32", "aerospike/aerospike-server-community-amd64:latest"]
tags=["aerospike/aerospike-server-community-amd64:6.1.0.43", "aerospike/aerospike-server-community-amd64:latest"]
platforms=["linux/amd64"]
context="./community/ubuntu20.04"
}

target "community_ubuntu20-04_arm64" {
tags=["aerospike/aerospike-server-community-arm64:6.2.0.32", "aerospike/aerospike-server-community-arm64:latest"]
platforms=["linux/arm64"]
context="./community/ubuntu20.04"
}

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

group "push" {
targets=["enterprise_ubuntu20-04", "federal_ubuntu20-04", "community_ubuntu20-04"]
}

target "enterprise_ubuntu20-04" {
tags=["aerospike/aerospike-server-enterprise:6.2.0.32", "aerospike/aerospike-server-enterprise:6.2.0.32_2"]
platforms=["linux/amd64,linux/arm64"]
tags=["aerospike/aerospike-server-enterprise:6.1.0.43", "aerospike/aerospike-server-enterprise:6.1.0.43_1"]
platforms=["linux/amd64"]
context="./enterprise/ubuntu20.04"
}

target "federal_ubuntu20-04" {
tags=["aerospike/aerospike-server-federal:6.2.0.32", "aerospike/aerospike-server-federal:6.2.0.32_2"]
tags=["aerospike/aerospike-server-federal:6.1.0.43", "aerospike/aerospike-server-federal:6.1.0.43_1"]
platforms=["linux/amd64"]
context="./federal/ubuntu20.04"
}

target "community_ubuntu20-04" {
tags=["aerospike/aerospike-server:6.2.0.32", "aerospike/aerospike-server:6.2.0.32_2"]
platforms=["linux/amd64,linux/arm64"]
tags=["aerospike/aerospike-server:6.1.0.43", "aerospike/aerospike-server:6.1.0.43_1"]
platforms=["linux/amd64"]
context="./community/ubuntu20.04"
}

10 changes: 5 additions & 5 deletions community/ubuntu20.04/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/ubuntu:20.04" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.2.0.32" \
org.opencontainers.image.version="6.1.0.43" \
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.2.0.32/aerospike-server-community_6.2.0.32_tools-8.1.0_ubuntu20.04_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="aabd650de397f28af6f798641d6ce3e36d92029e7934ebafeaa3dadd360238f8"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.2.0.32/aerospike-server-community_6.2.0.32_tools-8.1.0_ubuntu20.04_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="ebe51a6a57722fb3291e2228cc5a78188ad273b3417deb5d436444f8affc908f"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.1.0.43/aerospike-server-community-6.1.0.43-ubuntu20.04.tgz"
ARG AEROSPIKE_SHA_X86_64="831a170df0ba9ddbe6ed547798e3cf8cbf7b2cc03e95ba8ba0f18f51295c6fc8"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""

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

Expand Down
10 changes: 5 additions & 5 deletions enterprise/ubuntu20.04/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/ubuntu:20.04" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.2.0.32" \
org.opencontainers.image.version="6.1.0.43" \
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.2.0.32/aerospike-server-enterprise_6.2.0.32_tools-8.1.0_ubuntu20.04_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="8a4c0b507927d19f2973d631ae56d05e930c60e6dd84ad0f29ab45155ed736dd"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.2.0.32/aerospike-server-enterprise_6.2.0.32_tools-8.1.0_ubuntu20.04_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="a05ed2ae46ebd617031e044b31cb9057fb905e8656a031c1c6f50e1497914bb8"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.1.0.43/aerospike-server-enterprise-6.1.0.43-ubuntu20.04.tgz"
ARG AEROSPIKE_SHA_X86_64="b7a7e2f5c01fbc73d422047cd8368c053cc99512fd26f5894bba5336b34a62cf"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""

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

Expand Down
6 changes: 3 additions & 3 deletions federal/ubuntu20.04/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/ubuntu:20.04" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.2.0.32" \
org.opencontainers.image.version="6.1.0.43" \
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.2.0.32/aerospike-server-federal_6.2.0.32_tools-8.1.0_ubuntu20.04_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="49fb60c411c904f0c0e995d6bf2206aab40380d545ea9c62e74b879cf7d851ca"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.1.0.43/aerospike-server-federal-6.1.0.43-ubuntu20.04.tgz"
ARG AEROSPIKE_SHA_X86_64="15dc73343dd9d6f04573b4f87e0ec27ab5860bf5b9b5987a2f64ce1c6b5673ff"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""

Expand Down

0 comments on commit aa04553

Please sign in to comment.