Skip to content

Commit 9958f6a

Browse files
Merge pull request #3 from giddel/master
bump versions of all packages
2 parents 589e8d5 + 7f6cce1 commit 9958f6a

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v2.4
2+
----
3+
* 📝 Updated base Python to [v3.9.1-alpine3.12](https://hub.docker.com/layers/python/library/python/3.9.1/images/sha256-758539bea3c58d4b0bf09bfa97c633cd657599e58648f5eb791b25d95cb854c2?context=explore)
4+
* 📝 Updated Kubectl to [v1.20.0](https://github.com/kubernetes/kubectl/releases/tag/kubernetes-1.20.2)
5+
* 📝 Updated Kubeval to [v1.15.0](https://github.com/instrumenta/kubeval/releases/tag/0.15.0)
6+
* 📝 Updated YAMLLint to [v1.25.0](https://pypi.org/project/yamllint/)
7+
* 📝 Updated Kustomize to [v3.9.2](https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv3.9.2)
8+
* 📝 Updated Conftest to [v0.23.0](https://github.com/open-policy-agent/conftest/releases/tag/v0.23.0)
9+
* 📝 Updated Config-Lint to [v1.6.0](https://github.com/stelligent/config-lint/releases/tag/v1.6.0)
10+
111
v2.3
212
----
313
* 🚀 [NEW] Added [Config-lint](https://stelligent.github.io/config-lint/#/?id=%f0%9f%94%8d-config-lint-%f0%9f%94%8e), A CLI tool to validate config files (JSON, Terraform, YAML + Kubernetes), using rules specified in YAML.

Dockerfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
FROM python:3.8.4-alpine3.12
1+
FROM python:3.9.1-alpine3.12
22
# https://hub.docker.com/_/python
33

4-
ARG APP_VERSION=2.1
4+
ARG APP_VERSION=2.4
55

66
# https://github.com/kubernetes/kubectl/releases
7-
ARG KUBECTL_VERSION=1.18.6
7+
ARG KUBECTL_VERSION=1.20.0
88

99
# https://github.com/instrumenta/kubeval/releases
1010
ARG KUBEVAL_VERSION=0.15.0
1111

1212
# https://pypi.org/project/yamllint/
13-
ARG YAMLLINT_VERSION=1.24.2
13+
ARG YAMLLINT_VERSION=1.25.0
1414

1515
# https://github.com/kubernetes-sigs/kustomize/releases
16-
ARG KUSTOMIZE_VERSION=3.8.1
16+
ARG KUSTOMIZE_VERSION=3.9.2
1717

1818
# https://github.com/open-policy-agent/conftest/releases
19-
ARG CONFTEST_VERSION=0.20.0
19+
ARG CONFTEST_VERSION=0.23.0
2020

2121
# https://github.com/stelligent/config-lint/releases
2222
ARG CONFIG_LINT_VERSION=1.6.0
@@ -69,4 +69,3 @@ RUN curl -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-rel
6969
&& chmod +x /usr/local/bin/kubectl
7070

7171
CMD ["/bin/sh"]
72-

0 commit comments

Comments
 (0)