Skip to content

Commit 8181701

Browse files
committed
0.24.23
1 parent 749f780 commit 8181701

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
FROM alpine:3.16.0 AS build
2-
ENV KUBE_VERSION=v1.22.12
3-
ENV HELM_VERSION=v3.9.1
1+
FROM alpine:3.16.2 AS build
2+
ENV KUBE_VERSION=v1.22.13
3+
ENV HELM_VERSION=v3.9.2
44
ENV HELM_FILENAME=helm-${HELM_VERSION}-linux-amd64.tar.gz
55
ENV TZ=Europe/Warsaw
6-
LABEL version="v0.23.22"
6+
LABEL version="v0.24.23"
77
LABEL release="pipetools-k8s"
88
LABEL maintainer="marcinbojko"
99
SHELL ["/bin/ash", "-euo", "pipefail", "-c"]
10+
COPY --from=datree/datree:1.6.6 /datree /bin/datree
1011
# shellcheck disable=SC2169
1112
RUN apk add --no-cache --update -t deps ca-certificates curl bash gettext tar gzip openssl gnupg openssh rsync python3 python3-dev py3-pip py3-wheel tzdata\
1213
&& pip3 install --upgrade --no-cache-dir pip yamllint dos2unix jmespath \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ Small helper for CI/CD Helm/Kubernetes interactions
3838
|0.21.21|v3.8.2 |v1.22.9 |
3939
|0.22.21|v3.9.0 |v1.22.9 |
4040
|0.23.22|v3.9.1 |v1.22.12 |
41+
|0.24.23|v3.9.3 |v1.22.13 |
4142
|||

buildme.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ if [ "$build_status" == 0 ]; then
2929
rm -rf ./.*.txt||true
3030
date > "$coverage"
3131
echo "Checking versions"
32-
docker run -it "$release:$version" helm version -c >>"$coverage"
33-
docker run -it "$release:$version" kubectl version --client=true >>"$coverage"
32+
{
33+
docker run -it "$release:$version" helm version -c
34+
docker run -it "$release:$version" kubectl version --client=true
35+
docker run -it "$release:$version" datree version
36+
} >>"$coverage"
3437
echo "Checking Trivy"
3538
trivy image --output .coverage."$version"_trivy.txt "$release":"$version"
3639
echo "Checking Dive"

0 commit comments

Comments
 (0)