minikube/hack/update/cri-o_version/update_cri-o_version.go

115 lines
3.0 KiB
Go

/*
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"
"crypto/sha256"
"fmt"
"io"
"net/http"
"os"
"strings"
"time"
"golang.org/x/mod/semver"
"k8s.io/klog/v2"
"k8s.io/minikube/hack/update"
)
const cxTimeout = 5 * time.Minute
var (
schema = map[string]update.Item{
"deploy/iso/minikube-iso/package/crio-bin/crio-bin.mk": {
Replace: map[string]string{
`CRIO_BIN_VERSION = .*`: `CRIO_BIN_VERSION = {{.Version}}`,
`CRIO_BIN_COMMIT = .*`: `CRIO_BIN_COMMIT = {{.Commit}}`,
},
},
"deploy/kicbase/Dockerfile": {
Replace: map[string]string{
`ARG CRIO_VERSION=.*`: `ARG CRIO_VERSION="{{.MMVersion}}"`,
},
},
}
)
type Data struct {
Version string
MMVersion string
Commit string
}
func main() {
ctx, cancel := context.WithTimeout(context.Background(), cxTimeout)
defer cancel()
stable, _, _, err := update.GHReleases(ctx, "cri-o", "cri-o")
if err != nil {
klog.Fatalf("Unable to get cri-o stable version: %v", err)
}
mmVersion := strings.TrimPrefix(semver.MajorMinor(stable.Tag), "v")
data := Data{Version: stable.Tag, MMVersion: mmVersion, Commit: stable.Commit}
update.Apply(schema, data)
if err := updateHashFile(data.Version); err != nil {
klog.Fatalf("failed to update hash file: %v", err)
}
}
func updateHashFile(version string) error {
filePath := "../../../deploy/iso/minikube-iso/package/crio-bin/crio-bin.hash"
b, err := os.ReadFile(filePath)
if err != nil {
return fmt.Errorf("failed to read hash file: %v", err)
}
if strings.Contains(string(b), version) {
klog.Infof("hash file already contains %q", version)
return nil
}
r, err := http.Get(fmt.Sprintf("https://github.com/cri-o/cri-o/archive/%s.tar.gz", version))
if err != nil {
return fmt.Errorf("failed to download source code: %v", err)
}
defer r.Body.Close()
b, err = io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("failed to read response body: %v", err)
}
sum := sha256.Sum256(b)
b, err = os.ReadFile(filePath)
if err != nil {
return fmt.Errorf("failed to read hash file: %v", err)
}
if strings.Contains(string(b), version) {
klog.Infof("hash file already contains %q", version)
return nil
}
f, err := os.OpenFile(filePath, os.O_APPEND|os.O_WRONLY, 0644)
if err != nil {
return fmt.Errorf("failed to open hash file: %v", err)
}
defer f.Close()
if _, err := f.WriteString(fmt.Sprintf("sha256 %x %s.tar.gz\n", sum, version)); err != nil {
return fmt.Errorf("failed to write to hash file: %v", err)
}
return nil
}