Compare commits

...

20 Commits

Author SHA1 Message Date
e2b67b72a5 Revert "feat: remove sa2kubeconfig.sh aas vals support inCluster now"
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
ZeroDownTime/zdt-argocd/pipeline/tag This commit looks good
This reverts commit 1a7f4722dfa91f496c5c43d3385e4283c7c917c5.
2025-03-20 19:43:23 +00:00
66f6ef4548 Merge pull request 'chore(deps): update all non-major dependencies' (#7) from renovate/all-minor-patch into main
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
Reviewed-on: #7
2025-03-20 18:11:48 +00:00
c08a71b4a2 chore(deps): update all non-major dependencies
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/pr-main This commit looks good
2025-03-20 03:03:56 +00:00
1a7f4722df feat: remove sa2kubeconfig.sh aas vals support inCluster now
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
ZeroDownTime/zdt-argocd/pipeline/tag This commit looks good
2025-03-13 21:35:41 +00:00
ec91bd22ab Merge pull request 'chore(deps): update quay.io/argoproj/argocd docker tag to v2.14.5' (#6) from renovate/all-minor-patch into main
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
Reviewed-on: #6
2025-03-12 14:24:46 +00:00
6b83b07beb chore(deps): update quay.io/argoproj/argocd docker tag to v2.14.5 2025-03-12 03:03:20 +00:00
80f2a21ee7 Merge pull request 'chore(deps): update all non-major dependencies' (#5) from renovate/all-minor-patch into main
Reviewed-on: #5
2025-03-11 18:18:11 +00:00
93b3feebf9 chore(deps): update all non-major dependencies 2025-03-05 03:03:53 +00:00
f25689faca Merge pull request 'chore(deps): update all non-major dependencies' (#4) from renovate/all-minor-patch into main
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
ZeroDownTime/zdt-argocd/pipeline/tag This commit looks good
Reviewed-on: #4
2025-02-14 17:37:09 +00:00
f172103ecb chore(deps): update all non-major dependencies
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/pr-main This commit looks good
2025-02-12 03:08:18 +00:00
e5d463c166 docs: update README
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
ZeroDownTime/zdt-argocd/pipeline/tag This commit looks good
2024-12-06 13:24:03 +00:00
c0d707a803 Merge pull request 'chore(deps): update all non-major dependencies' (#2) from renovate/all-minor-patch into main
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
Reviewed-on: #2
2024-12-06 13:19:38 +00:00
948cf20953 chore(deps): update all non-major dependencies
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/pr-main This commit looks good
2024-12-06 13:17:15 +00:00
9ba0aa47f9 ci: more fixes to make renovate own the Dockerfile
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
2024-12-06 13:15:32 +00:00
1260dec927 ci: typo
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
2024-12-06 13:06:26 +00:00
f570e4e8b0 ci: setup renovate for all deps
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
2024-12-06 13:01:05 +00:00
c2cab78968 ci: fix branch name
All checks were successful
ZeroDownTime/zdt-argocd/pipeline/head This commit looks good
ZeroDownTime/zdt-argocd/pipeline/tag This commit looks good
2024-11-13 12:50:42 +00:00
239e3a28bb Merge latest ci-tools-lib
Some checks failed
ZeroDownTime/zdt-argocd/pipeline/head There was a failure building this commit
2024-11-13 12:50:14 +00:00
f699f77bbf Squashed '.ci/' changes from 06fcff5..3feaf6f
3feaf6f chore: migrate to main branch
a392836 feat: migrate all buildah cmds to podman only
d67a80e feat: make push and rm-image more resilient, prevent exit codes
8e202d4 fix: do not add non-existent images
6ef8d28 feat: ensure bash and safe exec

git-subtree-dir: .ci
git-subtree-split: 3feaf6fa96531b40c56945e3a7d6731f40bc52e2
2024-11-13 12:50:14 +00:00
b2bd5d87c3 feat: latest argocd, add sops binary
Some checks failed
ZeroDownTime/zdt-argocd/pipeline/tag There was a failure building this commit
2024-11-13 12:48:29 +00:00
5 changed files with 57 additions and 37 deletions

View File

@ -1,3 +1,13 @@
SHELL := bash
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
.SILENT: ; # no need for @
.ONESHELL: ; # recipes execute in same shell
.NOTPARALLEL: ; # wait for this target to finish
.EXPORT_ALL_VARIABLES: ; # send all vars to shell
.PHONY: all # All targets are accessible for user
.DEFAULT: help # Running Make will run the help target
# Parse version from latest git semver tag
GIT_TAG ?= $(shell git describe --tags --match v*.*.* 2>/dev/null || git rev-parse --short HEAD 2>/dev/null)
GIT_BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
@ -23,13 +33,6 @@ ifneq ($(TRIVY_REMOTE),)
TRIVY_OPTS ::= --server $(TRIVY_REMOTE)
endif
.SILENT: ; # no need for @
.ONESHELL: ; # recipes execute in same shell
.NOTPARALLEL: ; # wait for this target to finish
.EXPORT_ALL_VARIABLES: ; # send all vars to shell
.PHONY: all # All targets are accessible for user
.DEFAULT: help # Running Make will run the help target
help: ## Show Help
grep -E '^[a-zA-Z_-]+:.*?## .*$$' .ci/podman.mk | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@ -40,7 +43,7 @@ fmt:: ## auto format source
lint:: ## Lint source
build: ## Build the app
buildah build --rm --layers -t $(IMAGE):$(TAG)-$(_ARCH) --build-arg TAG=$(TAG) --build-arg ARCH=$(_ARCH) --platform linux/$(_ARCH) .
podman build --rm --layers -t $(IMAGE):$(TAG)-$(_ARCH) --build-arg TAG=$(TAG) --build-arg ARCH=$(_ARCH) --platform linux/$(_ARCH) .
test:: ## test built artificats
@ -51,16 +54,17 @@ scan: ## Scan image using trivy
# first tag and push all actual images
# create new manifest for each tag and add all available TAG-ARCH before pushing
push: ecr-login ## push images to registry
for t in $(TAG) latest $(EXTRA_TAGS); do \
for t in $(TAG) latest $(EXTRA_TAGS); do
echo "Tagging image with $(REGISTRY)/$(IMAGE):$${t}-$(ARCH)"
buildah tag $(IMAGE):$(TAG)-$(_ARCH) $(REGISTRY)/$(IMAGE):$${t}-$(_ARCH); \
buildah manifest rm $(IMAGE):$$t || true; \
buildah manifest create $(IMAGE):$$t; \
for a in $(ALL_ARCHS); do \
buildah manifest add $(IMAGE):$$t $(REGISTRY)/$(IMAGE):$(TAG)-$$a; \
done; \
podman tag $(IMAGE):$(TAG)-$(_ARCH) $(REGISTRY)/$(IMAGE):$${t}-$(_ARCH)
podman manifest rm $(IMAGE):$$t || true
podman manifest create $(IMAGE):$$t
for a in $(ALL_ARCHS); do
podman image exists $(REGISTRY)/$(IMAGE):$$t-$$a && \
podman manifest add $(IMAGE):$$t containers-storage:$(REGISTRY)/$(IMAGE):$$t-$$a
done
echo "Pushing manifest $(IMAGE):$$t"
buildah manifest push --all $(IMAGE):$$t docker://$(REGISTRY)/$(IMAGE):$$t; \
podman manifest push --all $(IMAGE):$$t docker://$(REGISTRY)/$(IMAGE):$$t
done
ecr-login: ## log into AWS ECR public
@ -73,14 +77,15 @@ rm-remote-untagged: ## delete all remote untagged and in-dev images, keep 10 tag
clean:: ## clean up source folder
rm-image:
for t in $(TAG) latest $(EXTRA_TAGS); do \
test -z "$$(podman image ls -q $(IMAGE):$${t}-$(_ARCH))" || podman image rm -f $(IMAGE):$${t}-$(_ARCH); \
test -z "$$(podman image ls -q $(IMAGE):$${t})" || podman image rm -f $(IMAGE):$${t}; \
for t in $(TAG) latest $(EXTRA_TAGS); do
for a in $(ALL_ARCHS); do
podman image exists $(IMAGE):$$t-$$a && podman image rm -f $(IMAGE):$$t-$$a || true
done
done
## some useful tasks during development
ci-pull-upstream: ## pull latest shared .ci subtree
git subtree pull --prefix .ci ssh://git@git.zero-downtime.net/ZeroDownTime/ci-tools-lib.git master --squash -m "Merge latest ci-tools-lib"
git subtree pull --prefix .ci ssh://git@git.zero-downtime.net/ZeroDownTime/ci-tools-lib.git main --squash -m "Merge latest ci-tools-lib"
create-repo: ## create new AWS ECR public repository
aws ecr-public create-repository --repository-name $(IMAGE) --region $(REGION)

View File

@ -1,11 +1,15 @@
ARG ARGOCD_VERSION="v2.12.4"
FROM quay.io/argoproj/argocd:$ARGOCD_VERSION
FROM quay.io/argoproj/argocd:v2.14.7
# renovate: datasource=github-releases depName=sops packageName=getsops/sops
ARG SOPS_VERSION=v3.9.4
# renovate: datasource=github-releases depName=vals packageName=helmfile/vals
ARG VALS_VERSION=v0.39.4
# renovate: datasource=github-releases depName=helm-secrets packageName=jkroepke/helm-secrets
ARG HELM_SECRETS_VERSION=v4.6.3
ARG SOPS_VERSION="3.9.1"
ARG VALS_VERSION="0.37.6"
ARG HELM_SECRETS_VERSION="4.6.2"
ARG ARGOCD_USER_ID="999"
# vals or sops
# set Vals
ENV HELM_SECRETS_BACKEND="vals" \
HELM_SECRETS_HELM_PATH=/usr/local/bin/helm \
HELM_PLUGINS="/home/argocd/.local/share/helm/plugins/" \
@ -24,12 +28,12 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# sops backend installation (optional)
#RUN curl -fsSL https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux.amd64 \
# -o /usr/local/bin/sops && chmod +x /usr/local/bin/sops
# sops (use via vals!)
RUN curl -fsSL https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 \
-o /usr/local/bin/sops && chmod +x /usr/local/bin/sops
# vals backend installation (optional)
RUN curl -fsSL https://github.com/helmfile/vals/releases/download/v${VALS_VERSION}/vals_${VALS_VERSION}_linux_amd64.tar.gz \
# vals backend installation
RUN curl -fsSL https://github.com/helmfile/vals/releases/download/${VALS_VERSION}/vals_${VALS_VERSION#v}_linux_amd64.tar.gz \
| tar xzf - -C /usr/local/bin/ vals \
&& chmod +x /usr/local/bin/vals
@ -40,5 +44,5 @@ ADD sa2kubeconfig.sh /usr/local/bin/sa2kubeconfig.sh
USER ${ARGOCD_USER_ID}
RUN helm plugin install --version ${HELM_SECRETS_VERSION} https://github.com/jkroepke/helm-secrets
RUN helm plugin install --version ${HELM_SECRETS_VERSION#v} https://github.com/jkroepke/helm-secrets
RUN mkdir -p /home/argocd/.kube && sed -i -e 's/secrets/secrets --evaluate-templates/' "$(helm env HELM_PLUGINS)/helm-secrets/scripts/wrapper/helm.sh"

2
Jenkinsfile vendored
View File

@ -1,4 +1,4 @@
library identifier: 'zdt-lib@master', retriever: modernSCM(
library identifier: 'zdt-lib@main', retriever: modernSCM(
[$class: 'GitSCMSource',
remote: 'https://git.zero-downtime.net/ZeroDownTime/ci-tools-lib.git'])

View File

@ -1,10 +1,11 @@
# zdt-argocd
Customize ArgoCD image for KubeZero
Customized ArgoCD image for KubeZero
## Changes
- added helm-secrets
- added vals
- added sops, helm-secrets and vals binaries
- configured helm-secrets to use vals backend
- init script to allow vals to access the local cluster Kube API using Argo's SA account to eg. lookup values from a central secret
## Credits:
- https://github.com/jkroepke/helm-secrets/wiki/ArgoCD-Integration#option-1-custom-docker-image

View File

@ -6,5 +6,15 @@
":semanticCommits",
"group:allNonMajor"
],
"prHourlyLimit": 0
"prHourlyLimit": 0,
"customManagers": [
{
"customType": "regex",
"description": "Update _VERSION variables in Dockerfiles",
"fileMatch": ["(^|/|\\.)Dockerfile$", "(^|/)Dockerfile\\.[^/]*$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
]
}
]
}