Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate coredns version bumps with updatecli #11482

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions updatecli/updatecli.d/coredns.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: "Bump CoreDNS Image Version"
scms:
k3s:
kind: "github"
spec:
user: "{{ .github.user }}"
email: "{{ .github.email }}"
username: "{{ .github.username }}"
token: "{{ requiredEnv .github.token }}"
owner: "{{ .k3s.org }}"
repository: "{{ .k3s.repo }}"
branch: "{{ .k3s.branch }}"
commitmessage:
title: "Bump rancher/mirrored-coredns-coredns image version"

actions:
github:
title: "Bump rancher/mirrored-coredns-coredns image version"
kind: "github/pullrequest"
scmid: "k3s"
spec:
automerge: false
mergemethod: "squash"
labels:
- "dependencies"

sources:
# Retrieve the latest tag from the rancher/mirrored-coredns-coredns repository
coredns-docker-image:
name: "Check CoreDNS image tag in DockerHub"
kind: "dockerimage"
spec:
image: "rancher/mirrored-coredns-coredns"
versionfilter:
kind: "semver"
strict: true
transformers:
- find: '\d+\.\d+\.\d+'

get-pwd:
name: "Run Updatecli execution directory"
kind: "shell"
spec:
command: 'pwd'
environments:
- name: PATH

conditions:
docker-image:
name: "Check latest image tag for rancher/mirrored-coredns-coredns"
kind: "dockerimage"
disablesourceinput: true
spec:
image: "rancher/mirrored-coredns-coredns"
tag: '{{ source "coredns-docker-image" }}'

targets:
coredns-manifest:
name: "Update CoreDNS image version in manifests/coredns.yaml"
kind: "file"
scmid: "k3s"
disablesourceinput: true
spec:
files:
- "manifests/coredns.yaml"
matchpattern: 'image: "%{SYSTEM_DEFAULT_REGISTRY}%rancher/mirrored-coredns-coredns:\S+"'
replacepattern: 'image: "%{SYSTEM_DEFAULT_REGISTRY}%rancher/mirrored-coredns-coredns:{{ source "coredns-docker-image" }}"'

coredns-airgap:
name: "Update CoreDNS image version in scripts/airgap/image-list"
kind: "file"
scmid: "k3s"
disablesourceinput: true
spec:
files:
- "scripts/airgap/image-list.txt"
matchpattern: 'docker.io/rancher/mirrored-coredns-coredns:\S+'
replacepattern: 'docker.io/rancher/mirrored-coredns-coredns:{{ source "coredns-docker-image" }}'

go-generate:
name: "Run go generate"
kind: "shell"
sourceid: "get-pwd"
spec:
command: '{{ source "get-pwd" }}/updatecli/scripts/run-go-generate.sh'
environments:
- name: PATH
- name: HOME
Loading