File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 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
44ENV HELM_FILENAME=helm-${HELM_VERSION}-linux-amd64.tar.gz
55ENV TZ=Europe/Warsaw
6- LABEL version="v0.23.22 "
6+ LABEL version="v0.24.23 "
77LABEL release="pipetools-k8s"
88LABEL maintainer="marcinbojko"
99SHELL ["/bin/ash" , "-euo" , "pipefail" , "-c" ]
10+ COPY --from=datree/datree:1.6.6 /datree /bin/datree
1011# shellcheck disable=SC2169
1112RUN 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 \
Original file line number Diff line number Diff 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|||
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments