-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-1: Release/v1.0.0: first release (#1)
# PR-1: Release/v1.0.0: first release ## v1.0.0 - 2024-04-10 ### What's Changed **Full Changelog**: https://github.com/obervinov/images/commits/v1.0.0 #### 💥 Breaking Changes * repository: Initial commit.
- Loading branch information
obervinov
authored
Apr 10, 2024
1 parent
7f6ea0d
commit cfac872
Showing
12 changed files
with
71 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,10 @@ on: | |
|
||
jobs: | ||
changelog: | ||
uses: obervinov/_templates/.github/workflows/changelog.yaml@release/v1.1.0 | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
readme: | ||
uses: obervinov/_templates/.github/workflows/readme.yaml@release/v1.1.0 | ||
# readme: | ||
# uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
images: | ||
uses: obervinov/_templates/.github/workflows/images.yaml@release/v1.1.0 | ||
uses: obervinov/_templates/.github/workflows/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,14 @@ on: | |
|
||
jobs: | ||
changelog: | ||
uses: obervinov/_templates/.github/workflows/changelog.yaml@release/v1.1.0 | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
readme: | ||
uses: obervinov/_templates/.github/workflows/readme.yaml@release/v1.1.0 | ||
# readme: | ||
# uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
images: | ||
uses: obervinov/_templates/.github/workflows/images.yaml@release/v1.1.0 | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
create-release: | ||
uses: obervinov/_templates/.github/workflows/release.yaml@release/v1.1.0 | ||
needs: [changelog, readme, images] | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
needs: [changelog, images] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule release-cli
deleted from
bd90d2
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM gradle:alpine | ||
|
||
ENV VAULT_VERSION=1.16.1 | ||
|
||
LABEL org.opencontainers.image.description "This image contains ci utilities for building gradle projects" | ||
LABEL org.opencontainers.image.url https://github.com/obervinov/images/docker/gradle-ci | ||
LABEL org.opencontainers.image.documentation https://github.com/obervinov/images/docker/gradle-ci/README.md | ||
LABEL org.opencontainers.image.authors https://github.com/obervinov | ||
LABEL org.opencontainers.image.source https://github.com/obervinov/images | ||
LABEL org.opencontainers.image.version v1.0.0 | ||
|
||
# Install dependencies | ||
RUN apk add --no-cache \ | ||
curl \ | ||
openssl \ | ||
bash | ||
|
||
# Install vault client | ||
RUN apk add --update --virtual .deps --no-cache gnupg && \ | ||
cd /tmp && \ | ||
wget https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip && \ | ||
wget https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS && \ | ||
wget https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS.sig && \ | ||
wget -qO- https://www.hashicorp.com/.well-known/pgp-key.txt | gpg --import && \ | ||
gpg --verify vault_${VAULT_VERSION}_SHA256SUMS.sig vault_${VAULT_VERSION}_SHA256SUMS && \ | ||
grep vault_${VAULT_VERSION}_linux_amd64.zip vault_${VAULT_VERSION}_SHA256SUMS | sha256sum -c && \ | ||
unzip /tmp/vault_${VAULT_VERSION}_linux_amd64.zip -d /tmp && \ | ||
mv /tmp/vault /usr/local/bin/vault && \ | ||
rm -f /tmp/vault_${VAULT_VERSION}_linux_amd64.zip vault_${VAULT_VERSION}_SHA256SUMS ${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS.sig && \ | ||
apk del .deps | ||
|
||
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \ | ||
chmod +x kubectl && \ | ||
mkdir -p ~/.local/bin && \ | ||
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl | ||
|
||
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && \ | ||
chmod 700 get_helm.sh && \ | ||
./get_helm.sh |
File renamed without changes.