KubeOS: remove grub2 legacy install, add error handling for opstype and add entry for unit test in Makefile
Remove grub2 install for legacy setup to fix failure of x86 vm images building. Add the error handling of the abnormal value of the opstype. Add an entry for unit testing in Makefile. Signed-off-by: liyuanr <liyuanrong1@huawei.com>
This commit is contained in:
parent
dcbc7f8199
commit
64e9a50d08
104
0006-KubeOS-remove-grub2-legacy-install-add-error-handlin.patch
Normal file
104
0006-KubeOS-remove-grub2-legacy-install-add-error-handlin.patch
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
From d638f26cdf8f22b258e97baec83a261a2de315ee Mon Sep 17 00:00:00 2001
|
||||||
|
From: liyuanr <liyuanrong1@huawei.com>
|
||||||
|
Date: Tue, 29 Nov 2022 16:39:20 +0800
|
||||||
|
Subject: [PATCH] KubeOS: remove grub2 legacy install, add error handling for
|
||||||
|
opstype and add entry for unit test in Makefile
|
||||||
|
|
||||||
|
Remove grub2 install for legacy setup to fix failure of x86
|
||||||
|
vm images building. Add the error handling of the abnormal value
|
||||||
|
of the opstype. Add an entry for unit testing in Makefile.
|
||||||
|
|
||||||
|
Signed-off-by: liyuanr <liyuanrong1@huawei.com>
|
||||||
|
---
|
||||||
|
Makefile | 3 +++
|
||||||
|
cmd/agent/server/docker_image_test.go | 21 ---------------------
|
||||||
|
cmd/proxy/controllers/os_controller.go | 3 +++
|
||||||
|
scripts/bootloader.sh | 8 --------
|
||||||
|
4 files changed, 6 insertions(+), 29 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index 38cc2ce..9d9fbea 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -50,6 +50,9 @@ agent:
|
||||||
|
${ENV} ${GO_BUILD} -tags "osusergo netgo static_build" -ldflags '$(LDFLAGS)' $(BUILDFLAGS) -o bin/os-agent cmd/agent/main.go
|
||||||
|
strip bin/os-agent
|
||||||
|
|
||||||
|
+test:
|
||||||
|
+ $(GO) test $(shell go list ./... ) -race -cover -count=1 -timeout=300s
|
||||||
|
+
|
||||||
|
# Install CRDs into a cluster
|
||||||
|
install: manifests
|
||||||
|
kubectl apply -f confg/crd
|
||||||
|
diff --git a/cmd/agent/server/docker_image_test.go b/cmd/agent/server/docker_image_test.go
|
||||||
|
index cc77a2b..9987939 100644
|
||||||
|
--- a/cmd/agent/server/docker_image_test.go
|
||||||
|
+++ b/cmd/agent/server/docker_image_test.go
|
||||||
|
@@ -52,24 +52,3 @@ func TestpullOSImage(t *testing.T) {
|
||||||
|
}
|
||||||
|
defer os.RemoveAll("/persist")
|
||||||
|
}
|
||||||
|
-
|
||||||
|
-func TestrandStringBytesRmndr(t *testing.T) {
|
||||||
|
- type args struct {
|
||||||
|
- n int
|
||||||
|
- }
|
||||||
|
- tests := []struct {
|
||||||
|
- name string
|
||||||
|
- args args
|
||||||
|
- want string
|
||||||
|
- }{
|
||||||
|
- {name: "normal", args: args{n: 6}, want: ""},
|
||||||
|
- }
|
||||||
|
- for _, tt := range tests {
|
||||||
|
- t.Run(tt.name, func(t *testing.T) {
|
||||||
|
- if got := randStringBytesRmndr(tt.args.n); got == "" {
|
||||||
|
- t.Errorf("randStringBytesRmndr() not generatre random string")
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- })
|
||||||
|
- }
|
||||||
|
-}
|
||||||
|
diff --git a/cmd/proxy/controllers/os_controller.go b/cmd/proxy/controllers/os_controller.go
|
||||||
|
index 09e58f9..fdd31ea 100644
|
||||||
|
--- a/cmd/proxy/controllers/os_controller.go
|
||||||
|
+++ b/cmd/proxy/controllers/os_controller.go
|
||||||
|
@@ -15,6 +15,7 @@ package controllers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
+ "fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
corev1 "k8s.io/api/core/v1"
|
||||||
|
@@ -123,6 +124,8 @@ func (r *OSReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Re
|
||||||
|
if err := r.Connection.RollbackSpec(); err != nil {
|
||||||
|
return values.RequeueNow, err
|
||||||
|
}
|
||||||
|
+ default:
|
||||||
|
+ return values.RequeueNow, fmt.Errorf("operation %s cannot be recognized", opsType)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return values.Requeue, nil
|
||||||
|
diff --git a/scripts/bootloader.sh b/scripts/bootloader.sh
|
||||||
|
index 5760f3d..16c5713 100644
|
||||||
|
--- a/scripts/bootloader.sh
|
||||||
|
+++ b/scripts/bootloader.sh
|
||||||
|
@@ -6,14 +6,6 @@ ARCH=`arch`
|
||||||
|
|
||||||
|
function install_grub2_x86 ()
|
||||||
|
{
|
||||||
|
- # make boot.img/core.img and setup, to support legacy boot mode
|
||||||
|
- GRUBNAME=$(which grub2-install)
|
||||||
|
- echo "Installing GRUB2..."
|
||||||
|
- GRUB_OPTS=${GRUB_OPTS:-"--force"}
|
||||||
|
- GRUB_OPTS="$GRUB_OPTS --target=i386-pc"
|
||||||
|
-
|
||||||
|
- $GRUBNAME --modules="biosdisk part_msdos" $GRUB_OPTS $DEVICE
|
||||||
|
-
|
||||||
|
# make efi file, and save in FAT16 partition, to support UEFI boot mode
|
||||||
|
cp -r /usr/lib/grub/x86_64-efi boot/efi/EFI/openEuler
|
||||||
|
eval "grub2-mkimage -d /usr/lib/grub/x86_64-efi -O x86_64-efi --output=/boot/efi/EFI/openEuler/grubx64.efi '--prefix=(,gpt1)/EFI/openEuler' fat part_gpt part_msdos linux"
|
||||||
|
--
|
||||||
|
2.37.1.windows.1
|
||||||
|
|
||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: KubeOS
|
Name: KubeOS
|
||||||
Version: 1.0.2
|
Version: 1.0.2
|
||||||
Release: 6
|
Release: 7
|
||||||
Summary: O&M platform used to update the whole OS as an entirety
|
Summary: O&M platform used to update the whole OS as an entirety
|
||||||
License: Mulan PSL v2
|
License: Mulan PSL v2
|
||||||
Source0: https://gitee.com/openeuler/KubeOS/repository/archive/v%{version}.tar.gz
|
Source0: https://gitee.com/openeuler/KubeOS/repository/archive/v%{version}.tar.gz
|
||||||
@ -11,6 +11,7 @@ Patch2: 0002-KubeOS-fix-the-kbimg.sh-exception-and-pxe-installati.patch
|
|||||||
Patch3: 0003-KubeOS-fixed-the-issue-of-VMs-images-and-add-check-o.patch
|
Patch3: 0003-KubeOS-fixed-the-issue-of-VMs-images-and-add-check-o.patch
|
||||||
Patch4: 0004-KubeOS-add-the-clearing-of-space-before-the-upgrade-.patch
|
Patch4: 0004-KubeOS-add-the-clearing-of-space-before-the-upgrade-.patch
|
||||||
Patch5: 0005-KubeOS-add-the-configuration-of-etc-resolv.conf-and-.patch
|
Patch5: 0005-KubeOS-add-the-configuration-of-etc-resolv.conf-and-.patch
|
||||||
|
Patch6: 0006-KubeOS-remove-grub2-legacy-install-add-error-handlin.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: golang >= 1.13
|
BuildRequires: golang >= 1.13
|
||||||
@ -111,6 +112,12 @@ install -p -m 0600 ./files/os-release %{buildroot}/opt/kubeOS/files
|
|||||||
rm -rfv %{buildroot}
|
rm -rfv %{buildroot}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 29 2022 liyuanrong<liyuanrong1@huawei.com> - 1.0.2-7
|
||||||
|
- Type:requirement
|
||||||
|
- CVE:NA
|
||||||
|
- SUG:restart
|
||||||
|
- DESC:remove grub2 legacy install, add error handling for opstype and add entry for unit test in Makefile
|
||||||
|
|
||||||
* Sat Sep 03 2022 liyuanrong<liyuanrong1@huawei.com> - 1.0.2-6
|
* Sat Sep 03 2022 liyuanrong<liyuanrong1@huawei.com> - 1.0.2-6
|
||||||
- Type:requirement
|
- Type:requirement
|
||||||
- CVE:NA
|
- CVE:NA
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user