Skip to content

Commit

Permalink
6.3.0.27_1
Browse files Browse the repository at this point in the history
  • Loading branch information
pvinh-spike committed Aug 14, 2024
1 parent 82a7508 commit 15dfac9
Show file tree
Hide file tree
Showing 13 changed files with 53 additions and 41 deletions.
56 changes: 34 additions & 22 deletions bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -10,48 +10,60 @@
#------------------------------------ test -----------------------------------

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

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

target "federal_ubuntu20-04_amd64" {
tags=["aerospike/aerospike-server-federal-amd64:6.1.0.39", "aerospike/aerospike-server-federal-amd64:latest"]
target "enterprise_ubuntu22-04_arm64" {
tags=["aerospike/aerospike-server-enterprise-arm64:6.3.0.27", "aerospike/aerospike-server-enterprise-arm64:latest"]
platforms=["linux/arm64"]
context="./enterprise/ubuntu22.04"
}

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

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

target "community_ubuntu22-04_arm64" {
tags=["aerospike/aerospike-server-community-arm64:6.3.0.27", "aerospike/aerospike-server-community-arm64:latest"]
platforms=["linux/arm64"]
context="./community/ubuntu22.04"
}

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

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

target "enterprise_ubuntu20-04" {
tags=["aerospike/aerospike-server-enterprise:6.1.0.39", "aerospike/aerospike-server-enterprise:6.1.0.39_1"]
platforms=["linux/amd64"]
context="./enterprise/ubuntu20.04"
target "enterprise_ubuntu22-04" {
tags=["aerospike/aerospike-server-enterprise:6.3.0.27", "aerospike/aerospike-server-enterprise:6.3.0.27_1"]
platforms=["linux/amd64,linux/arm64"]
context="./enterprise/ubuntu22.04"
}

target "federal_ubuntu20-04" {
tags=["aerospike/aerospike-server-federal:6.1.0.39", "aerospike/aerospike-server-federal:6.1.0.39_1"]
target "federal_ubuntu22-04" {
tags=["aerospike/aerospike-server-federal:6.3.0.27", "aerospike/aerospike-server-federal:6.3.0.27_1"]
platforms=["linux/amd64"]
context="./federal/ubuntu20.04"
context="./federal/ubuntu22.04"
}

target "community_ubuntu20-04" {
tags=["aerospike/aerospike-server:6.1.0.39", "aerospike/aerospike-server:6.1.0.39_1"]
platforms=["linux/amd64"]
context="./community/ubuntu20.04"
target "community_ubuntu22-04" {
tags=["aerospike/aerospike-server:6.3.0.27", "aerospike/aerospike-server:6.3.0.27_1"]
platforms=["linux/amd64,linux/arm64"]
context="./community/ubuntu22.04"
}

Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
# http://github.com/aerospike/aerospike-server.docker
#

FROM ubuntu:20.04
FROM ubuntu:22.04

LABEL org.opencontainers.image.title="Aerospike Community Server" \
org.opencontainers.image.description="Aerospike is a real-time database with predictable performance at petabyte scale with microsecond latency over billions of transactions." \
org.opencontainers.image.documentation="https://hub.docker.com/_/aerospike" \
org.opencontainers.image.base.name="docker.io/library/ubuntu:20.04" \
org.opencontainers.image.base.name="docker.io/library/ubuntu:22.04" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.1.0.39" \
org.opencontainers.image.version="6.3.0.27" \
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.39/aerospike-server-community-6.1.0.39-ubuntu20.04.tgz"
ARG AEROSPIKE_SHA_X86_64="9fb687dc2960db3d2f1ba8654934435e84622732283942df0ea7886c827af3eb"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.27/aerospike-server-community_6.3.0.27_tools-8.5.1_ubuntu22.04_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="567e66c7edbac44f43e09a62833ff5544479970cc45db36f946dba0c3b1b365e"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.27/aerospike-server-community_6.3.0.27_tools-8.5.1_ubuntu22.04_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="9b3d203dbc6b6e5783120a5652575b62f259319ae0005a5c42cd2310f52acff0"

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

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

FROM ubuntu:20.04
FROM ubuntu:22.04

LABEL org.opencontainers.image.title="Aerospike Enterprise Server" \
org.opencontainers.image.description="Aerospike is a real-time database with predictable performance at petabyte scale with microsecond latency over billions of transactions." \
org.opencontainers.image.documentation="https://hub.docker.com/_/aerospike" \
org.opencontainers.image.base.name="docker.io/library/ubuntu:20.04" \
org.opencontainers.image.base.name="docker.io/library/ubuntu:22.04" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.1.0.39" \
org.opencontainers.image.version="6.3.0.27" \
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.39/aerospike-server-enterprise-6.1.0.39-ubuntu20.04.tgz"
ARG AEROSPIKE_SHA_X86_64="af65076d6b3d026128cd34d05b55e6d25278c28487d0007c490e0d3de6752f6e"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.27/aerospike-server-enterprise_6.3.0.27_tools-8.5.1_ubuntu22.04_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="103963a5e8106d0200779e53f586f0f81b088ba89de083246a8b33ebbff9c91a"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.27/aerospike-server-enterprise_6.3.0.27_tools-8.5.1_ubuntu22.04_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="2e665115122d887c7437cb8e1388384d39a674ba540eab5b994ace329add76fb"

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

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

FROM ubuntu:20.04
FROM ubuntu:22.04

LABEL org.opencontainers.image.title="Aerospike Federal Server" \
org.opencontainers.image.description="Aerospike is a real-time database with predictable performance at petabyte scale with microsecond latency over billions of transactions." \
org.opencontainers.image.documentation="https://hub.docker.com/_/aerospike" \
org.opencontainers.image.base.name="docker.io/library/ubuntu:20.04" \
org.opencontainers.image.base.name="docker.io/library/ubuntu:22.04" \
org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \
org.opencontainers.image.vendor="Aerospike" \
org.opencontainers.image.version="6.1.0.39" \
org.opencontainers.image.version="6.3.0.27" \
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.39/aerospike-server-federal-6.1.0.39-ubuntu20.04.tgz"
ARG AEROSPIKE_SHA_X86_64="3fb4f75559611da29deff7ae3bf92abae72b12419f4e462cac625c6ba826ef32"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.3.0.27/aerospike-server-federal_6.3.0.27_tools-8.5.1_ubuntu22.04_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="bb5d0c52d513256ec33f14c24bda23b667f3b03b4e9c580d33f3e8437b3a42d9"
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 15dfac9

Please sign in to comment.