Skip to content

Commit 52ce4d4

Browse files
authored
Merge pull request #20 from AckeeDevOps/feat/72067-artifact-registry
✨ Add support for Artifact Registry and bump Vault and base image ver…
2 parents e719a1c + 5c63722 commit 52ce4d4

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [4.1.0] - 2022-08-29
8+
### Changed
9+
- Bump version of base image to 20.10.17
10+
- Bump version of CI utils to 2.13.0 - adds support for Artifact Registry to helper functions
11+
- Bump version of Vault to 1.11.2
12+
713
## [4.0.0] - 2021-11-09
814
### Added
915
- `helper_functions.sh` download

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM docker:20.10.16
1+
FROM docker:20.10.17
22

33
LABEL tag="ackee-gitlab" \
44
author="Ackee 🦄" \
55
description="Tailor-made image for our stack"
66

7-
ENV GITLAB_CI_UTILS_VERSION "2.7.0"
7+
ENV GITLAB_CI_UTILS_VERSION "2.13.0"
88
ENV PATH "$PATH:/opt/google-cloud-sdk/bin"
99

1010
RUN apk add --no-cache bash coreutils curl jq git python3 rsync zip py3-pip gettext
@@ -26,7 +26,7 @@ RUN wget -q https://get.helm.sh/helm-v3.5.3-linux-amd64.tar.gz -O helm.tar.gz &&
2626
mv linux-amd64/helm /usr/local/bin/helm && \
2727
rm -r linux-amd64
2828

29-
RUN wget -q https://releases.hashicorp.com/vault/1.8.4/vault_1.8.4_linux_amd64.zip -O vault.zip && \
29+
RUN wget -q https://releases.hashicorp.com/vault/1.11.2/vault_1.11.2_linux_amd64.zip -O vault.zip && \
3030
unzip vault.zip && \
3131
mv vault /usr/local/bin/vault && \
3232
chmod +x /usr/local/bin/vault && \

0 commit comments

Comments
 (0)