From 49fa4bb5954fced642ae82fa64679d6b48e09fb9 Mon Sep 17 00:00:00 2001 From: Anastas Dancha Date: Mon, 29 Nov 2021 16:51:24 -0500 Subject: [PATCH] use alpine:3.15 to build Signed-off-by: Anastas Dancha --- CHANGELOG.md | 9 ++++++++- Dockerfile | 2 +- VERSION | 2 +- k8s-vault_example.yaml | 2 +- shard.yml | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef013a8..23c7f23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2] - 2021-11-29 +### Changed +- using `alpine:3.15` to build + + ## [0.4.1] - 2021-06-10 ### Changed - using newer version of Crystal @@ -75,7 +80,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - initial implementation -[Unreleased]: https://github.com/anapsix/k8s-vault.cr/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/anapsix/k8s-vault.cr/compare/v0.4.2...HEAD +[0.4.2]: https://github.com/anapsix/k8s-vault.cr/compare/v0.4.1...v0.4.2 +[0.4.1]: https://github.com/anapsix/k8s-vault.cr/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/anapsix/k8s-vault.cr/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/anapsix/k8s-vault.cr/compare/v0.2.2...v0.3.0 [0.2.2]: https://github.com/anapsix/k8s-vault.cr/compare/v0.2.1...v0.2.2 diff --git a/Dockerfile b/Dockerfile index c7724ce..c910f93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## this stage installs everything required to build the project -FROM alpine:3.13 as build +FROM alpine:3.15 as build RUN apk add --no-cache musl-dev yaml-static upx && \ apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main \ llvm11-libs && \ diff --git a/VERSION b/VERSION index 267577d..2b7c5ae 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.1 +0.4.2 diff --git a/k8s-vault_example.yaml b/k8s-vault_example.yaml index 77d52f0..eb59b5e 100644 --- a/k8s-vault_example.yaml +++ b/k8s-vault_example.yaml @@ -1,4 +1,4 @@ -version: "0.4.1" +version: "0.4.2" k8s_api_timeout: 5 # in seconds ssh_forwarding_port: random: true diff --git a/shard.yml b/shard.yml index c128c01..554c0ae 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: k8s-vault -version: 0.4.1 +version: 0.4.2 description: | k8s-vault makes it easy to reach K8s API via jumphost, using SSH port forwarding.