diff --git a/Dockerfile b/Dockerfile index ed11808da2b2ed0c8410dbc9050b7a3d528b4ab4..a1f062e286e589061c900446b9693cff7906a843 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG BASE_REGISTRY=registry1.dsop.io ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8 ARG BASE_TAG=8.3 -FROM ghcr.io/fluxcd/kustomize-controller:v0.2.1 as builder +FROM ghcr.io/fluxcd/kustomize-controller:v0.4.0 as builder FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} @@ -13,7 +13,7 @@ LABEL maintainer="ironbank@dsop.io" \ org.opencontainers.image.description="The kustomize-controller is a Kubernetes operator, specialized in running continuous delivery pipelines for infrastructure and workloads defined with Kubernetes manifests and assembled with Kustomize." \ org.opencontainers.image.licenses="Apache-2.0" \ org.opencontainers.image.url="https://repo1.dsop.io/dsop/fluxcd/kustomize-controller" \ - org.opencontainers.image.version="v0.2.1" + org.opencontainers.image.version="v0.4.0" COPY tini-amd64 /sbin/tini diff --git a/Jenkinsfile b/Jenkinsfile index 7553007c80ac03598ae5aa0ab8e8e888140ecee9..b92d231fb1ba052abb381b23ec5b51fac30713b3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,2 +1,2 @@ @Library('DCCSCR@master') _ -dccscrPipeline( version: "v0.2.1" ) \ No newline at end of file +dccscrPipeline( version: "v0.4.0" ) \ No newline at end of file diff --git a/download.yaml b/download.yaml index 51bc715daf2b7d3f76e7c773ee93b4b57788f6c5..af6b143eaa2dff7ab69af673caff26a05530e1fd 100644 --- a/download.yaml +++ b/download.yaml @@ -1,7 +1,7 @@ --- resources: - - url: docker://ghcr.io/fluxcd/kustomize-controller:v0.2.1 - tag: ghcr.io/fluxcd/kustomize-controller:v0.2.1 + - url: docker://ghcr.io/fluxcd/kustomize-controller:v0.4.0 + tag: ghcr.io/fluxcd/kustomize-controller:v0.4.0 - url: https://github.com/krallin/tini/releases/download/v0.19.0/tini-amd64 filename: tini-amd64 diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000000000000000000000000000000000..329efe6d34aa3ac72f952c88656a9640f3a0e8bc --- /dev/null +++ b/renovate.json @@ -0,0 +1,23 @@ +{ + "assignees": ["@sean.melissari"], + "baseBranches": ["development"], + "regexManagers": [ + { + "fileMatch": ["^Dockerfile$"], + "matchStrings": [ + "version=\"(?.*?)\"" + ], + "depNameTemplate": "ghcr.io/fluxcd/kustomize-controller", + "datasourceTemplate": "docker" + }, + { + "fileMatch": ["^Jenkinsfile$"], + "matchStrings": [ + "version:\\s+\"(?.*?)\"" + ], + "depNameTemplate": "ghcr.io/fluxcd/kustomize-controller", + "datasourceTemplate": "docker" + } + ] + } + \ No newline at end of file