Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
eeec8ae7ab
!25 add loongarch64 support
From: @zhangxianting 
Reviewed-by: @pixiake 
Signed-off-by: @pixiake
2024-07-17 02:10:38 +00:00
zhangxianting
c79e962ac9 add loongarch64 support 2024-06-28 18:46:08 +08:00
openeuler-ci-bot
f38a3dcba1
!20 Add secure compilation parameters
From: @pixiake 
Reviewed-by: @calvinyu 
Signed-off-by: @calvinyu
2023-03-14 09:12:29 +00:00
pixiake
6ee85c95d8 Add secure compilation parameters
Signed-off-by: pixiake <guofeng@yunify.com>
2023-03-14 17:00:37 +08:00
openeuler-ci-bot
db38840da5
!16 update version to v3.0.7
From: @pixiake 
Reviewed-by: @calvinyu 
Signed-off-by: @calvinyu
2023-03-13 10:29:02 +00:00
pixiake
579a59f93c update to latest version v3.0.7
Signed-off-by: pixiake <guofeng@yunify.com>
2023-03-13 17:53:31 +08:00
openeuler-ci-bot
b1ad885037
!15 fix: delete k3s cluster with kubenetes version
From: @chenmaodong 
Reviewed-by: @pixiake 
Signed-off-by: @pixiake
2023-03-13 08:14:20 +00:00
chenmaodong
3907126fe0 fix: delete k3s cluster with kubenetes version
Signed-off-by: chenmaodong <chenmaodong@xfusion.com>
2023-01-06 15:56:50 +08:00
openeuler-ci-bot
c5cb31e82d
!14 fix invalid syntax of /etc/sysctl.conf after executing init os script
From: @chenmaodong 
Reviewed-by: @wanglmb 
Signed-off-by: @wanglmb
2022-12-29 12:41:36 +00:00
chenmaodong
69cc390fc9 fix invalid syntax of /etc/sysctl.conf after executing init os script
Signed-off-by: chenmaodong <chenmaodong@xfusion.com>
2022-12-29 19:11:48 +08:00
3 changed files with 50 additions and 6 deletions

View File

@ -0,0 +1,29 @@
From ecd6f4d20ab403dd4203f6f79735fb036e3224b4 Mon Sep 17 00:00:00 2001
From: zhangxianting <zhangxianting@uniontech.com>
Date: Fri, 28 Jun 2024 18:06:45 +0800
Subject: [PATCH] add loongarch64 support
---
vendor/go.etcd.io/bbolt/bolt_loong64.go | 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 vendor/go.etcd.io/bbolt/bolt_loong64.go
diff --git a/vendor/go.etcd.io/bbolt/bolt_loongarch64.go b/vendor/go.etcd.io/bbolt/bolt_loongarch64.go
new file mode 100644
index 0000000..29bf04c
--- /dev/null
+++ b/vendor/go.etcd.io/bbolt/bolt_loong64.go
@@ -0,0 +1,10 @@
+//go:build loong64
+// +build loong64
+
+package bbolt
+
+// maxMapSize represents the largest mmap size supported by Bolt.
+const maxMapSize = 0xFFFFFFFFFFFF // 256TB
+
+// maxAllocSize is the size used when creating array pointers.
+const maxAllocSize = 0x7FFFFFFF
--
2.43.0

View File

@ -2,13 +2,13 @@
Name: kubekey
Summary: Install Kubernetes/K3s only, both Kubernetes/K3s and KubeSphere, and related cloud-native add-ons, it supports all-in-one, multi-node, and HA.
Version: v2.2.2
Release: 1
Version: v3.0.7
Release: 3
License: Apache-2.0
URL: https://github.com/kubesphere/kubekey
Source0: https://github.com/kubesphere/kubekey/releases/download/%{version}-openEuler/kubekey-%{version}.tar.gz
Patch0: 0001-add-loongarch64-support.patch
BuildRequires: git go
Requires: socat
Requires: conntrack
@ -19,20 +19,35 @@ Install Kubernetes/K3s only, both Kubernetes/K3s and KubeSphere, and related clo
%prep
%setup
%autosetup -p1
%build
bash -x build.sh -p
make kk
%install
mkdir -p $RPM_BUILD_ROOT/usr/local/bin
cp output/kk $RPM_BUILD_ROOT/usr/local/bin
cp bin/kk $RPM_BUILD_ROOT/usr/local/bin
%files
/usr/local/bin/kk
%changelog
* Fri Jun 28 2024 zhangxianting <zhangxianting@uniontech.com> v3.0.7-3
- Add loongarch64 support
* Tue Mar 14 2023 guofeng <guofeng@yunify.com> v3.0.7-2
- Add secure compilation parameters
* Mon Mar 13 2023 guofeng <guofeng@yunify.com> v3.0.7-1
- update to latest version v3.0.7
* Fri Jan 06 2023 chenmaodong <chenmaodong@xfusion.com> v2.2.2-3
- fix: delete k3s cluster with kubenetes version
* Thu Dec 29 2022 chenmaodong <chenmaodong@xfusion.com> v2.2.2-2
- fix invalid syntax of /etc/sysctl.conf after executing init os script
* Mon Aug 8 2022 guofeng <guofeng@yunify.com> v2.2.2-1
- update to latest version v2.2.2