Skip to content

Commit 9fed382

Browse files
committed
Merge branch 'update-tools'
2 parents 606c811 + d498343 commit 9fed382

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v2.1
2+
----
3+
4+
* Updated base Python to 3.8.4-alpine3.12
5+
* Updated Kubectl to v1.18.5
6+
* Updated Kustomize to 3.8.0
7+
* Updated Conftest to 0.19.0
8+
* Updated Conftest to new home at open-policy-agent
9+
110
v2.0
211
----
312

@@ -7,4 +16,3 @@ v2.0
716
* Updated YamlLint to v1.23
817
* Updated Kustomize to v3.5.4
918
* Added ConfTest v0.18.1
10-

Dockerfile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FROM python:3.8.2-alpine3.11
1+
FROM python:3.8.4-alpine3.12
2+
# https://hub.docker.com/_/python
23

3-
ARG APP_VERSION=2.0
4+
ARG APP_VERSION=2.1
45

56
# https://github.com/kubernetes/kubectl/releases
6-
ARG KUBECTL_VERSION=1.18.2
7+
ARG KUBECTL_VERSION=1.18.5
78

89
# https://github.com/instrumenta/kubeval/releases
910
ARG KUBEVAL_VERSION=0.15.0
@@ -12,10 +13,10 @@ ARG KUBEVAL_VERSION=0.15.0
1213
ARG YAMLLINT_VERSION=1.23.0
1314

1415
# https://github.com/kubernetes-sigs/kustomize/releases
15-
ARG KUSTOMIZE_VERSION=3.5.4
16+
ARG KUSTOMIZE_VERSION=3.8.0
1617

17-
# https://github.com/instrumenta/conftest/releases
18-
ARG CONFTEST_VERSION=0.18.1
18+
# https://github.com/open-policy-agent/conftest/releases
19+
ARG CONFTEST_VERSION=0.19.0
1920

2021
# split layers into distinct components
2122
RUN apk add --no-cache ca-certificates curl
@@ -45,7 +46,7 @@ RUN mkdir /tmp/kustomize \
4546
# Install Conftest (https://www.conftest.dev/)
4647
RUN mkdir /tmp/conftest \
4748
&& curl -L -o /tmp/conftest/conftest.tar.gz \
48-
https://github.com/instrumenta/conftest/releases/download/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz \
49+
https://github.com/open-policy-agent/conftest/releases/download/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz \
4950
&& tar xf /tmp/conftest/conftest.tar.gz -C /tmp/conftest \
5051
&& mv /tmp/conftest/conftest /usr/local/bin \
5152
&& chmod +x /usr/local/bin/conftest \

0 commit comments

Comments
 (0)