forked from OpenAtomFoundation/pika
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support building pika_exporter docker image (OpenAtomFoundation…
…#2451) Co-authored-by: liuchengyu <liuchengyu@360.cn>
- Loading branch information
Showing
6 changed files
with
223 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM golang:1.20 AS builder | ||
|
||
LABEL maintainer="pikiwidb@gmail.com" | ||
|
||
ENV PIKA=/pika \ | ||
PIKA_BUILD_DIR=/tmp/pika \ | ||
PIKA_EXPORTER_BUILD_DIR=/tmp/pika/tools/pika_exporter \ | ||
PATH=${PIKA}:${PIKA}/bin:${PATH} | ||
|
||
ARG ENABLE_PROXY=false | ||
RUN if [ "${ENABLE_PROXY}" = "true" ] ; \ | ||
then go env -w GOPROXY=https://goproxy.io,direct; \ | ||
fi | ||
|
||
COPY . ${PIKA_BUILD_DIR} | ||
|
||
WORKDIR ${PIKA_EXPORTER_BUILD_DIR} | ||
|
||
RUN go env && make | ||
|
||
FROM ubuntu:22.04 | ||
|
||
LABEL maintainer="pikiwidb@gmail.com" | ||
|
||
ENV PIKA=/pika \ | ||
PIKA_BUILD_DIR=/tmp/pika \ | ||
PATH=${PIKA}:${PIKA}/bin:${PATH} | ||
|
||
WORKDIR ${PIKA} | ||
|
||
COPY --from=builder ${PIKA_BUILD_DIR}/tools/pika_exporter/bin/pika_exporter ${PIKA}/bin/pika_exporter | ||
COPY --from=builder ${PIKA_BUILD_DIR}/tools/pika_exporter/config/info.toml ${PIKA}/conf/info.toml | ||
|
||
EXPOSE 9121 | ||
|
||
CMD ["/pika/bin/pika_exporter", "--config", "/pika/conf/info.toml"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
#! /bin/bash | ||
|
||
# parse arguments | ||
# -t tag, default is "pikadb/pika-exporter:<git tag>" | ||
# -p platform , it will use docker buildx, options: all, linux/amd64, linux/arm64, linux/arm, linux/arm64, darwin/amd64 more details: https://docs.docker.com/build/building/multi-platform/ | ||
# --proxy proxy, proxy has no value, if you want to use proxy, just add --proxy. if you are in China, you may need to use proxy download the package for up speed the build process | ||
# --help help | ||
|
||
while getopts "t:p:-:" opt; do | ||
case $opt in | ||
t) | ||
TAG=$OPTARG | ||
;; | ||
p) | ||
PLATFORM=$OPTARG | ||
MULTIARCHIVE=true | ||
;; | ||
-) | ||
case $OPTARG in | ||
proxy) | ||
proxy=1 | ||
;; | ||
help) | ||
echo "Usage: build_docker.sh [-t tag] [-p platform] [--proxy] [--help]" | ||
echo "" | ||
echo "Options:" | ||
echo " -t tag default is \"pikadb/pika-exporter:<git tag>\"" | ||
echo " -p <plat>,[<plat>] default is current docker platform. " | ||
echo " options: all, linux/amd64, linux/arm, linux/arm64" | ||
echo " more details: https://docs.docker.com/build/building/multi-platform " | ||
echo " --proxy use proxy download the package for up speed the build process in CN." | ||
echo " --help help" | ||
echo "" | ||
echo "eg:" | ||
echo " ./build_docker.sh -p linux/amd64,linux/arm64 -t pikadb/pika-exporter:latest --proxy " | ||
exit 0 | ||
;; | ||
|
||
*) | ||
echo "Unknown option --$OPTARG" | ||
exit 1 | ||
;; | ||
esac | ||
;; | ||
*) | ||
echo "Unknown option -$opt" | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
|
||
|
||
# if TAG is not set, set it "pikadb/pika-exporter" | ||
if [ -z "$TAG" ] | ||
then | ||
TAG="pikadb/pika-exporter:$(git describe --tags --abbrev=0 --always)" | ||
fi | ||
|
||
# if Platform is "all", set it "linux/amd64,linux/arm64,linux/arm" | ||
if [ "$PLATFORM" = "all" ] | ||
then | ||
PLATFORM="linux/amd64,linux/arm,linux/arm64" | ||
fi | ||
|
||
# if Platform is not set, set it "linux/amd64" | ||
if [ -z "$PLATFORM" ] | ||
then | ||
PLATFORM="linux/amd64" | ||
fi | ||
|
||
# if proxy is set, set it | ||
PROXY=false | ||
if [ -n "$proxy" ] | ||
then | ||
PROXY=true | ||
fi | ||
|
||
# check if docker is installed | ||
if ! [ -x "$(command -v docker)" ]; then | ||
echo 'Error: docker is not installed.' >&2 | ||
exit 1 | ||
fi | ||
|
||
|
||
if [ "$MULTIARCHIVE" = true ] | ||
then | ||
# check if `docker buildx inpsect pika-builder` is ok | ||
if ! docker buildx inspect pika-builder > /dev/null 2>&1; then | ||
docker buildx create --use --name=pika-builder --driver docker-container | ||
else | ||
docker buildx use pika-builder | ||
fi | ||
|
||
docker buildx build --platform ${PLATFORM} -t ${TAG} -f Dockerfile_pika_exporter --build-arg ENABLE_PROXY=${PROXY} ../ | ||
|
||
else | ||
# build single-arch image | ||
docker build -t ${TAG} -f Dockerfile_pika_exporter --build-arg ENABLE_PROXY=${PROXY} ../ | ||
fi | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters