From 926ecc48ac16ad48042ce68a32a44d821a9ecadb Mon Sep 17 00:00:00 2001 From: Joaquim Rocha Date: Fri, 7 Feb 2025 10:48:26 +0000 Subject: [PATCH] CI: Auto update Headlamp image Signed-off-by: Joaquim Rocha --- .github/workflows/update-headlamp-version.yml | 48 ++++++++++++++++ Makefile | 5 ++ .../update_headlamp_version.go | 57 +++++++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 .github/workflows/update-headlamp-version.yml create mode 100644 hack/update/headlamp_version/update_headlamp_version.go diff --git a/.github/workflows/update-headlamp-version.yml b/.github/workflows/update-headlamp-version.yml new file mode 100644 index 000000000000..baa23fa8af0f --- /dev/null +++ b/.github/workflows/update-headlamp-version.yml @@ -0,0 +1,48 @@ +name: "update-headlamp-version" +on: + workflow_dispatch: + schedule: + # every Monday at around 3 am pacific/10 am UTC + - cron: "0 10 * * 1" +env: + GOPROXY: https://proxy.golang.org + GO_VERSION: '1.23.4' +permissions: + contents: read + +jobs: + bump-headlamp-version: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a + with: + go-version: ${{env.GO_VERSION}} + - name: Bump Headlamp version + id: bumpHeadlamp + run: | + echo "OLD_VERSION=$(DEP=headlamp make get-dependency-version)" >> "$GITHUB_OUTPUT" + make update-headlamp-version + echo "NEW_VERSION=$(DEP=headlamp make get-dependency-version)" >> "$GITHUB_OUTPUT" + # The following is to support multiline with GITHUB_OUTPUT, see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings + echo "changes<> "$GITHUB_OUTPUT" + echo "$(git status --porcelain)" >> "$GITHUB_OUTPUT" + echo "EOF" >> "$GITHUB_OUTPUT" + - name: Create PR + if: ${{ steps.bumpHeadlamp.outputs.changes != '' }} + uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f + with: + token: ${{ secrets.MINIKUBE_BOT_PAT }} + commit-message: 'Addon Headlamp: Update Headlamp image from ${{ steps.bumpHeadlamp.outputs.OLD_VERSION }} to ${{ steps.bumpHeadlamp.outputs.NEW_VERSION }}' + committer: minikube-bot + author: minikube-bot + branch: auto_bump_headlamp_version + push-to-fork: minikube-bot/minikube + base: master + delete-branch: true + title: 'Addon Headlamp: Update Headlamp image from ${{ steps.bumpHeadlamp.outputs.OLD_VERSION }} to ${{ steps.bumpHeadlamp.outputs.NEW_VERSION }}' + labels: ok-to-test + body: | + The [Headlamp](https://github.com/headlamp-k8s/headlamp) project released a new Headlamp image + + This PR was auto-generated by `make update-headlamp-version` using [update-headlamp-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-headlamp-version.yml) CI Workflow. diff --git a/Makefile b/Makefile index 01ff5af1d3c3..ea899cb123c0 100644 --- a/Makefile +++ b/Makefile @@ -1265,6 +1265,11 @@ update-kube-registry-proxy-version: (cd hack/update/kube_registry_proxy_version && \ go run update_kube_registry_proxy_version.go) +.PHONY: update-headlamp-version +update-headlamp-version: + (cd hack/update/headlamp_version && \ + go run update_headlamp_version.go) + .PHONY: get-dependency-verison get-dependency-version: @(cd hack/update/get_version && \ diff --git a/hack/update/headlamp_version/update_headlamp_version.go b/hack/update/headlamp_version/update_headlamp_version.go new file mode 100644 index 000000000000..7fbd90b38829 --- /dev/null +++ b/hack/update/headlamp_version/update_headlamp_version.go @@ -0,0 +1,57 @@ +/* +Copyright 2023 The Kubernetes Authors All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package main + +import ( + "context" + "fmt" + "time" + + "k8s.io/klog/v2" + "k8s.io/minikube/hack/update" +) + +var schema = map[string]update.Item{ + "pkg/minikube/assets/addons.go": { + Replace: map[string]string{ + `headlamp-k8s/headlamp:.*`: `headlamp-k8s/headlamp:{{.Version}}@{{.SHA}}",`, + }, + }, +} + +type Data struct { + Version string + SHA string +} + +func main() { + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) + defer cancel() + + stable, _, _, err := update.GHReleases(ctx, "headlamp-k8s", "headlamp") + if err != nil { + klog.Fatalf("Unable to get stable version: %v", err) + } + sha, err := update.GetImageSHA(fmt.Sprintf("ghcr.io/headlamp-k8s/headlamp:%s", stable.Tag)) + if err != nil { + klog.Fatalf("failed to get image SHA: %v", err) + } + + data := Data{Version: stable.Tag, SHA: sha} + + update.Apply(schema, data) +}