Skip to content

Commit

Permalink
Merge pull request #19724 from prezha/autoupdate-kube-vip
Browse files Browse the repository at this point in the history
HA (multi-control plane): Automate kube-vip version update
  • Loading branch information
spowelljr authored Sep 30, 2024
2 parents 2129659 + 3f50524 commit 07a4532
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 2 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/update-kube-vip-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: "update-kube-vip-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.0'
permissions:
contents: read

jobs:
bump-kube-vip-version:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
go-version: ${{env.GO_VERSION}}
- name: Bump kube-vip version
id: bumpKubeVip
run: |
echo "OLD_VERSION=$(DEP=kube-vip make get-dependency-version)" >> "$GITHUB_OUTPUT"
make update-kube-vip-version
echo "NEW_VERSION=$(DEP=kube-vip 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<<EOF" >> "$GITHUB_OUTPUT"
echo "$(git status --porcelain)" >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
- name: Create PR
if: ${{ steps.bumpKubeVip.outputs.changes != '' }}
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f
with:
token: ${{ secrets.MINIKUBE_BOT_PAT }}
commit-message: 'HA (multi-control plane): Update kube-vip from ${{ steps.bumpKubeVip.outputs.OLD_VERSION }} to ${{ steps.bumpKubeVip.outputs.NEW_VERSION }}'
committer: minikube-bot <[email protected]>
author: minikube-bot <[email protected]>
branch: auto_bump_kube_vip_version
push-to-fork: minikube-bot/minikube
base: master
delete-branch: true
title: 'HA (multi-control plane): Update kube-vip from ${{ steps.bumpKubeVip.outputs.OLD_VERSION }} to ${{ steps.bumpKubeVip.outputs.NEW_VERSION }}'
labels: ok-to-test
body: |
The kube-vip project released a [new version](https://github.com/kube-vip/kube-vip)
This PR was auto-generated by `make update-kube-vip-version` using [update-kube-vip-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-kube-vip-version.yml) CI Workflow.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1255,3 +1255,8 @@ get-dependency-version:
.PHONY: generate-licenses
generate-licenses:
./hack/generate_licenses.sh

.PHONY: update-kube-vip-version
update-kube-vip-version:
(cd hack/update/kube_vip_version && \
go run update_kube_vip_version.go)
1 change: 1 addition & 0 deletions hack/update/get_version/get_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ var dependencies = map[string]dependency{
"istio-operator": {addonsFile, `istio/operator:(.*)@`},
"kindnetd": {"pkg/minikube/bootstrapper/images/images.go", `kindnetd:(.*)"`},
"kong": {addonsFile, `kong:(.*)@`},
"kube-vip": {"pkg/minikube/cluster/ha/kube-vip/kube-vip.go", `image: ghcr.io/kube-vip/kube-vip:(.*)`},
"volcano": {addonsFile, `volcanosh/vc-webhook-manager:(.*)@`},
"kong-ingress-controller": {addonsFile, `kong/kubernetes-ingress-controller:(.*)@`},
"kubectl": {addonsFile, `bitnami/kubectl:(.*)@`},
Expand Down
62 changes: 62 additions & 0 deletions hack/update/kube_vip_version/update_kube_vip_version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
Copyright 2024 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"
"time"

"k8s.io/klog/v2"

"k8s.io/minikube/hack/update"
)

const (
// default context timeout
cxTimeout = 5 * time.Minute
)

var (
schema = map[string]update.Item{
"pkg/minikube/cluster/ha/kube-vip/kube-vip.go": {
Replace: map[string]string{
`image: ghcr.io/kube-vip/kube-vip:.*`: `image: ghcr.io/kube-vip/kube-vip:{{.StableVersion}}`,
},
},
}
)

// Data holds stable kube-vip version in semver format.
type Data struct {
StableVersion string
}

func main() {
// set a context with defined timeout
ctx, cancel := context.WithTimeout(context.Background(), cxTimeout)
defer cancel()

// get kube-vip stable version
stable, err := update.StableVersion(ctx, "kube-vip", "kube-vip")
if err != nil {
klog.Fatalf("Unable to get kube-vip stable version: %v", err)
}
data := Data{StableVersion: stable}
klog.Infof("kube-vip stable version: %s", stable)

update.Apply(schema, data)
}
4 changes: 2 additions & 2 deletions pkg/minikube/cluster/ha/kube-vip/kube-vip.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import (
const Manifest = "kube-vip.yaml"

// KubeVipTemplate is kube-vip static pod config template
// ref: https://kube-vip.io/docs/installation/static/
// update: regenerate with:
// ref: https://kube-vip.io/docs/installation/static/#generating-a-manifest
// note: to check if the latest kube-vip version introduces any significant changes, compare the current one with a latest default manifest generated with:
//
// export KVVERSION=$(curl -sL https://api.github.com/repos/kube-vip/kube-vip/releases | jq -r ".[0].name")
// docker run --rm ghcr.io/kube-vip/kube-vip:$KVVERSION manifest pod --interface eth0 --address 192.168.42.17 --controlplane --arp --leaderElection
Expand Down

0 comments on commit 07a4532

Please sign in to comment.