-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #500 from qlik-oss/ist/metrics-build
Create new dockerfile for metrics-build with monitoring capable packages
- Loading branch information
Showing
4 changed files
with
90 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM hairyhenderson/gomplate:v3.11.6-slim AS gomplate | ||
FROM docker:27.0.3 AS docker | ||
FROM hashicorp/vault:1.17.2 AS vault | ||
FROM hashicorp/terraform:1.9.2 AS terraform | ||
FROM bitnami/prometheus:2.53.1 AS prometheus | ||
FROM bitnami/alertmanager:0.27.0 AS alertmanager | ||
FROM grafana/mimirtool:2.13.0 AS mimirtool | ||
|
||
FROM alpine:3.19 AS packages | ||
|
||
RUN apk add --no-cache \ | ||
make \ | ||
git \ | ||
python3 \ | ||
py3-pip \ | ||
bash \ | ||
jq \ | ||
curl \ | ||
openssh \ | ||
github-cli | ||
|
||
FROM alpine:3.19 AS build | ||
|
||
COPY --from=gomplate /gomplate /bin/gomplate | ||
COPY --from=docker /usr/local/bin/docker /bin/docker | ||
COPY --from=vault /bin/vault /bin/vault | ||
COPY --from=terraform /bin/terraform /bin/terraform | ||
COPY --from=prometheus /opt/bitnami/prometheus/bin/promtool /bin/promtool | ||
COPY --from=alertmanager /opt/bitnami/alertmanager/bin/amtool /bin/amtool | ||
COPY --from=mimirtool /bin/mimirtool /bin/mimirtool | ||
|
||
COPY --from=packages / / |
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,18 @@ | ||
# qlik/metrics-build | ||
|
||
This image is built to support running tests with kubernetes cluster in CircleCI. It provides utilities such as docker, kubectl | ||
and helm. See the `Dockerfile` in this folder for details. | ||
|
||
## Third-Party Licenses | ||
|
||
See the git repository for the source code information: https://github.com/qlik-oss/dockerfiles/blob/master/LICENSE | ||
|
||
As with all Docker images, these also contain other software which may be under other licenses, along with any direct or indirect dependencies of the primary software being contained. | ||
|
||
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. | ||
|
||
The licenses of the contained software can be determined by inspecting the [Dockerfile](https://github.com/qlik-oss/dockerfiles/blob/master/metrics-build/Dockerfile) | ||
|
||
## Unsupported | ||
|
||
The source code (Dockerfiles) and binaries (container images) that result are provided for convenience, and not supported in any way. |
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,5 @@ | ||
name: metrics-build | ||
description: | | ||
This image is built to support building metrics based projects in concourse. It comes | ||
populated with software generally useful for building and deploying. See the | ||
`Dockerfile` in this folder for details. |