mirror of
https://github.com/labring/sealos.git
synced 2026-08-31 02:06:00 +08:00
feature(main): add kubernetes support and changelog (#2242)
* feature(main): add changelog Signed-off-by: cuisongliu <cuisongliu@qq.com> * feature(main): add changelogs Signed-off-by: cuisongliu <cuisongliu@qq.com> Signed-off-by: cuisongliu <cuisongliu@qq.com>
This commit is contained in:
@@ -12,12 +12,17 @@ on:
|
||||
- "docs/**"
|
||||
- "**/*.md"
|
||||
- "**/*.yaml"
|
||||
- "CONTRIBUTORS"
|
||||
- "CHANGELOG/**"
|
||||
pull_request:
|
||||
branches: ["*"]
|
||||
paths-ignore:
|
||||
- "docs/**"
|
||||
- "CHANGELOG/**"
|
||||
- "**/*.md"
|
||||
- "**/*.yaml"
|
||||
- "CONTRIBUTORS"
|
||||
- "CHANGELOG/**"
|
||||
|
||||
jobs:
|
||||
format-code:
|
||||
|
||||
@@ -0,0 +1,187 @@
|
||||
- [v4.0.0](#v400httpsgithubcomlabringsealosreleasestagv400)
|
||||
- [Downloads for v4.0.0](#downloads-for-v400)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.0.0-alpha.1](#changelog-since-v400-alpha1)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v4.0.0](https://github.com/labring/sealos/releases/tag/v4.0.0)
|
||||
|
||||
## Downloads for v4.0.0
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.0.0.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.0.0.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.0.0_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.0.0/sealos_4.0.0_linux_amd64.tar.gz) |
|
||||
[sealos_4.0.0_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.0.0/sealos_4.0.0_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.0.0/sealos_4.0.0_linux_amd64.tar.gz && \
|
||||
tar -zxvf sealos_4.0.0_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.0.0/sealos_4.0.0_linux_arm64.tar.gz && \
|
||||
tar -zxvf sealos_4.0.0_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.0.0-alpha.1
|
||||
|
||||
* refactor(master): support docs for sealos 4.0 by @cuisongliu in https://github.com/labring/sealos/pull/921
|
||||
* refactor(master): support docs for sealos 4.0 by @cuisongliu in https://github.com/labring/sealos/pull/922
|
||||
* refactor(master): add multi image module by @cuisongliu in https://github.com/labring/sealos/pull/923
|
||||
* refactor(master): add multi image and go func by @cuisongliu in https://github.com/labring/sealos/pull/924
|
||||
* refactor(master): add note by @cuisongliu in https://github.com/labring/sealos/pull/925
|
||||
* feature(main): add cmd feature for main branch by @cuisongliu in https://github.com/labring/sealos/pull/934
|
||||
* feature(main): fix release config by @cuisongliu in https://github.com/labring/sealos/pull/935
|
||||
* feature(main): fix release config by @cuisongliu in https://github.com/labring/sealos/pull/936
|
||||
* feature(main): add build cmd by @cuisongliu in https://github.com/labring/sealos/pull/937
|
||||
* feature(main): support skip error process by @cuisongliu in https://github.com/labring/sealos/pull/940
|
||||
* feature(main): cmd \n and process in pull images by @cuisongliu in https://github.com/labring/sealos/pull/944
|
||||
* feature(main): fix images build by @cuisongliu in https://github.com/labring/sealos/pull/945
|
||||
* feature(main): add patch package in run func by @cuisongliu in https://github.com/labring/sealos/pull/949
|
||||
* feature(main): add auths data by @cuisongliu in https://github.com/labring/sealos/pull/950
|
||||
* feature(main): sealos run repeat exec by @cuisongliu in https://github.com/labring/sealos/pull/952
|
||||
* feature(main): support auth build by @cuisongliu in https://github.com/labring/sealos/pull/954
|
||||
* feature(main): guest run in host cmd for bash by @cuisongliu in https://github.com/labring/sealos/pull/957
|
||||
* feature(main): no change images by @cuisongliu in https://github.com/labring/sealos/pull/956
|
||||
* bugfix by @cuisongliu in https://github.com/labring/sealos/pull/959
|
||||
* feature(main): fix #960 for controller and schedule bind 0.0.0.0 by @cuisongliu in https://github.com/labring/sealos/pull/961
|
||||
* feature(main): fix add feature and delete node feature by @cuisongliu in https://github.com/labring/sealos/pull/962
|
||||
* feature(main): kubeproxy bind by @cuisongliu in https://github.com/labring/sealos/pull/964
|
||||
* feature(main): 4.0 docs fix by @cuisongliu in https://github.com/labring/sealos/pull/965
|
||||
* feature(main): fix tag images by @cuisongliu in https://github.com/labring/sealos/pull/967
|
||||
* update readme by @fanux in https://github.com/labring/sealos/pull/968
|
||||
* add roadmap by @fanux in https://github.com/labring/sealos/pull/969
|
||||
* feature(main): fix vendor for sealos by @cuisongliu in https://github.com/labring/sealos/pull/970
|
||||
* feature(main): fix goinstall by @cuisongliu in https://github.com/labring/sealos/pull/971
|
||||
* feature(main): fix go release by @cuisongliu in https://github.com/labring/sealos/pull/972
|
||||
* feature(main): fix rename go mod by @cuisongliu in https://github.com/labring/sealos/pull/973
|
||||
* feature(main): fix images mount to status by @cuisongliu in https://github.com/labring/sealos/pull/974
|
||||
* add example for building cloudimage from helm by @fanux in https://github.com/labring/sealos/pull/978
|
||||
* feature(main): add ssh exec/copy feature by @cuisongliu in https://github.com/labring/sealos/pull/980
|
||||
* feature(main): rename sealyun to sealos.io by @cuisongliu in https://github.com/labring/sealos/pull/979
|
||||
* feature(main): fix install config by @cuisongliu in https://github.com/labring/sealos/pull/977
|
||||
* feature(main): fix scale check logic by @cuisongliu in https://github.com/labring/sealos/pull/981
|
||||
* feature: add list images using buildah by @whybeyoung in https://github.com/labring/sealos/pull/988
|
||||
* Fix #997 support arm64 using buildx by @whybeyoung in https://github.com/labring/sealos/pull/1003
|
||||
* feature: add pull commands using buildah #986 by @yyf1986 in https://github.com/labring/sealos/pull/1002
|
||||
* feature(main): fix buildah config sync problem by @cuisongliu in https://github.com/labring/sealos/pull/1006
|
||||
* feature: add pull commands using buildah #986 by @yyf1986 in https://github.com/labring/sealos/pull/1011
|
||||
* feature(main): http push registry by @cuisongliu in https://github.com/labring/sealos/pull/1009
|
||||
* feature(main): fix confirm bug by @cuisongliu in https://github.com/labring/sealos/pull/1008
|
||||
* feature(main): fix create check bug by @cuisongliu in https://github.com/labring/sealos/pull/1010
|
||||
* fix release workflows for arm64 by @whybeyoung in https://github.com/labring/sealos/pull/1014
|
||||
* feature: add push commands using buildah #986 by @yyf1986 in https://github.com/labring/sealos/pull/1015
|
||||
* modify pkg/guest/guest.go by @gebilxs in https://github.com/labring/sealos/pull/1020
|
||||
* feature: add login/logout commands using buildah #986 by @yyf1986 in https://github.com/labring/sealos/pull/1021
|
||||
* hotfix: port not default 22 by @cuisongliu in https://github.com/labring/sealos/pull/1026
|
||||
* fix: when operator the registry,defautl is tls_verify=false #986 by @yyf1986 in https://github.com/labring/sealos/pull/1029
|
||||
* feature(main): fix delete add node and skip error by @cuisongliu in https://github.com/labring/sealos/pull/1027
|
||||
* Fix: Release GIT AUTH TOKEN missing error fixed by @whybeyoung in https://github.com/labring/sealos/pull/1030
|
||||
* add create/delete/list/inspect commands using buildah #986 by @yyf1986 in https://github.com/labring/sealos/pull/1041
|
||||
* feature(main): fix add error send app images by @cuisongliu in https://github.com/labring/sealos/pull/1042
|
||||
* fix cross build arm ,using statically build by @whybeyoung in https://github.com/labring/sealos/pull/1045
|
||||
* add 4.0 readme by @fanux in https://github.com/labring/sealos/pull/1049
|
||||
* fix: arm64 cross netgo panic by @whybeyoung in https://github.com/labring/sealos/pull/1051
|
||||
* Fix: set default logurs log-level to warn by @whybeyoung in https://github.com/labring/sealos/pull/1046
|
||||
* fix build images tag not work by @whybeyoung in https://github.com/labring/sealos/pull/1054
|
||||
* fix release using wrong token by @whybeyoung in https://github.com/labring/sealos/pull/1057
|
||||
* feature(main): fix actions token by @cuisongliu in https://github.com/labring/sealos/pull/1058
|
||||
* update v4.0 README, add quickstart by @fanux in https://github.com/labring/sealos/pull/1053
|
||||
* Add v4.0 README in English by @SignorMercurio in https://github.com/labring/sealos/pull/1059
|
||||
* Using English readme instread Chinese by @fanux in https://github.com/labring/sealos/pull/1060
|
||||
* Update README.md by @yangchuansheng in https://github.com/labring/sealos/pull/1061
|
||||
* feature: add users and MAINTAINERS.md by @whybeyoung in https://github.com/labring/sealos/pull/1062
|
||||
* Update README.md by @yangchuansheng in https://github.com/labring/sealos/pull/1063
|
||||
* feature(main): fix check image type after image pull by @cuisongliu in https://github.com/labring/sealos/pull/1066
|
||||
* Add default registry mirror by @SignorMercurio in https://github.com/labring/sealos/pull/1069
|
||||
* add rust registry by @fanux in https://github.com/labring/sealos/pull/1072
|
||||
* feat: make cluster root dir customizable with root cmd flags (#995) by @SignorMercurio in https://github.com/labring/sealos/pull/1073
|
||||
* refactor: split ssh cmd into exec and scp (#996) by @SignorMercurio in https://github.com/labring/sealos/pull/1075
|
||||
* feature(main): rename image using default domain and namespace by @cuisongliu in https://github.com/labring/sealos/pull/1076
|
||||
* feat: support config override by @SignorMercurio in https://github.com/labring/sealos/pull/1080
|
||||
* feat: customize maximum goroutines for pulling by @SignorMercurio in https://github.com/labring/sealos/pull/1081
|
||||
* fix: remove max-pull-procs flag in BuildOptions.String() by @SignorMercurio in https://github.com/labring/sealos/pull/1082
|
||||
* fix: panic when building offline and syntax error in registry config by @SignorMercurio in https://github.com/labring/sealos/pull/1086
|
||||
* feat: CRI defaults to containerd by @SignorMercurio in https://github.com/labring/sealos/pull/1090
|
||||
* feature(main): refactor: split ssh cmd into exec and scp(#996) by @cuisongliu in https://github.com/labring/sealos/pull/1079
|
||||
* Modify characters in README.md by @Ficus-f in https://github.com/labring/sealos/pull/1093
|
||||
* feat: include .tmpl files when searching for images by @SignorMercurio in https://github.com/labring/sealos/pull/1096
|
||||
* fix sealos pull images default domain localhost to docker.io #1097 by @yyf1986 in https://github.com/labring/sealos/pull/1102
|
||||
* modify help by @gebilxs in https://github.com/labring/sealos/pull/1105
|
||||
* fix doc,add prefix labring by @yyf1986 in https://github.com/labring/sealos/pull/1103
|
||||
* Indicate fork the source code of sealer by @fanux in https://github.com/labring/sealos/pull/1112
|
||||
* add en-help by @gebilxs in https://github.com/labring/sealos/pull/1111
|
||||
* feature(main): fix build not running .yaml by @cuisongliu in https://github.com/labring/sealos/pull/1114
|
||||
* feature(main): support cache http registry #1022 by @cuisongliu in https://github.com/labring/sealos/pull/1116
|
||||
* update release note by @fanux in https://github.com/labring/sealos/pull/1118
|
||||
* add contributors by @gitccl in https://github.com/labring/sealos/pull/1120
|
||||
* add develop and contribute guide by @fanux in https://github.com/labring/sealos/pull/1124
|
||||
* feature(main): reset cluster fixd masters and nodes by @cuisongliu in https://github.com/labring/sealos/pull/1125
|
||||
* update readme arch link by @fanux in https://github.com/labring/sealos/pull/1127
|
||||
* fix: validate vip before initialization by @fengxsong in https://github.com/labring/sealos/pull/1130
|
||||
* docs(main): add oscs by @cuisongliu in https://github.com/labring/sealos/pull/1131
|
||||
* remove unuseful code by @gitccl in https://github.com/labring/sealos/pull/1134
|
||||
* docs: add more description for delete command by @gitccl in https://github.com/labring/sealos/pull/1135
|
||||
* feat: add create feature by @SignorMercurio in https://github.com/labring/sealos/pull/1138
|
||||
* docs: update issue templates to English by @gitccl in https://github.com/labring/sealos/pull/1139
|
||||
* Add rpm & deb build script with nfpm by @Vonng in https://github.com/labring/sealos/pull/1136
|
||||
* refactor: change "contants" to "constants" by @SignorMercurio in https://github.com/labring/sealos/pull/1142
|
||||
* ci: improve Makefile design by @SignorMercurio in https://github.com/labring/sealos/pull/1147
|
||||
* parse images in helm charts #1004 by @yyf1986 in https://github.com/labring/sealos/pull/1146
|
||||
* fix: build error in makefile by @SignorMercurio in https://github.com/labring/sealos/pull/1152
|
||||
* feature(main): sealos run not save clusterfile when init failed by @cuisongliu in https://github.com/labring/sealos/pull/1148
|
||||
* feat: support entrypoint in Dockerfile by @gitccl in https://github.com/labring/sealos/pull/1151
|
||||
* Update cmd typos to match unified code format. by @zzjin in https://github.com/labring/sealos/pull/1149
|
||||
* typo: fix typo clonne in develop guide by @th2zz in https://github.com/labring/sealos/pull/1164
|
||||
* docs: update go version by @Abingcbc in https://github.com/labring/sealos/pull/1174
|
||||
* Feat typo by @zzjin in https://github.com/labring/sealos/pull/1170
|
||||
* copy linux_amd64.yml&&linux_arm64.yml to scripts by @gebilxs in https://github.com/labring/sealos/pull/1167
|
||||
* update user design by @fanux in https://github.com/labring/sealos/pull/1117
|
||||
* Using module to simpler vsc source tree. Closes #1771 by @zzjin in https://github.com/labring/sealos/pull/1172
|
||||
* fix: fix bug in gen.clean and use local binaries for tools by @SignorMercurio in https://github.com/labring/sealos/pull/1181
|
||||
* feature(main): seactl - sealctl by @cuisongliu in https://github.com/labring/sealos/pull/1183
|
||||
* feature: sealos gen by @gitccl in https://github.com/labring/sealos/pull/1201
|
||||
* feature(main): generator code deepcopy by @cuisongliu in https://github.com/labring/sealos/pull/1200
|
||||
* fix: can't specify dockerfile by @whybeyoung in https://github.com/labring/sealos/pull/1213
|
||||
* ci: adjust makefile release targets by @SignorMercurio in https://github.com/labring/sealos/pull/1216
|
||||
* modify run cmd tips by @runzhliu in https://github.com/labring/sealos/pull/1217
|
||||
* Add support for command override by @SignorMercurio in https://github.com/labring/sealos/pull/1218
|
||||
* feature(main): update lvscare sdk multiple network by @cuisongliu in https://github.com/labring/sealos/pull/1212
|
||||
|
||||
## New Contributors
|
||||
* @yangchuansheng made their first contribution in https://github.com/labring/sealos/pull/1061
|
||||
* @Vonng made their first contribution in https://github.com/labring/sealos/pull/1136
|
||||
* @th2zz made their first contribution in https://github.com/labring/sealos/pull/1164
|
||||
* @runzhliu made their first contribution in https://github.com/labring/sealos/pull/1217
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.0.0-alpha.1...v4.0.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,163 @@
|
||||
- [v4.1.0-rc1](#v410-rc1httpsgithubcomlabringsealosreleasestagv410-rc1)
|
||||
- [Downloads for v4.1.0-rc1](#downloads-for-v410-rc1)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.0.0](#changelog-since-v400)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v4.1.0-rc1](https://github.com/labring/sealos/releases/tag/v4.1.0-rc1)
|
||||
|
||||
## Downloads for v4.1.0-rc1
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.0-rc1.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.0-rc1.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.0-rc1_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0-rc1/sealos_4.1.0-rc1_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.0-rc1_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0-rc1/sealos_4.1.0-rc1_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0-rc1/sealos_4.1.0-rc1_linux_amd64.tar.gz && tar -zxvf sealos_4.1.0-rc1_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0-rc1/sealos_4.1.0-rc1_linux_arm64.tar.gz && tar -zxvf sealos_4.1.0-rc1_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.0.0
|
||||
|
||||
### What's Changed
|
||||
|
||||
* fix: merge go.build.%.sealctl/sealos by @SignorMercurio in https://github.com/labring/sealos/pull/1226
|
||||
* update readme by @fanux in https://github.com/labring/sealos/pull/1228
|
||||
* Update DEVELOPGUIDE.md by @Ficus-f in https://github.com/labring/sealos/pull/1229
|
||||
* feat: support docs generation by @SignorMercurio in https://github.com/labring/sealos/pull/1231
|
||||
* feature(main): delete lvscare ipvs and route by @cuisongliu in https://github.com/labring/sealos/pull/1230
|
||||
* refactor: improve scale and reset params by @SignorMercurio in https://github.com/labring/sealos/pull/1238
|
||||
* fix a word spell problem by @shy-Xu in https://github.com/labring/sealos/pull/1239
|
||||
* feat: sealos inspect by @gitccl in https://github.com/labring/sealos/pull/1225
|
||||
* Update install-sealos.md by @Ficus-f in https://github.com/labring/sealos/pull/1247
|
||||
* refactor(main): pkg/hosts->utils, pkg/token->pkg/runtime/token by @cuisongliu in https://github.com/labring/sealos/pull/1246
|
||||
* ci: enable CGO for building sealos by @SignorMercurio in https://github.com/labring/sealos/pull/1244
|
||||
* feat: refactor infra yaml struct by @taorzhang in https://github.com/labring/sealos/pull/1234
|
||||
* fix: no longer explicitly specify cgo_enabled by @berlinsaint in https://github.com/labring/sealos/pull/1253
|
||||
* refactor(main): delete node using hostname by @cuisongliu in https://github.com/labring/sealos/pull/1254
|
||||
* refactor(main): merge code from lvscare by @cuisongliu in https://github.com/labring/sealos/pull/1249
|
||||
* refactor(main): add test workflows by @cuisongliu in https://github.com/labring/sealos/pull/1256
|
||||
* docs: improve DEVELOPGUIDE.md by @SignorMercurio in https://github.com/labring/sealos/pull/1258
|
||||
* fix: reduce ci time by @berlinsaint in https://github.com/labring/sealos/pull/1260
|
||||
* ci: improve workflow and fix ut error by @SignorMercurio in https://github.com/labring/sealos/pull/1261
|
||||
* Add license scan report and status by @fossabot in https://github.com/labring/sealos/pull/1264
|
||||
* refactor(main): add codecov img by @cuisongliu in https://github.com/labring/sealos/pull/1263
|
||||
* Fix ci requirement by @zzjin in https://github.com/labring/sealos/pull/1267
|
||||
* refactor(main): add test delete node workflows by @cuisongliu in https://github.com/labring/sealos/pull/1262
|
||||
* refactor(main): add fossa workflows by @cuisongliu in https://github.com/labring/sealos/pull/1268
|
||||
* refactor(main): add fossa workflows by @cuisongliu in https://github.com/labring/sealos/pull/1269
|
||||
* refactor(main): delete fossa workflows by @cuisongliu in https://github.com/labring/sealos/pull/1273
|
||||
* refactor(main): add registry logger by @cuisongliu in https://github.com/labring/sealos/pull/1274
|
||||
* ci: multiple improvements on CI workflow by @SignorMercurio in https://github.com/labring/sealos/pull/1270
|
||||
* ci: Update ci.yml to use simpler make build to build testing binaries by @SignorMercurio in https://github.com/labring/sealos/pull/1278
|
||||
* refactor(main): run app image fix port by @cuisongliu in https://github.com/labring/sealos/pull/1281
|
||||
* ci: build binaries for lvscare and image-cri-shim by @SignorMercurio in https://github.com/labring/sealos/pull/1283
|
||||
* refactor(main): Execute the command If it is a local IP, use the os package. by @cuisongliu in https://github.com/labring/sealos/pull/1282
|
||||
* fix disposition by @gebilxs in https://github.com/labring/sealos/pull/1286
|
||||
* ci: add workflows to build and push images for lvscare by @SignorMercurio in https://github.com/labring/sealos/pull/1288
|
||||
* feat: oauth2 to generate kubeconfig by @Abingcbc in https://github.com/labring/sealos/pull/1219
|
||||
* refactor(main): set default Transport for buildah by @cuisongliu in https://github.com/labring/sealos/pull/1289
|
||||
* refactor(main): add transport param for save and load by @cuisongliu in https://github.com/labring/sealos/pull/1297
|
||||
* fix system user design doc typo by @xiaospider in https://github.com/labring/sealos/pull/1291
|
||||
* ci: improve go.build in Makefile, setup multi-arch docker image build… by @SignorMercurio in https://github.com/labring/sealos/pull/1296
|
||||
* refactor(main): sealos run other server by @cuisongliu in https://github.com/labring/sealos/pull/1292
|
||||
* ci: use goreleaser to release docker images & deb and rpm packages, r… by @SignorMercurio in https://github.com/labring/sealos/pull/1299
|
||||
* feat(desktop): casdoor k8s yaml by @Abingcbc in https://github.com/labring/sealos/pull/1302
|
||||
* refactor(main): fix release to any one by @cuisongliu in https://github.com/labring/sealos/pull/1304
|
||||
* refactor(main): reset add getSSHInterface for shim by @cuisongliu in https://github.com/labring/sealos/pull/1308
|
||||
* refactor(main): add note for image and apt deb by @cuisongliu in https://github.com/labring/sealos/pull/1307
|
||||
* add infra controller scratch by @fanux in https://github.com/labring/sealos/pull/1294
|
||||
* refactor(main): add note for image and apt deb (#1307) by @cuisongliu in https://github.com/labring/sealos/pull/1310
|
||||
* bugfix: fix dashboard css typo by @xiaospider in https://github.com/labring/sealos/pull/1313
|
||||
* init support of .devcontainer, Impl #1241, Closes #1241. by @zzjin in https://github.com/labring/sealos/pull/1298
|
||||
* feat: support custom apiserver port by @gitccl in https://github.com/labring/sealos/pull/1316
|
||||
* doc: add dev container badge and adjust badges order by @SignorMercurio in https://github.com/labring/sealos/pull/1318
|
||||
* fix(main): port set error by @cuisongliu in https://github.com/labring/sealos/pull/1323
|
||||
* refactor(desktop): replace panic with errors by @Abingcbc in https://github.com/labring/sealos/pull/1328
|
||||
* fix: generate .kube dir in home dir by @gitccl in https://github.com/labring/sealos/pull/1324
|
||||
* ci: enable CGO by @SignorMercurio in https://github.com/labring/sealos/pull/1319
|
||||
* Unite log system with zap. by @zzjin in https://github.com/labring/sealos/pull/1300
|
||||
* add infra CRD spec by @fanux in https://github.com/labring/sealos/pull/1331
|
||||
* update contribute guide by @fanux in https://github.com/labring/sealos/pull/1333
|
||||
* add aws reconcile instances by @fanux in https://github.com/labring/sealos/pull/1334
|
||||
* fix add node failed, apiserver port is 0 by @fanux in https://github.com/labring/sealos/pull/1339
|
||||
* upgrade IsIpv4 function use to system api by @zsyaoo in https://github.com/labring/sealos/pull/1326
|
||||
* Del applications dir by @zzjin in https://github.com/labring/sealos/pull/1340
|
||||
* ci: support code and docs syncing by @SignorMercurio in https://github.com/labring/sealos/pull/1332
|
||||
* ci: fix docs sync error by @SignorMercurio in https://github.com/labring/sealos/pull/1341
|
||||
* docs: update notes about cross-platform building by @SignorMercurio in https://github.com/labring/sealos/pull/1344
|
||||
* fix(main): add local ip logger by @cuisongliu in https://github.com/labring/sealos/pull/1346
|
||||
* Add infra driver interface by @fanux in https://github.com/labring/sealos/pull/1343
|
||||
* fix(main): rename AddonsImage to PatchImage by @cuisongliu in https://github.com/labring/sealos/pull/1348
|
||||
* Update go1.18 to support workspace by @zzjin in https://github.com/labring/sealos/pull/1350
|
||||
* update develop guide about workspace. by @zzjin in https://github.com/labring/sealos/pull/1352
|
||||
* refactor: clean flag of lvscare by @fengxsong in https://github.com/labring/sealos/pull/1354
|
||||
* docs: remove badges for lvscare by @SignorMercurio in https://github.com/labring/sealos/pull/1358
|
||||
* ci: fix sync_code trigger paths by @SignorMercurio in https://github.com/labring/sealos/pull/1360
|
||||
* fix(main): delete logger for isLocal by @cuisongliu in https://github.com/labring/sealos/pull/1359
|
||||
* fix(main): sync is exists by @cuisongliu in https://github.com/labring/sealos/pull/1361
|
||||
* add & init sealos desktop frontend project by @maslow in https://github.com/labring/sealos/pull/1357
|
||||
* logger support fulltext color by @zzjin in https://github.com/labring/sealos/pull/1362
|
||||
* Feature: Services-Auth by @zzjin in https://github.com/labring/sealos/pull/1347
|
||||
* feature(main): local ip not ping by @cuisongliu in https://github.com/labring/sealos/pull/1363
|
||||
* feat: auto create dummy link if needed by @fengxsong in https://github.com/labring/sealos/pull/1367
|
||||
* fix(main): unexpected end of file by @xuehaipeng in https://github.com/labring/sealos/pull/1372
|
||||
* update pull request template to supress showing by @zzjin in https://github.com/labring/sealos/pull/1371
|
||||
* perf: singleton just fine by @fengxsong in https://github.com/labring/sealos/pull/1374
|
||||
* Revert "feature(main): add lvscare docker build" by @cuisongliu in https://github.com/labring/sealos/pull/1375
|
||||
* ci: skip pr when syncing by @SignorMercurio in https://github.com/labring/sealos/pull/1377
|
||||
* remove duplicate codes by @fengxsong in https://github.com/labring/sealos/pull/1376
|
||||
* fix: go.build.verify by @xuehaipeng in https://github.com/labring/sealos/pull/1379
|
||||
* fix: deprecated grpc dial option by @xuehaipeng in https://github.com/labring/sealos/pull/1380
|
||||
* refactor ssh client by @fengxsong in https://github.com/labring/sealos/pull/1381
|
||||
* add driver framework, define driver interface and reconcile controller by @fanux in https://github.com/labring/sealos/pull/1387
|
||||
* feature(main): add lvscare docker build by @cuisongliu in https://github.com/labring/sealos/pull/1382
|
||||
* ci: improve ci workflow by @SignorMercurio in https://github.com/labring/sealos/pull/1390
|
||||
* update readme deadlink by @fanux in https://github.com/labring/sealos/pull/1392
|
||||
* add controller reconcile, add events recorder. by @fanux in https://github.com/labring/sealos/pull/1394
|
||||
* feature(main): single module kubernetes cluster by @cuisongliu in https://github.com/labring/sealos/pull/1396
|
||||
* update auth service by @zzjin in https://github.com/labring/sealos/pull/1370
|
||||
* add terminal CRD spec by @gitccl in https://github.com/labring/sealos/pull/1398
|
||||
* remove unused mod use with `go mod tidy` by @zzjin in https://github.com/labring/sealos/pull/1400
|
||||
* feature(main): add lvscare docker build by @cuisongliu in https://github.com/labring/sealos/pull/1399
|
||||
|
||||
## New Contributors
|
||||
|
||||
* @shy-Xu made their first contribution in https://github.com/labring/sealos/pull/1239
|
||||
* @taorzhang made their first contribution in https://github.com/labring/sealos/pull/1234
|
||||
* @fossabot made their first contribution in https://github.com/labring/sealos/pull/1264
|
||||
* @xiaospider made their first contribution in https://github.com/labring/sealos/pull/1291
|
||||
* @zsyaoo made their first contribution in https://github.com/labring/sealos/pull/1326
|
||||
* @maslow made their first contribution in https://github.com/labring/sealos/pull/1357
|
||||
* @xuehaipeng made their first contribution in https://github.com/labring/sealos/pull/1372
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.0.0...v4.1.0-rc1
|
||||
|
||||
|
||||
@@ -0,0 +1,157 @@
|
||||
- [v4.1.0-rc2](#v410-rc2httpsgithubcomlabringsealosreleasestagv410-rc2)
|
||||
- [Downloads for v4.1.0-rc2](#downloads-for-v410-rc2)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.0-rc2](#changelog-since-v410-rc1)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v4.1.0-rc2](https://github.com/labring/sealos/releases/tag/v4.1.0-rc2)
|
||||
|
||||
## Downloads for v4.1.0-rc2
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.0-rc2.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.0-rc2.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.0-rc2_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0-rc2/sealos_4.1.0-rc2_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.0-rc2_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0-rc2/sealos_4.1.0-rc2_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0-rc2/sealos_4.1.0-rc2_linux_amd64.tar.gz && tar -zxvf sealos_4.1.0-rc2_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0-rc2/sealos_4.1.0-rc2_linux_arm64.tar.gz && tar -zxvf sealos_4.1.0-rc2_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.0-rc1
|
||||
|
||||
### What's Changed
|
||||
|
||||
* fixed readme run command by @fanux in https://github.com/labring/sealos/pull/1409
|
||||
* fix(auth): retain mysql pv when delete pvc by @Abingcbc in https://github.com/labring/sealos/pull/1410
|
||||
* add sleaos cloud overview by @fanux in https://github.com/labring/sealos/pull/1414
|
||||
* docs(main): fix targz by @cuisongliu in https://github.com/labring/sealos/pull/1411
|
||||
* add trackgit by @fanux in https://github.com/labring/sealos/pull/1415
|
||||
* add docker and readme by @zzjin in https://github.com/labring/sealos/pull/1407
|
||||
* fix docs that have english by @willzhang in https://github.com/labring/sealos/pull/1416
|
||||
* ci: fix path error in sync_docs.yml by @SignorMercurio in https://github.com/labring/sealos/pull/1418
|
||||
* ci: set COMMIT_EACH_FILE to false in sync by @SignorMercurio in https://github.com/labring/sealos/pull/1419
|
||||
* fix(auth): connect to casdoor by @Abingcbc in https://github.com/labring/sealos/pull/1428
|
||||
* docs: add more instructions on docs contributing by @SignorMercurio in https://github.com/labring/sealos/pull/1430
|
||||
* docs(main): fix miss mount in add nodes by @cuisongliu in https://github.com/labring/sealos/pull/1429
|
||||
* fixed go file name clinet.go change to client.go by @zsyaoo in https://github.com/labring/sealos/pull/1435
|
||||
* add desktop Dockerfile and makefile by @zzjin in https://github.com/labring/sealos/pull/1417
|
||||
* feat: support netlink mode by @fengxsong in https://github.com/labring/sealos/pull/1424
|
||||
* fix(auth): get ca cert from kubeconfig by @Abingcbc in https://github.com/labring/sealos/pull/1439
|
||||
* fix chart parse image and add unit test by @yyf1986 in https://github.com/labring/sealos/pull/1438
|
||||
* docs:Add registry docs by @willzhang in https://github.com/labring/sealos/pull/1443
|
||||
* add blazeface docs by @luanshaotong in https://github.com/labring/sealos/pull/1442
|
||||
* add create/get aws instance success by @fanux in https://github.com/labring/sealos/pull/1444
|
||||
* Add Customize Docs by @willzhang in https://github.com/labring/sealos/pull/1448
|
||||
* Add Prerequisites Docs by @willzhang in https://github.com/labring/sealos/pull/1447
|
||||
* add delete aws instance by @fanux in https://github.com/labring/sealos/pull/1446
|
||||
* feat(auth): deploy for service auth by @Abingcbc in https://github.com/labring/sealos/pull/1450
|
||||
* add reconcile instance, test aws reconcile instance success by @fanux in https://github.com/labring/sealos/pull/1456
|
||||
* test(main): add chart image unit test by @cuisongliu in https://github.com/labring/sealos/pull/1458
|
||||
* fixed docs/4.0/i18n/zh-Hans/design/user.md by @1oda in https://github.com/labring/sealos/pull/1461
|
||||
* update login redirect by @zzjin in https://github.com/labring/sealos/pull/1455
|
||||
* feat: support removing digest from image tags by @SignorMercurio in https://github.com/labring/sealos/pull/1466
|
||||
* Fix sealos build by @fengxsong in https://github.com/labring/sealos/pull/1471
|
||||
* fix private registry docs by @willzhang in https://github.com/labring/sealos/pull/1464
|
||||
* init applications controller by @fanux in https://github.com/labring/sealos/pull/1477
|
||||
* Improve contributing docs by @willzhang in https://github.com/labring/sealos/pull/1445
|
||||
* feature(main): guest env render by @cuisongliu in https://github.com/labring/sealos/pull/1486
|
||||
* Fix ingress-nginx route rewrite. by @zzjin in https://github.com/labring/sealos/pull/1474
|
||||
* Set aws infra name & index tag. (#1462) by @Ficus-f in https://github.com/labring/sealos/pull/1489
|
||||
* fix(cmd): unifiy the format of print columns by @runkecheng in https://github.com/labring/sealos/pull/1492
|
||||
* fix: iptables tool missing in lvscare image by @fengxsong in https://github.com/labring/sealos/pull/1494
|
||||
* feat: add terminal controller by @gitccl in https://github.com/labring/sealos/pull/1437
|
||||
* refactor: unify the use of utils by @SignorMercurio in https://github.com/labring/sealos/pull/1498
|
||||
* Update frontend/dashboard typo by @zzjin in https://github.com/labring/sealos/pull/1497
|
||||
* fix: only snat packets marked by @fengxsong in https://github.com/labring/sealos/pull/1496
|
||||
* Fix lint error by replace `os`&`io` by @zzjin in https://github.com/labring/sealos/pull/1504
|
||||
* Fix fmt and goimports by @zzjin in https://github.com/labring/sealos/pull/1505
|
||||
* fix workspace usage by @zzjin in https://github.com/labring/sealos/pull/1506
|
||||
* feat: add terminal keepalived by @gitccl in https://github.com/labring/sealos/pull/1502
|
||||
* fix: incompatible with cilium by @fengxsong in https://github.com/labring/sealos/pull/1501
|
||||
* fix typo by `go fmt` by @zzjin in https://github.com/labring/sealos/pull/1507
|
||||
* add issue no response auto close it by @fanux in https://github.com/labring/sealos/pull/1509
|
||||
* no reply issue auto closer by @fanux in https://github.com/labring/sealos/pull/1510
|
||||
* refactor: upgrade to go 1.19 by @zzjin in https://github.com/labring/sealos/pull/1500
|
||||
* Reconcile aws infra count. (#1490) by @Ficus-f in https://github.com/labring/sealos/pull/1491
|
||||
* Reconcile aws infra count. (#1490) by @Ficus-f in https://github.com/labring/sealos/pull/1517
|
||||
* Update desktop/frontend add user login token by @zzjin in https://github.com/labring/sealos/pull/1520
|
||||
* fix: revert version of github.com/containers/storage by @fengxsong in https://github.com/labring/sealos/pull/1522
|
||||
* feat(main): generate user controller by @cuisongliu in https://github.com/labring/sealos/pull/1529
|
||||
* fix create and delete instance bug by @HURUIZHE in https://github.com/labring/sealos/pull/1533
|
||||
* Feature/infra: add docs and aws yaml files by @fanux in https://github.com/labring/sealos/pull/1534
|
||||
* fix: chart deps rendering by @fengxsong in https://github.com/labring/sealos/pull/1536
|
||||
* fixed build out of memory by @fanux in https://github.com/labring/sealos/pull/1542
|
||||
* update the docs sidebar by @fanux in https://github.com/labring/sealos/pull/1540
|
||||
* docs: fix docs typo by @x893675 in https://github.com/labring/sealos/pull/1547
|
||||
* fix typo by @zzjin in https://github.com/labring/sealos/pull/1548
|
||||
* fix(main): add max goroutine num by @cuisongliu in https://github.com/labring/sealos/pull/1543
|
||||
* init applications controller by @fanux in https://github.com/labring/sealos/pull/1538
|
||||
* docs: update add athenaserving from iflytek by @berlinsaint in https://github.com/labring/sealos/pull/1551
|
||||
* ci: add image syncing in sync_docs workflow by @SignorMercurio in https://github.com/labring/sealos/pull/1555
|
||||
* fix(main): add docker-shim support by @cuisongliu in https://github.com/labring/sealos/pull/1553
|
||||
* docs: fix some refs by @berlinsaint in https://github.com/labring/sealos/pull/1557
|
||||
* Some doc optimizations. by @Shigure-kai-2 in https://github.com/labring/sealos/pull/1558
|
||||
* docs: remove some extra pics ref by @berlinsaint in https://github.com/labring/sealos/pull/1560
|
||||
* fix: sealos build(revert saveBlobs function) by @fengxsong in https://github.com/labring/sealos/pull/1556
|
||||
* init kubernetes sdk by @zzjin in https://github.com/labring/sealos/pull/1525
|
||||
* add wechat payment handle by @fanux in https://github.com/labring/sealos/pull/1559
|
||||
* update gitignore by @zzjin in https://github.com/labring/sealos/pull/1562
|
||||
* add recharge cli by @fanux in https://github.com/labring/sealos/pull/1563
|
||||
* fix: oom occured when sealos build by @fengxsong in https://github.com/labring/sealos/pull/1568
|
||||
* feature(main): add client for k8s by @cuisongliu in https://github.com/labring/sealos/pull/1569
|
||||
* Fix ca data not returned under incluster mode by @zzjin in https://github.com/labring/sealos/pull/1570
|
||||
* feature(main): add user generator kubeconfig by @cuisongliu in https://github.com/labring/sealos/pull/1561
|
||||
* feature(main): add user load ca for kubeconfig by @cuisongliu in https://github.com/labring/sealos/pull/1572
|
||||
* feat: load clusterfile from template by @fengxsong in https://github.com/labring/sealos/pull/1523
|
||||
* update zh docs by @fanux in https://github.com/labring/sealos/pull/1573
|
||||
* feat: deploy ingress for terminal by @gitccl in https://github.com/labring/sealos/pull/1544
|
||||
* fix(main): fix terminal code,using config host by @cuisongliu in https://github.com/labring/sealos/pull/1576
|
||||
* docs: experimental usage for sealos apply by @fengxsong in https://github.com/labring/sealos/pull/1578
|
||||
* ci(main): fix lvscare arm docker image by @cuisongliu in https://github.com/labring/sealos/pull/1579
|
||||
* feature(main): add user controller logic by @cuisongliu in https://github.com/labring/sealos/pull/1575
|
||||
* add account and charge CRD by @fanux in https://github.com/labring/sealos/pull/1580
|
||||
* fix: unexpected config merge by @fengxsong in https://github.com/labring/sealos/pull/1574
|
||||
* refactor: optimize the creation of terminal ingress by @gitccl in https://github.com/labring/sealos/pull/1581
|
||||
* add payment controller, user can apply a crd to recharge his account by @fanux in https://github.com/labring/sealos/pull/1583
|
||||
* update fix go module by @zzjin in https://github.com/labring/sealos/pull/1584
|
||||
* feature(main): add csr to kubeconfig by @cuisongliu in https://github.com/labring/sealos/pull/1585
|
||||
* feature(main): delete go generate for gorelease by @cuisongliu in https://github.com/labring/sealos/pull/1586
|
||||
|
||||
## New Contributors
|
||||
|
||||
* @willzhang made their first contribution in https://github.com/labring/sealos/pull/1416
|
||||
* @luanshaotong made their first contribution in https://github.com/labring/sealos/pull/1442
|
||||
* @1oda made their first contribution in https://github.com/labring/sealos/pull/1461
|
||||
* @runkecheng made their first contribution in https://github.com/labring/sealos/pull/1492
|
||||
* @HURUIZHE made their first contribution in https://github.com/labring/sealos/pull/1533
|
||||
* @x893675 made their first contribution in https://github.com/labring/sealos/pull/1547
|
||||
* @Shigure-kai-2 made their first contribution in https://github.com/labring/sealos/pull/1558
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.0-rc1...v4.1.0-rc2
|
||||
@@ -0,0 +1,75 @@
|
||||
- [v4.1.0-rc3](#v410-rc3httpsgithubcomlabringsealosreleasestagv410-rc3)
|
||||
- [Downloads for v4.1.0-rc3](#downloads-for-v410-rc3)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.0-rc3](#changelog-since-v410-rc2)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v4.1.0-rc3](https://github.com/labring/sealos/releases/tag/v4.1.0-rc3)
|
||||
|
||||
## Downloads for v4.1.0-rc3
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.0-rc3.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.0-rc3.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.0-rc3_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0-rc3/sealos_4.1.0-rc3_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.0-rc3_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0-rc3/sealos_4.1.0-rc3_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0-rc3/sealos_4.1.0-rc3_linux_amd64.tar.gz && tar -zxvf sealos_4.1.0-rc3_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0-rc3/sealos_4.1.0-rc3_linux_arm64.tar.gz && tar -zxvf sealos_4.1.0-rc3_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.0-rc2
|
||||
|
||||
### What's Changed
|
||||
|
||||
* feat: add terminal status by @gitccl in https://github.com/labring/sealos/pull/1587
|
||||
* docs: add example for Config by @fengxsong in https://github.com/labring/sealos/pull/1591
|
||||
* update terminal frontend svc get by @zzjin in https://github.com/labring/sealos/pull/1582
|
||||
* style: correct flag usage by @fengxsong in https://github.com/labring/sealos/pull/1593
|
||||
* feature(main): buildx user-controller by @cuisongliu in https://github.com/labring/sealos/pull/1588
|
||||
* Update client-js to support crd get status return by @zzjin in https://github.com/labring/sealos/pull/1595
|
||||
* Fix work replace by @zzjin in https://github.com/labring/sealos/pull/1597
|
||||
* feat: Attach aws Volume (#1512) by @HURUIZHE in https://github.com/labring/sealos/pull/1589
|
||||
* feature(main): add usergroups controller for user by @cuisongliu in https://github.com/labring/sealos/pull/1600
|
||||
* fixed typo by @fanux in https://github.com/labring/sealos/pull/1607
|
||||
* style: file rename by @LeezQ in https://github.com/labring/sealos/pull/1602
|
||||
* Fix #1605 by @muicoder in https://github.com/labring/sealos/pull/1606
|
||||
* update account controller to listen the payment crd by @fanux in https://github.com/labring/sealos/pull/1609
|
||||
* add semgrep sast scan by @zzjin in https://github.com/labring/sealos/pull/1610
|
||||
* feature(main): add tips in running routeMode by @cuisongliu in https://github.com/labring/sealos/pull/1611
|
||||
* feature(main): add image for sealos by @cuisongliu in https://github.com/labring/sealos/pull/1613
|
||||
* feature(main): add v1.25 k8s support by @cuisongliu in https://github.com/labring/sealos/pull/1616
|
||||
* fix payment and account controller recharge failed by @fanux in https://github.com/labring/sealos/pull/1617
|
||||
|
||||
## New Contributors
|
||||
|
||||
* @LeezQ made their first contribution in https://github.com/labring/sealos/pull/1602
|
||||
* @muicoder made their first contribution in https://github.com/labring/sealos/pull/1606
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.0-rc2...v4.1.0-rc3
|
||||
@@ -0,0 +1,74 @@
|
||||
- [v4.1.0](#v410httpsgithubcomlabringsealosreleasestagv410)
|
||||
- [Downloads for v4.1.0](#downloads-for-v410)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.0](#changelog-since-v410-rc3)
|
||||
|
||||
|
||||
# [v4.1.0](https://github.com/labring/sealos/releases/tag/v4.1.0)
|
||||
|
||||
## Downloads for v4.1.0
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.0.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.0.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.0_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0/sealos_4.1.0_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.0_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.0/sealos_4.1.0_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0/sealos_4.1.0_linux_amd64.tar.gz && tar -zxvf sealos_4.1.0_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.0/sealos_4.1.0_linux_arm64.tar.gz && tar -zxvf sealos_4.1.0_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.0-rc3
|
||||
|
||||
### What's Changed
|
||||
|
||||
* feature(main): add usergroupbindings controller for user by @cuisongliu in https://github.com/labring/sealos/pull/1618
|
||||
* fix: use bufio.reader to avoid token too long error by @fengxsong in https://github.com/labring/sealos/pull/1624
|
||||
* add payment spec verify by @fanux in https://github.com/labring/sealos/pull/1622
|
||||
* add terminal record to show how to use sealos install kubernetes cluster by @fanux in https://github.com/labring/sealos/pull/1626
|
||||
* update install doc by @zzjin in https://github.com/labring/sealos/pull/1627
|
||||
* add first contribution about github workflow by @fanux in https://github.com/labring/sealos/pull/1628
|
||||
* fix vercel render failed by @fanux in https://github.com/labring/sealos/pull/1630
|
||||
* fix vercel render failed by @fanux in https://github.com/labring/sealos/pull/1631
|
||||
* fixed vercel build failed by @fanux in https://github.com/labring/sealos/pull/1634
|
||||
* Update repo-file-sync-action version to v1 by @SignorMercurio in https://github.com/labring/sealos/pull/1635
|
||||
* add english docs for cluster lifecycle by @fanux in https://github.com/labring/sealos/pull/1637
|
||||
* style: unifying definitions of command line flags by @fengxsong in https://github.com/labring/sealos/pull/1638
|
||||
* add uuid address for terminal by @gitccl in https://github.com/labring/sealos/pull/1639
|
||||
* add some notes by @HURUIZHE in https://github.com/labring/sealos/pull/1644
|
||||
* change 'auth/main.go log' by @Rushmmmc in https://github.com/labring/sealos/pull/1642
|
||||
* ci: auto format code with `make format` by @SignorMercurio in https://github.com/labring/sealos/pull/1645
|
||||
* feature(main): add docker support by @cuisongliu in https://github.com/labring/sealos/pull/1604
|
||||
* feat:init metering by @xiao-jay in https://github.com/labring/sealos/pull/1647
|
||||
* translate en docs by @fanux in https://github.com/labring/sealos/pull/1646
|
||||
* fix auto-format by pull from right repo url by @zzjin in https://github.com/labring/sealos/pull/1653
|
||||
* feature(main): add convert code from kubernetes by @cuisongliu in https://github.com/labring/sealos/pull/1652
|
||||
* feature(main): fix shim for docker by @cuisongliu in https://github.com/labring/sealos/pull/1657
|
||||
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.0-rc3...v4.1.0
|
||||
@@ -0,0 +1,60 @@
|
||||
- [v4.1.1](#v411httpsgithubcomlabringsealosreleasestagv411)
|
||||
- [Downloads for v4.1.1](#downloads-for-v411)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.1](#changelog-since-v410)
|
||||
|
||||
|
||||
# [v4.1.1](https://github.com/labring/sealos/releases/tag/v4.1.1)
|
||||
|
||||
## Downloads for v4.1.1
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.1.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.1.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.1_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.1/sealos_4.1.1_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.1_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.1/sealos_4.1.1_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.1/sealos_4.1.1_linux_amd64.tar.gz && tar -zxvf sealos_4.1.1_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.1/sealos_4.1.1_linux_arm64.tar.gz && tar -zxvf sealos_4.1.1_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.0
|
||||
|
||||
### What's Changed
|
||||
|
||||
* feat(auth): local cdn by @Abingcbc in https://github.com/labring/sealos/pull/1664
|
||||
* feature(main): override registry config for buildah by @cuisongliu in https://github.com/labring/sealos/pull/1665
|
||||
* feature(main): doc: add docker images for sealos by @cuisongliu in https://github.com/labring/sealos/pull/1667
|
||||
* feature(main): docs fix title by @cuisongliu in https://github.com/labring/sealos/pull/1669
|
||||
* update install on single node, add calico and version requirement by @fanux in https://github.com/labring/sealos/pull/1671
|
||||
* update docs by @zzjin in https://github.com/labring/sealos/pull/1673
|
||||
* Update developguide by @Rushmmmc in https://github.com/labring/sealos/pull/1678
|
||||
* feat: support merging configs on run command by @fengxsong in https://github.com/labring/sealos/pull/1658
|
||||
* feature(main): hotfix kubelet 10250 dead by @cuisongliu in https://github.com/labring/sealos/pull/1681
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.0...v4.1.1
|
||||
@@ -0,0 +1,52 @@
|
||||
- [v4.1.2-rc1](#v412-rc1httpsgithubcomlabringsealosreleasestagv412-rc1)
|
||||
- [Downloads for v4.1.2-rc1](#downloads-for-v412-rc1)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.2-rc1](#changelog-since-v411)
|
||||
|
||||
|
||||
# [v4.1.2-rc1](https://github.com/labring/sealos/releases/tag/v4.1.2-rc1)
|
||||
|
||||
## Downloads for v4.1.2-rc1
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.2-rc1.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.2-rc1.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.2-rc1_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.2-rc1/sealos_4.1.2-rc1_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.2-rc1_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.2-rc1/sealos_4.1.2-rc1_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.2-rc1/sealos_4.1.2-rc1_linux_amd64.tar.gz && tar -zxvf sealos_4.1.2-rc1_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.2-rc1/sealos_4.1.2-rc1_linux_arm64.tar.gz && tar -zxvf sealos_4.1.2-rc1_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.1
|
||||
|
||||
### What's Changed
|
||||
|
||||
* fix: override spec value from flags by @fengxsong in https://github.com/labring/sealos/pull/1685
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.1...v4.1.2-rc1
|
||||
@@ -0,0 +1,54 @@
|
||||
- [v4.1.2](#v412httpsgithubcomlabringsealosreleasestagv412)
|
||||
- [Downloads for v4.1.2](#downloads-for-v412)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.2](#changelog-since-v411)
|
||||
|
||||
|
||||
# [v4.1.2](https://github.com/labring/sealos/releases/tag/v4.1.2)
|
||||
|
||||
## Downloads for v4.1.2
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.2.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.2.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.2_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.2/sealos_4.1.2_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.2_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.2/sealos_4.1.2_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.2/sealos_4.1.2_linux_amd64.tar.gz && tar -zxvf sealos_4.1.2_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.2/sealos_4.1.2_linux_arm64.tar.gz && tar -zxvf sealos_4.1.2_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.1
|
||||
|
||||
### What's Changed
|
||||
|
||||
* fix: override spec value from flags by @fengxsong in https://github.com/labring/sealos/pull/1685
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.1...v4.1.2
|
||||
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
- [v4.1.3-rc1](#v413-rc1httpsgithubcomlabringsealosreleasestagv413-rc1)
|
||||
- [Downloads for v4.1.3-rc1](#downloads-for-v413-rc1)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.3-rc1](#changelog-since-v412)
|
||||
|
||||
|
||||
# [v4.1.3-rc1](https://github.com/labring/sealos/releases/tag/v4.1.3-rc1)
|
||||
|
||||
## Downloads for v4.1.3-rc1
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.3-rc1.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.3-rc1.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.3-rc1_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.3-rc1/sealos_4.1.3-rc1_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.3-rc1_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.3-rc1/sealos_4.1.3-rc1_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.3-rc1/sealos_4.1.3-rc1_linux_amd64.tar.gz && tar -zxvf sealos_4.1.3-rc1_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.3-rc1/sealos_4.1.3-rc1_linux_arm64.tar.gz && tar -zxvf sealos_4.1.3-rc1_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.2
|
||||
|
||||
### What's Changed
|
||||
|
||||
* desktop ui by @LeezQ in https://github.com/labring/sealos/pull/1675
|
||||
* feature(main): add docker image for sealos by @cuisongliu in https://github.com/labring/sealos/pull/1636
|
||||
* feature(main): add usergroupbindings controller for namespace by @cuisongliu in https://github.com/labring/sealos/pull/1632
|
||||
* fix: release binary segfault on centos by @SignorMercurio in https://github.com/labring/sealos/pull/1694
|
||||
* feature(main): fix shim image for online by @cuisongliu in https://github.com/labring/sealos/pull/1693
|
||||
* update gorelease typo locaion by @zzjin in https://github.com/labring/sealos/pull/1695
|
||||
* feat(auth): casdoor static file server by @Abingcbc in https://github.com/labring/sealos/pull/1698
|
||||
* feature(main): fix upx for release by @cuisongliu in https://github.com/labring/sealos/pull/1702
|
||||
* optimize go step action by @zzjin in https://github.com/labring/sealos/pull/1699
|
||||
* fix sealos will not use local images if there is a newer one remote by @yyf1986 in https://github.com/labring/sealos/pull/1689
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.2...v4.1.3-rc1
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
- [v4.1.3](#v413httpsgithubcomlabringsealosreleasestagv413)
|
||||
- [Downloads for v4.1.3](#downloads-for-v413)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.3](#changelog-since-v413-rc1)
|
||||
|
||||
|
||||
# [v4.1.3](https://github.com/labring/sealos/releases/tag/v4.1.3)
|
||||
|
||||
## Downloads for v4.1.3
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.3.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.3.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.3_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.3/sealos_4.1.3_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.3_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.3/sealos_4.1.3_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.3/sealos_4.1.3_linux_amd64.tar.gz && tar -zxvf sealos_4.1.3_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.3/sealos_4.1.3_linux_arm64.tar.gz && tar -zxvf sealos_4.1.3_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.3-rc1
|
||||
|
||||
### What's Changed
|
||||
* remove upx compress on sealos binary by @zzjin in https://github.com/labring/sealos/pull/1705
|
||||
* Frontend updates by @zzjin in https://github.com/labring/sealos/pull/1707
|
||||
* feature(main): add binary for buildah by @cuisongliu in https://github.com/labring/sealos/pull/1709
|
||||
* feature(main): add upx for sealos by @cuisongliu in https://github.com/labring/sealos/pull/1710
|
||||
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.3-rc1...v4.1.3
|
||||
|
||||
|
||||
@@ -0,0 +1,197 @@
|
||||
- [v4.1.4-rc1](#v414-rc1httpsgithubcomlabringsealosreleasestagv414-rc1)
|
||||
- [Downloads for v4.1.4-rc1](#downloads-for-v414-rc1)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.4-rc1](#changelog-since-v413)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v4.1.4-rc1](https://github.com/labring/sealos/releases/tag/v4.1.4-rc1)
|
||||
|
||||
## Downloads for v4.1.4-rc1
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.4-rc1.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.4-rc1.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.4-rc1_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.4-rc1/sealos_4.1.4-rc1_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.4-rc1_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.4-rc1/sealos_4.1.4-rc1_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.4-rc1/sealos_4.1.4-rc1_linux_amd64.tar.gz && tar -zxvf sealos_4.1.4-rc1_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.4-rc1/sealos_4.1.4-rc1_linux_arm64.tar.gz && tar -zxvf sealos_4.1.4-rc1_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.3
|
||||
|
||||
### What's Changed
|
||||
|
||||
* feature(main): optimize Dockerfile(#1711) by @muicoder in https://github.com/labring/sealos/pull/1713
|
||||
* fix: add index page by @LeezQ in https://github.com/labring/sealos/pull/1715
|
||||
* Update go module to match workspace by @zzjin in https://github.com/labring/sealos/pull/1716
|
||||
* Fix Optimized to use buildah sdk with push and pull by @yyf1986 in https://github.com/labring/sealos/pull/1714
|
||||
* update readme by @pangqyy in https://github.com/labring/sealos/pull/1721
|
||||
* update readme by @pangqyy in https://github.com/labring/sealos/pull/1722
|
||||
* feature(main): sealos merge fearure by @cuisongliu in https://github.com/labring/sealos/pull/1706
|
||||
* update readme by @pangqyy in https://github.com/labring/sealos/pull/1725
|
||||
* Update and fix login method. by @zzjin in https://github.com/labring/sealos/pull/1719
|
||||
* feature(main): add sync user role by @cuisongliu in https://github.com/labring/sealos/pull/1718
|
||||
* Update Cloud Frontend. by @zzjin in https://github.com/labring/sealos/pull/1726
|
||||
* fix: issue 1724 by @fengxsong in https://github.com/labring/sealos/pull/1733
|
||||
* refactor: applier by @fengxsong in https://github.com/labring/sealos/pull/1736
|
||||
* Fix user controller module by @zzjin in https://github.com/labring/sealos/pull/1739
|
||||
* update go work modules by @zzjin in https://github.com/labring/sealos/pull/1742
|
||||
* feat: generate config of components by @fengxsong in https://github.com/labring/sealos/pull/1743
|
||||
* update terminal controller image, disable CGO by @gitccl in https://github.com/labring/sealos/pull/1745
|
||||
* fix ci terminal controller build error by @gitccl in https://github.com/labring/sealos/pull/1748
|
||||
* feature(main): add sync user role by @cuisongliu in https://github.com/labring/sealos/pull/1749
|
||||
* feature(main): add sync user role by @cuisongliu in https://github.com/labring/sealos/pull/1750
|
||||
* feature(main): add registry sdk by @cuisongliu in https://github.com/labring/sealos/pull/1746
|
||||
* Init support of terminal and kubernetes-dashboard. by @zzjin in https://github.com/labring/sealos/pull/1738
|
||||
* feature(main): fix user group role by @cuisongliu in https://github.com/labring/sealos/pull/1754
|
||||
* tmp fix terminal waiting by @zzjin in https://github.com/labring/sealos/pull/1757
|
||||
* Update cert manager to use dns01 for wildcard. by @zzjin in https://github.com/labring/sealos/pull/1761
|
||||
* Add Controller Cluster by @HURUIZHE in https://github.com/labring/sealos/pull/1697
|
||||
* Update favicon& typo by @zzjin in https://github.com/labring/sealos/pull/1763
|
||||
* Temp Add `terminal`'s namespace by @zzjin in https://github.com/labring/sealos/pull/1762
|
||||
* remove certificate from terminal-controller by @gitccl in https://github.com/labring/sealos/pull/1765
|
||||
* update: window manage by @LeezQ in https://github.com/labring/sealos/pull/1767
|
||||
* add user-controller webhook by @cuisongliu in https://github.com/labring/sealos/pull/1766
|
||||
* Dev front by @zzjin in https://github.com/labring/sealos/pull/1774
|
||||
* add start menu & fix iframe url bug by @LeezQ in https://github.com/labring/sealos/pull/1780
|
||||
* Dev front by @zzjin in https://github.com/labring/sealos/pull/1778
|
||||
* update docs: update calico version by @fanux in https://github.com/labring/sealos/pull/1781
|
||||
* update readme: add cri-docker and new desktop image by @fanux in https://github.com/labring/sealos/pull/1782
|
||||
* feature(main): update base image is ubuntu by @cuisongliu in https://github.com/labring/sealos/pull/1784
|
||||
* Update DEVELOPGUIDE.md by @Dan81067 in https://github.com/labring/sealos/pull/1786
|
||||
* bugfix: display the correct icon in app store by @BambooSword in https://github.com/labring/sealos/pull/1789
|
||||
* Update ci dep. by @zzjin in https://github.com/labring/sealos/pull/1794
|
||||
* feature(main): fix user-controller-rbac for csr by @cuisongliu in https://github.com/labring/sealos/pull/1796
|
||||
* feature(main): add Platform for sealos pull/create by @cuisongliu in https://github.com/labring/sealos/pull/1797
|
||||
* feat: add pwa support by @LeezQ in https://github.com/labring/sealos/pull/1785
|
||||
* Cluster Debug by @HURUIZHE in https://github.com/labring/sealos/pull/1792
|
||||
* add helm when install calico v3.24.1 by @fanux in https://github.com/labring/sealos/pull/1800
|
||||
* fixed docs, calico new version needs helm by @fanux in https://github.com/labring/sealos/pull/1802
|
||||
* feat: generate kubeconfig by user controller by @Abingcbc in https://github.com/labring/sealos/pull/1799
|
||||
* Update seg to standalone version. by @zzjin in https://github.com/labring/sealos/pull/1803
|
||||
* Allow semgpeg fails. by @zzjin in https://github.com/labring/sealos/pull/1806
|
||||
* Generate certificate suitable for use with any Kubernetes Webhook. by @muicoder in https://github.com/labring/sealos/pull/1805
|
||||
* fix: empty status error of quick query by @Abingcbc in https://github.com/labring/sealos/pull/1810
|
||||
* feature(main): add user namespace Pod Security Admission by @cuisongliu in https://github.com/labring/sealos/pull/1811
|
||||
* feature(main): add disable_webhook_env by @cuisongliu in https://github.com/labring/sealos/pull/1809
|
||||
* Update user's kubeconfig using new user-controller's resp. by @zzjin in https://github.com/labring/sealos/pull/1814
|
||||
* CREATE SSH pair key when creating instance by @HURUIZHE in https://github.com/labring/sealos/pull/1808
|
||||
* feat: add user access account permissions by @xiao-jay in https://github.com/labring/sealos/pull/1815
|
||||
* Dev front by @zzjin in https://github.com/labring/sealos/pull/1818
|
||||
* fix:add create status when payment create by @xiao-jay in https://github.com/labring/sealos/pull/1821
|
||||
* fix: ineffective env and cmd override by @SignorMercurio in https://github.com/labring/sealos/pull/1825
|
||||
* fix #1775: update doc calico version to v3.24.1 by @a1576471428 in https://github.com/labring/sealos/pull/1826
|
||||
* Feat client sdk and wechat pay by @LeezQ in https://github.com/labring/sealos/pull/1827
|
||||
* feat: wechat pay by @LeezQ in https://github.com/labring/sealos/pull/1828
|
||||
* feat:update role of user access ownerreference account by @xiao-jay in https://github.com/labring/sealos/pull/1833
|
||||
* Update accounts.user.sealos.io sdk usage. by @zzjin in https://github.com/labring/sealos/pull/1832
|
||||
* Fix terminal rbac permission. by @zzjin in https://github.com/labring/sealos/pull/1834
|
||||
* fix:change log level by @xiao-jay in https://github.com/labring/sealos/pull/1838
|
||||
* fix: copy binary with execute permission by @fengxsong in https://github.com/labring/sealos/pull/1842
|
||||
* fix: return error if any error occured by @fengxsong in https://github.com/labring/sealos/pull/1844
|
||||
* fix: Hydration failed by @LeezQ in https://github.com/labring/sealos/pull/1840
|
||||
* feat:add payment secvet set env by @xiao-jay in https://github.com/labring/sealos/pull/1848
|
||||
* docs: fix some typo in CONTRIBUTING.md. by @Raving-hash in https://github.com/labring/sealos/pull/1852
|
||||
* Update Frontend apps by @zzjin in https://github.com/labring/sealos/pull/1847
|
||||
* feat: appstore by @BambooSword in https://github.com/labring/sealos/pull/1837
|
||||
* feature(main): add sa kubeconfig by @cuisongliu in https://github.com/labring/sealos/pull/1836
|
||||
* feature(main): fix image pull for user-controller by @cuisongliu in https://github.com/labring/sealos/pull/1857
|
||||
* feature(main): add auto build cluster-image by @cuisongliu in https://github.com/labring/sealos/pull/1859
|
||||
* Fix appstore typo by @zzjin in https://github.com/labring/sealos/pull/1856
|
||||
* fix:sealos creat xxxx image not known by @xiao-jay in https://github.com/labring/sealos/pull/1860
|
||||
* feat: support pulling in sealos save and loading in sealos run by @SignorMercurio in https://github.com/labring/sealos/pull/1861
|
||||
* optimize the scale process by @fengxsong in https://github.com/labring/sealos/pull/1855
|
||||
* fix:sealos creat xxxx image not known by @xiao-jay in https://github.com/labring/sealos/pull/1864
|
||||
* feat:account delete payment delay 5 minutes by @xiao-jay in https://github.com/labring/sealos/pull/1863
|
||||
* feat:add metering module by @xiao-jay in https://github.com/labring/sealos/pull/1824
|
||||
* add support kubernetes versions in readme by @fanux in https://github.com/labring/sealos/pull/1868
|
||||
* feature(main): fix miss rbac by @cuisongliu in https://github.com/labring/sealos/pull/1874
|
||||
* Frontend and ssh add pkdata by @HURUIZHE in https://github.com/labring/sealos/pull/1831
|
||||
* docs: update sealos API docs by @SignorMercurio in https://github.com/labring/sealos/pull/1879
|
||||
* Fix terminal rbac usage by @zzjin in https://github.com/labring/sealos/pull/1885
|
||||
* fix: semgrep scan issues by @SignorMercurio in https://github.com/labring/sealos/pull/1881
|
||||
* fix: the rest of semgrep scan issues by @SignorMercurio in https://github.com/labring/sealos/pull/1886
|
||||
* feat: deploy terminal in terminal-app ns by @gitccl in https://github.com/labring/sealos/pull/1835
|
||||
* feature(main): add log for user controller by @cuisongliu in https://github.com/labring/sealos/pull/1888
|
||||
* fix: watch+select to get kubeconfig by @Abingcbc in https://github.com/labring/sealos/pull/1892
|
||||
* Add apps by @zzjin in https://github.com/labring/sealos/pull/1893
|
||||
* improve:make SetClusterRunArgs conform to 'return fast' by @NTH19 in https://github.com/labring/sealos/pull/1889
|
||||
* add mock dapps by @fanux in https://github.com/labring/sealos/pull/1898
|
||||
* docs: improve existing docs by @SignorMercurio in https://github.com/labring/sealos/pull/1896
|
||||
* Dev front by @zzjin in https://github.com/labring/sealos/pull/1901
|
||||
* feature(main): add registry sdk by @cuisongliu in https://github.com/labring/sealos/pull/1880
|
||||
* Fix frontend by @LeezQ in https://github.com/labring/sealos/pull/1895
|
||||
* Fix app import typo by @zzjin in https://github.com/labring/sealos/pull/1904
|
||||
* doc: update k8s image name by @xiao-jay in https://github.com/labring/sealos/pull/1907
|
||||
* add copy token by @LeezQ in https://github.com/labring/sealos/pull/1906
|
||||
* fix: alert cause copy fail by @LeezQ in https://github.com/labring/sealos/pull/1908
|
||||
* ci: fix docs site build error by @SignorMercurio in https://github.com/labring/sealos/pull/1910
|
||||
* docs: A few typos by @TomatoQt in https://github.com/labring/sealos/pull/1911
|
||||
* desktop/frontend/README.md by @cubxxw in https://github.com/labring/sealos/pull/1912
|
||||
* fix: use unknown user instead of running useradd by @SignorMercurio in https://github.com/labring/sealos/pull/1913
|
||||
* add contribute guide, add golang install and FAQ by @fanux in https://github.com/labring/sealos/pull/1919
|
||||
* fix readme and intro by @zyj-111 in https://github.com/labring/sealos/pull/1918
|
||||
* temp comments out L by @zzjin in https://github.com/labring/sealos/pull/1925
|
||||
* feature(main): add user-controller rbac for sa by @cuisongliu in https://github.com/labring/sealos/pull/1926
|
||||
* [fix]add pull policy by @yyf1986 in https://github.com/labring/sealos/pull/1921
|
||||
* feature(main): add user-controller rbac for sa (#1926) by @cuisongliu in https://github.com/labring/sealos/pull/1928
|
||||
* Update doc typo. by @zzjin in https://github.com/labring/sealos/pull/1933
|
||||
* fix: get host arch using SSH for apply/run, apply/reset and apply/scale by @SignorMercurio in https://github.com/labring/sealos/pull/1927
|
||||
* shell:creat a sealos cluster based on multipass by @xiao-jay in https://github.com/labring/sealos/pull/1934
|
||||
* feature(main): sync ttl for token and kubeadm-certs by @cuisongliu in https://github.com/labring/sealos/pull/1936
|
||||
* fix: casdoor non root security by @Abingcbc in https://github.com/labring/sealos/pull/1940
|
||||
* feature(main): fix nodes for single by @cuisongliu in https://github.com/labring/sealos/pull/1938
|
||||
* feature(main): add GetContextDir for build by @cuisongliu in https://github.com/labring/sealos/pull/1935
|
||||
* fix: error link by @ining7 in https://github.com/labring/sealos/pull/1947
|
||||
* del: update readme by @ining7 in https://github.com/labring/sealos/pull/1948
|
||||
* feature(main): add sealos action for docs by @cuisongliu in https://github.com/labring/sealos/pull/1949
|
||||
* Try fix goreleaser for arm package. by @zzjin in https://github.com/labring/sealos/pull/1952
|
||||
* feature(main): fix cri socket to multiple CRI by @cuisongliu in https://github.com/labring/sealos/pull/1945
|
||||
* docs: update workspace preparation steps by @wxharry in https://github.com/labring/sealos/pull/1955
|
||||
* add sealos cloud example: hello world demo by @fanux in https://github.com/labring/sealos/pull/1960
|
||||
* fix: goreleaser actions failure by @SignorMercurio in https://github.com/labring/sealos/pull/1962
|
||||
* ci: publish docker image for the release workflow with goreleaser by @SignorMercurio in https://github.com/labring/sealos/pull/1964
|
||||
* feature(main): fix docker build image by @cuisongliu in https://github.com/labring/sealos/pull/1966
|
||||
* feature(main): fix default registry ip by @cuisongliu in https://github.com/labring/sealos/pull/1965
|
||||
|
||||
## New Contributors
|
||||
|
||||
* @pangqyy made their first contribution in https://github.com/labring/sealos/pull/1721
|
||||
* @Dan81067 made their first contribution in https://github.com/labring/sealos/pull/1786
|
||||
* @BambooSword made their first contribution in https://github.com/labring/sealos/pull/1789
|
||||
* @a1576471428 made their first contribution in https://github.com/labring/sealos/pull/1826
|
||||
* @Raving-hash made their first contribution in https://github.com/labring/sealos/pull/1852
|
||||
* @NTH19 made their first contribution in https://github.com/labring/sealos/pull/1889
|
||||
* @TomatoQt made their first contribution in https://github.com/labring/sealos/pull/1911
|
||||
* @zyj-111 made their first contribution in https://github.com/labring/sealos/pull/1918
|
||||
* @ining7 made their first contribution in https://github.com/labring/sealos/pull/1947
|
||||
* @wxharry made their first contribution in https://github.com/labring/sealos/pull/1955
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.3...v4.1.4-rc1
|
||||
@@ -0,0 +1,191 @@
|
||||
- [v4.1.4-rc2](#v414-rc2httpsgithubcomlabringsealosreleasestagv414-rc2)
|
||||
- [Downloads for v4.1.4-rc2](#downloads-for-v414-rc2)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v4.1.4-rc2](#changelog-since-v414-rc1)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v4.1.4-rc2](https://github.com/labring/sealos/releases/tag/v4.1.4-rc2)
|
||||
|
||||
## Downloads for v4.1.4-rc2
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v4.1.4-rc2.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v4.1.4-rc2.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_4.1.4-rc2_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.4-rc2/sealos_4.1.4-rc2_linux_amd64.tar.gz) |
|
||||
[sealos_4.1.4-rc2_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v4.1.4-rc2/sealos_4.1.4-rc2_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.4-rc2/sealos_4.1.4-rc2_linux_amd64.tar.gz && tar -zxvf sealos_4.1.4-rc2_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
arm64:
|
||||
|
||||
```shell
|
||||
wget https://github.com/labring/sealos/releases/download/v4.1.4-rc2/sealos_4.1.4-rc2_linux_arm64.tar.gz && tar -zxvf sealos_4.1.4-rc2_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
```
|
||||
|
||||
|
||||
## Changelog since v4.1.4-rc1
|
||||
|
||||
### What's Changed
|
||||
|
||||
* feature(main): separate registry from master0 by @xuehaipeng in https://github.com/labring/sealos/pull/1963
|
||||
* feature(main): separate registry from master0 by @cuisongliu in https://github.com/labring/sealos/pull/1970
|
||||
* feature(main): fix already installed buildah by @cuisongliu in https://github.com/labring/sealos/pull/1968
|
||||
* Add docker image builder workflow for service auth by @maslow in https://github.com/labring/sealos/pull/1976
|
||||
* feature(main): fix buildah download and sealos build by @cuisongliu in https://github.com/labring/sealos/pull/1971
|
||||
* docs<git && go-path>: a small number of errors by @cubxxw in https://github.com/labring/sealos/pull/1978
|
||||
* feature(main): add detach for sealos run, never prompt by @cuisongliu in https://github.com/labring/sealos/pull/1979
|
||||
* init whitelist webhook by @fanux in https://github.com/labring/sealos/pull/1972
|
||||
* feature(main): add controllers,webhooks,services ci by @cuisongliu in https://github.com/labring/sealos/pull/1984
|
||||
* feat: use env instead of hard code by @xiao-jay in https://github.com/labring/sealos/pull/1985
|
||||
* Update listCRD func by @zzjin in https://github.com/labring/sealos/pull/1992
|
||||
* feature(main): add auth service deploy ci by @cuisongliu in https://github.com/labring/sealos/pull/1989
|
||||
* feature(main): replace render charts dir to scripts dir by @cuisongliu in https://github.com/labring/sealos/pull/1990
|
||||
* fix: remove prompt arg by @fengxsong in https://github.com/labring/sealos/pull/1999
|
||||
* feature(main): payment controller disable from env by @cuisongliu in https://github.com/labring/sealos/pull/1995
|
||||
* feature(main): add container label for repo by @cuisongliu in https://github.com/labring/sealos/pull/2002
|
||||
* update issue-template by @willzhang in https://github.com/labring/sealos/pull/2005
|
||||
* feature(main): add docs for DEVELOPGUIDE.md by @cuisongliu in https://github.com/labring/sealos/pull/2006
|
||||
* Remove mandatory requirements by @willzhang in https://github.com/labring/sealos/pull/2007
|
||||
* feature(main): add save image to build cmd by @cuisongliu in https://github.com/labring/sealos/pull/1997
|
||||
* GitHub Actions: Deprecating save-state and set-output commands by @muicoder in https://github.com/labring/sealos/pull/2010
|
||||
* feat. image hub by @lingdie in https://github.com/labring/sealos/pull/1988
|
||||
* add imagehub controller deply yaml by @lingdie in https://github.com/labring/sealos/pull/2016
|
||||
* feature(main): add TryParse for loadClusterfile by @cuisongliu in https://github.com/labring/sealos/pull/2017
|
||||
* feature(main): add webhook config to sdk by @cuisongliu in https://github.com/labring/sealos/pull/2013
|
||||
* feature(main): delete pyament env from deploy by @cuisongliu in https://github.com/labring/sealos/pull/2032
|
||||
* fix terminal hardcoded problem by @gitccl in https://github.com/labring/sealos/pull/2028
|
||||
* add infra other field by @wu-xm in https://github.com/labring/sealos/pull/1994
|
||||
* add sealos cloud provider fontend by @zjy365 in https://github.com/labring/sealos/pull/2004
|
||||
* Fix yum package manager command. by @zzjin in https://github.com/labring/sealos/pull/2038
|
||||
* Add affine app demo. by @zzjin in https://github.com/labring/sealos/pull/2039
|
||||
* add build sealos on macos ARM using multipass by @fanux in https://github.com/labring/sealos/pull/2043
|
||||
* feature(main): add BINS=sealos for docs by @cuisongliu in https://github.com/labring/sealos/pull/2052
|
||||
* feature(main): add pyament deploy by @cuisongliu in https://github.com/labring/sealos/pull/2035
|
||||
* fixed sealos run manifests conflict by @fanux in https://github.com/labring/sealos/pull/2048
|
||||
* feature(main): fix guest func for exec shell by @cuisongliu in https://github.com/labring/sealos/pull/2054
|
||||
* add build cloud image docs by @willzhang in https://github.com/labring/sealos/pull/2055
|
||||
* fix: remove dependency to casdoor by @Abingcbc in https://github.com/labring/sealos/pull/2033
|
||||
* fix: misuse of *cluster pointer by @fengxsong in https://github.com/labring/sealos/pull/2057
|
||||
* add development guide - what is sealos by @fanux in https://github.com/labring/sealos/pull/2053
|
||||
* feature(main): fix registry bugs by @cuisongliu in https://github.com/labring/sealos/pull/2060
|
||||
* fix: replace text/template from html/template by @fengxsong in https://github.com/labring/sealos/pull/2067
|
||||
* feature(main): fix gen doc by @cuisongliu in https://github.com/labring/sealos/pull/2070
|
||||
* feature(main): fix user controller deploy by @cuisongliu in https://github.com/labring/sealos/pull/2065
|
||||
* Begin proposal process by @zzjin in https://github.com/labring/sealos/pull/1916
|
||||
* Support ingress static cache by @zzjin in https://github.com/labring/sealos/pull/2072
|
||||
* Start Infra and add status by @wu-xm in https://github.com/labring/sealos/pull/2078
|
||||
* feature(main): fix auth deploy for cluster-image by @cuisongliu in https://github.com/labring/sealos/pull/2083
|
||||
* Update frontend nonRoot user. by @zzjin in https://github.com/labring/sealos/pull/2085
|
||||
* fix: copy registry to the correct path by @fengxsong in https://github.com/labring/sealos/pull/2087
|
||||
* reduction Makefile and add build-multi-arch by @wu-xm in https://github.com/labring/sealos/pull/2093
|
||||
* example: how to run Redis and Pgsql instance on sealos cloud by @cdjianghan in https://github.com/labring/sealos/pull/2104
|
||||
* Update frontend Readme. by @zzjin in https://github.com/labring/sealos/pull/2102
|
||||
* fix typo by @fengxsong in https://github.com/labring/sealos/pull/2113
|
||||
* del:useless go mod by @xiao-jay in https://github.com/labring/sealos/pull/2118
|
||||
* cloud-provider-fontend page by @zjy365 in https://github.com/labring/sealos/pull/2094
|
||||
* docs example : how to use env by @fanux in https://github.com/labring/sealos/pull/2109
|
||||
* fix scp password and support delete scp by @zjy365 in https://github.com/labring/sealos/pull/2119
|
||||
* fixed sealos\docs\4.0\i18n\zh-Hans\getting-started\build-example-cloudimage.md by @loda13 in https://github.com/labring/sealos/pull/2124
|
||||
* fix infra controller status by @fanux in https://github.com/labring/sealos/pull/2128
|
||||
* feat. image hub: datapack rebuild, add finalizer by @lingdie in https://github.com/labring/sealos/pull/2050
|
||||
* bug: fixed using ssh private key to login instance by @fanux in https://github.com/labring/sealos/pull/2133
|
||||
* bug: fixed parse image name and tag by @muicoder in https://github.com/labring/sealos/pull/2135
|
||||
* use user data to permit root login using ssh private key by @fanux in https://github.com/labring/sealos/pull/2136
|
||||
* modify spec and add default value by @zjy365 in https://github.com/labring/sealos/pull/2130
|
||||
* feat: support registries HA by @fengxsong in https://github.com/labring/sealos/pull/2096
|
||||
* fixed cluster operator auto to create kuberentes by @fanux in https://github.com/labring/sealos/pull/2139
|
||||
* fixed infra recocile vms by @fanux in https://github.com/labring/sealos/pull/2142
|
||||
* fix: delete sealer by @xiaohan1202 in https://github.com/labring/sealos/pull/2150
|
||||
* Update README.md, add command for untaint tag when low version by @tanshilingithub in https://github.com/labring/sealos/pull/2149
|
||||
* Init support image-hub get&list. by @zzjin in https://github.com/labring/sealos/pull/2143
|
||||
* scp modify the style of the details page by @zjy365 in https://github.com/labring/sealos/pull/2141
|
||||
* fixed apply cluster on infra by @fanux in https://github.com/labring/sealos/pull/2158
|
||||
* wait for infra create when get cluster by @fanux in https://github.com/labring/sealos/pull/2160
|
||||
* instead echo to tee by @fanux in https://github.com/labring/sealos/pull/2161
|
||||
* Update auto build paths config. by @zzjin in https://github.com/labring/sealos/pull/2162
|
||||
* fixed set system disk to 40G by default, the device name must be /dev… by @fanux in https://github.com/labring/sealos/pull/2164
|
||||
* Update Controller Readme. by @zzjin in https://github.com/labring/sealos/pull/2168
|
||||
* fixed some problem about scp frontend by @zjy365 in https://github.com/labring/sealos/pull/2170
|
||||
* encapsulate the infra api by @zjy365 in https://github.com/labring/sealos/pull/2169
|
||||
* Dev apisix by @zzjin in https://github.com/labring/sealos/pull/2144
|
||||
* Fix the scp timestamp by @zjy365 in https://github.com/labring/sealos/pull/2173
|
||||
* refactor(user): using finalizer utils replace it by @cuisongliu in https://github.com/labring/sealos/pull/2172
|
||||
* feat: run sealos without root privileges by @fengxsong in https://github.com/labring/sealos/pull/2163
|
||||
* Fix: fix aws ec2 price by @xiao-jay in https://github.com/labring/sealos/pull/2174
|
||||
* fix: copy empty merged dir anyway by @fengxsong in https://github.com/labring/sealos/pull/2182
|
||||
* feat: add describe image api and get root device name from ami. by @whybeyoung in https://github.com/labring/sealos/pull/2178
|
||||
* fix: create instance disk size error and adjust user define disk device name by @whybeyoung in https://github.com/labring/sealos/pull/2179
|
||||
* fix: kustomize makefile with a little enhance by @whybeyoung in https://github.com/labring/sealos/pull/2185
|
||||
* fix: coredns crash issue. by @fengxsong in https://github.com/labring/sealos/pull/2180
|
||||
* Refactor ssh copy by @fengxsong in https://github.com/labring/sealos/pull/2186
|
||||
* feat: add back create subcommand and support manually unshare by @fengxsong in https://github.com/labring/sealos/pull/2187
|
||||
* fix: adjust sealos reset process order by @fengxsong in https://github.com/labring/sealos/pull/2190
|
||||
* update readme, add new product show and some descriptions by @fanux in https://github.com/labring/sealos/pull/2188
|
||||
* fix: Clusterfile must has right sort of hosts, host[0] must be master… by @gopherWxf in https://github.com/labring/sealos/pull/2191
|
||||
* Imagehub refactor: delete controller update delete interface. by @lingdie in https://github.com/labring/sealos/pull/2184
|
||||
* fix: remove detach by @xiaohan1202 in https://github.com/labring/sealos/pull/2193
|
||||
* enchance: optimizing ssh copy by @fengxsong in https://github.com/labring/sealos/pull/2195
|
||||
* go get k8s.io/api@v0.24.3 to fixed build failed by @fanux in https://github.com/labring/sealos/pull/2197
|
||||
* Fix infra&cluster operator event pkg. by @zzjin in https://github.com/labring/sealos/pull/2198
|
||||
* refactor(user): rename doReconcile to reconcile by @cuisongliu in https://github.com/labring/sealos/pull/2199
|
||||
* Dev ci to fix controllers dep. by @zzjin in https://github.com/labring/sealos/pull/2201
|
||||
* feat: add more print column like status by @whybeyoung in https://github.com/labring/sealos/pull/2204
|
||||
* feat: add finalizer to stop/terminate aws instance. by @whybeyoung in https://github.com/labring/sealos/pull/2196
|
||||
* fix: reconcile instance count by @xiaohan1202 in https://github.com/labring/sealos/pull/2203
|
||||
* feat: add get volumes api when using get instnaces by @whybeyoung in https://github.com/labring/sealos/pull/2200
|
||||
* feat. sealos login hub.sealos.io by kubeconfig. by @lingdie in https://github.com/labring/sealos/pull/2176
|
||||
* fix: move IsRootless out of pkg/buildah by @fengxsong in https://github.com/labring/sealos/pull/2207
|
||||
* feat. sealos registry hub.sealos.io auth server. by @lingdie in https://github.com/labring/sealos/pull/2177
|
||||
* add appstore product show by @fanux in https://github.com/labring/sealos/pull/2208
|
||||
* Imagehub.deploy by @lingdie in https://github.com/labring/sealos/pull/2214
|
||||
* fix deploy.yaml: add service/hub to workflow. by @lingdie in https://github.com/labring/sealos/pull/2215
|
||||
* feature(main): Support configuration file custom vip by @cuisongliu in https://github.com/labring/sealos/pull/2115
|
||||
* Hub.deploy by @lingdie in https://github.com/labring/sealos/pull/2216
|
||||
* feat: delete key pair by @xiaohan1202 in https://github.com/labring/sealos/pull/2217
|
||||
* fix: only run guest command for app type cloudimage by @fengxsong in https://github.com/labring/sealos/pull/2218
|
||||
* Remove uuid package to build-in crypto. by @zzjin in https://github.com/labring/sealos/pull/2219
|
||||
* Fix go mod caused by #2217 by @zzjin in https://github.com/labring/sealos/pull/2220
|
||||
* hub.deploy by @lingdie in https://github.com/labring/sealos/pull/2221
|
||||
* fix: reconnect when specified error occur with sftp connection by @fengxsong in https://github.com/labring/sealos/pull/2225
|
||||
* fix: replace new line sep by @fengxsong in https://github.com/labring/sealos/pull/2228
|
||||
* feature(main): add delete build file scan by @cuisongliu in https://github.com/labring/sealos/pull/2229
|
||||
* ci: pin ubuntu version in CI to 20.04 by @SignorMercurio in https://github.com/labring/sealos/pull/2235
|
||||
* fix: #2232 force override when the prompted answer is yes by @fengxsong in https://github.com/labring/sealos/pull/2237
|
||||
* fix: get the full root command name by @fengxsong in https://github.com/labring/sealos/pull/2236
|
||||
* feature(main): support v1 and v1alpha2 version cri by @cuisongliu in https://github.com/labring/sealos/pull/2238
|
||||
* feature(main): support sys env by @cuisongliu in https://github.com/labring/sealos/pull/2240
|
||||
* feature(main): add build-in env docs by @cuisongliu in https://github.com/labring/sealos/pull/2241
|
||||
* fix: set tls-verify option default to false by @fengxsong in https://github.com/labring/sealos/pull/2239
|
||||
|
||||
## New Contributors
|
||||
|
||||
* @lingdie made their first contribution in https://github.com/labring/sealos/pull/1988
|
||||
* @wu-xm made their first contribution in https://github.com/labring/sealos/pull/1994
|
||||
* @zjy365 made their first contribution in https://github.com/labring/sealos/pull/2004
|
||||
* @cdjianghan made their first contribution in https://github.com/labring/sealos/pull/2104
|
||||
* @xiaohan1202 made their first contribution in https://github.com/labring/sealos/pull/2150
|
||||
* @tanshilingithub made their first contribution in https://github.com/labring/sealos/pull/2149
|
||||
* @gopherWxf made their first contribution in https://github.com/labring/sealos/pull/2191
|
||||
|
||||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.1.4-rc1...v4.1.4-rc2
|
||||
@@ -0,0 +1,14 @@
|
||||
# CHANGELOGs
|
||||
|
||||
- [CHANGELOG-4.0.0.md](./CHANGELOG-4.0.0.md)
|
||||
- [CHANGELOG-4.1.0-rc1.md](./CHANGELOG-4.1.0-rc1.md)
|
||||
- [CHANGELOG-4.1.0-rc2.md](./CHANGELOG-4.1.0-rc2.md)
|
||||
- [CHANGELOG-4.1.0-rc3.md](./CHANGELOG-4.1.0-rc3.md)
|
||||
- [CHANGELOG-4.1.0.md](./CHANGELOG-4.1.0.md)
|
||||
- [CHANGELOG-4.1.1.md](./CHANGELOG-4.1.1.md)
|
||||
- [CHANGELOG-4.1.2-rc1.md](./CHANGELOG-4.1.2-rc1.md)
|
||||
- [CHANGELOG-4.1.2.md](./CHANGELOG-4.1.2.md)
|
||||
- [CHANGELOG-4.1.3-rc1.md](./CHANGELOG-4.1.3-rc1.md)
|
||||
- [CHANGELOG-4.1.3.md](./CHANGELOG-4.1.3.md)
|
||||
- [CHANGELOG-4.1.4-rc1.md](./CHANGELOG-4.1.4-rc1.md)
|
||||
- [CHANGELOG-4.1.4-rc2.md](./CHANGELOG-4.1.4-rc2.md)
|
||||
Executable
+72
@@ -0,0 +1,72 @@
|
||||
#!/bin/bash
|
||||
# Copyright © 2022 sealos.
|
||||
#
|
||||
# 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.
|
||||
|
||||
cat << EOF > CHANGELOG-${VERSION}.md
|
||||
- [v${VERSION}](#v400)
|
||||
- [Downloads for v${VERSION}](#downloads-for-)
|
||||
- [Source Code](#source-code)
|
||||
- [Client Binaries](#client-binaries)
|
||||
- [Usage](#usage)
|
||||
- [Changelog since v${VERSION}](#changelog-since-)
|
||||
- [NewContributors](#new-contributors)
|
||||
|
||||
|
||||
# [v${VERSION}](https://github.com/labring/sealos/releases/tag/v${VERSION})
|
||||
|
||||
## Downloads for v${VERSION}
|
||||
|
||||
|
||||
### Source Code
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[v${VERSION}.tar.gz](https://github.com/labring/sealos/archive/refs/tags/v${VERSION}.tar.gz) |
|
||||
|
||||
### Client Binaries
|
||||
|
||||
filename |
|
||||
-------- |
|
||||
[sealos_${VERSION}_linux_amd64.tar.gz](https://github.com/labring/sealos/releases/download/v${VERSION}/sealos_${VERSION}_linux_amd64.tar.gz) |
|
||||
[sealos_${VERSION}_linux_arm64.tar.gz](https://github.com/labring/sealos/releases/download/v${VERSION}/sealos_${VERSION}_linux_arm64.tar.gz) |
|
||||
|
||||
## Usage
|
||||
|
||||
amd64:
|
||||
|
||||
\`\`\`shell
|
||||
wget https://github.com/labring/sealos/releases/download/v${VERSION}/sealos_${VERSION}_linux_amd64.tar.gz && \
|
||||
tar -zxvf sealos_${VERSION}_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
\`\`\`
|
||||
|
||||
arm64:
|
||||
|
||||
\`\`\`shell
|
||||
wget https://github.com/labring/sealos/releases/download/v${VERSION}/sealos_${VERSION}_linux_arm64.tar.gz && \
|
||||
tar -zxvf sealos_${VERSION}_linux_arm64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
|
||||
## create a cluster for sealos
|
||||
sealos run labring/kubernetes:v1.24.0 labring/calico:v3.22.1 --masters 192.168.64.2,192.168.64.22,192.168.64.20 --nodes 192.168.64.21,192.168.64.19 --passwd your-own-ssh-passwd
|
||||
\`\`\`
|
||||
|
||||
|
||||
## Changelog since v${VERSION}
|
||||
|
||||
### What's Changed
|
||||
|
||||
|
||||
|
||||
|
||||
EOF
|
||||
+62
-5
@@ -1,50 +1,107 @@
|
||||
中弈 <fhtjob@hotmail.com>
|
||||
中弈 <zhongyi.fht@alibaba-inc.com>
|
||||
aiyijing <aiyijing@live.com>
|
||||
BambooSword <herodreamdeng@gmail.com>
|
||||
Bingchang Chen <19990626.love@163.com>
|
||||
Carson Yang <yangchuansheng33@gmail.com>
|
||||
cdjianghan <52602064+cdjianghan@users.noreply.github.com>
|
||||
Cluas <Cluas@live.cn>
|
||||
cuisongliu <cuisongliu@qq.com>
|
||||
currycan <ansandyzzt@gmail.com>
|
||||
dujiacheng <cleverdove4@163.com>
|
||||
fanux <fanux@sealos.io>
|
||||
fanux <fhtjob@hotmail.com>
|
||||
Feng Ruohang <rh@vonng.com>
|
||||
fengxsong <fengxsong@outlook.com>
|
||||
Ficus <52556187+Ficus-f@users.noreply.github.com>
|
||||
fossabot <badges@fossa.io>
|
||||
fzkun <412657308@qq.com>
|
||||
gebilxs <87237189+gebilxs@users.noreply.github.com>
|
||||
gitccl <60637740+gitccl@users.noreply.github.com>
|
||||
guapi <60637740+gitccl@users.noreply.github.com>
|
||||
Hanamichi <x893675@icloud.com>
|
||||
Hanvans <39867712+Hanvans@users.noreply.github.com>
|
||||
Harry <xiaohanwu12@gmail.com>
|
||||
HongbinZheng <13405999037@139.com>
|
||||
huizhi.szh <huizhi.szh@alibaba-inc.com>
|
||||
HURUIZHE <72481586+HURUIZHE@users.noreply.github.com>
|
||||
ideal <idealities@gmail.com>
|
||||
ImgBotApp <ImgBotHelp@gmail.com>
|
||||
ining7 <85174754+ining7@users.noreply.github.com>
|
||||
jiangyanfei <749985146@qq.com>
|
||||
jimmy <jimmy@kokozu.net>
|
||||
jinnzy <33449123+jinnzy@users.noreply.github.com>
|
||||
jzy <839444083@qq.com>
|
||||
ldseraph <ld.seraph@163.com>
|
||||
leezq <lizhenq2009@gmail.com>
|
||||
lingdie <56745951+lingdie@users.noreply.github.com>
|
||||
liuyuchao <blockchain_lyc@163.com>
|
||||
louis <38313565+oldthreefeng@users.noreply.github.com>
|
||||
louisehong <louisehong4168@gmail.com>
|
||||
luanshaotong <luanshaotong@163.com>
|
||||
Lucien <lucien@lucien.ink>
|
||||
LucienShui <lucien@lucien.ink>
|
||||
Maslow <wangfugen@126.com>
|
||||
Mercurio <32540679+SignorMercurio@users.noreply.github.com>
|
||||
Mercurio <signormercurio@gmail.com>
|
||||
muicoder <muicoder@gmail.com>
|
||||
NTH19 <74389817+NTH19@users.noreply.github.com>
|
||||
oceanwen <oceanwen@bogon.tal-inc.com.cn>
|
||||
oldhtreefeng <louisehong4168@gmail.com>
|
||||
oldthreefeng <38313565+oldthreefeng@users.noreply.github.com>
|
||||
oldthreefeng <louisehong4168@gmail.com>
|
||||
panda-lab <64345457+panda-lab@users.noreply.github.com>
|
||||
pangqyy <93387233+pangqyy@users.noreply.github.com>
|
||||
PatHoo <quith@qq.com>
|
||||
Raving <70306480+Raving-hash@users.noreply.github.com>
|
||||
rick <rick@jenkins-zh.cn>
|
||||
rk <68526782+runkecheng@users.noreply.github.com>
|
||||
runzhliu <runzhliu@tencent.com>
|
||||
Rushmmmc <62433532+Rushmmmc@users.noreply.github.com>
|
||||
Ryan <yangchuansheng33@gmail.com>
|
||||
scott lewis <33612882+dk-lockdown@users.noreply.github.com>
|
||||
sealyun robot <60811237+sealrobot@users.noreply.github.com>
|
||||
Shigure <yiwei5@iflytek.com>
|
||||
shy-Xu <53456509+shy-Xu@users.noreply.github.com>
|
||||
SorryMaker <41097970+CodeSorryMaker@users.noreply.github.com>
|
||||
steven <fhtjob@hotmail.com>
|
||||
svolence <svolence@192.168.0.102>
|
||||
svolence <svolence@gmail.com>
|
||||
tang <296429819@qq.com>
|
||||
tanshilin <114631466+tanshilingithub@users.noreply.github.com>
|
||||
th2zz <tzhang329@gmail.com>
|
||||
TobyZhang <594909494@qq.com>
|
||||
TomatoQt <42081708+TomatoQt@users.noreply.github.com>
|
||||
vimerr <474785153@qq.com>
|
||||
wenshihong <wsh@justep.com>
|
||||
will <willzhmic@outlook.com>
|
||||
wisheen <wisheen@163.com>
|
||||
wuxingzhong <330332812@qq.com>
|
||||
Xia <54404318+Dan81067@users.noreply.github.com>
|
||||
xiao ru xing <xiaoruxing@gmail.com>
|
||||
xiaohan1202 <88967335+xiaohan1202@users.noreply.github.com>
|
||||
xiaopeng-Han <39867712+Hanvans@users.noreply.github.com>
|
||||
xiongxinwei <86140903+3293172751@users.noreply.github.com>
|
||||
xuehaipeng <69886171+xuehaipeng@users.noreply.github.com>
|
||||
xueming <74907579+wu-xm@users.noreply.github.com>
|
||||
yangchuansheng <yangchuansheng33@gmail.com>
|
||||
YanJun-Zhao <52376036+zyj-111@users.noreply.github.com>
|
||||
YAO <yyf1986@users.noreply.github.com>
|
||||
ybyang <10629930+berlinsaint@users.noreply.github.com>
|
||||
ybyang <10629930+whybeyoung@users.noreply.github.com>
|
||||
ysicing <i@ysicing.me>
|
||||
zhangguanzhang <guanzhangzhang@gmail.com>
|
||||
zhangguanzhang <zhangguanzhang@qq.com>
|
||||
zhangguanzhang <zhanggunzhang@qq.com>
|
||||
zhangzhitao <zhangzhitao@lakala.com>
|
||||
zhujingyang <72259332+zjy365@users.noreply.github.com>
|
||||
zsyaoo <2542652@qq.com>
|
||||
zzjin <zzjin@users.noreply.github.com>
|
||||
中弈 <fanux@sealos.io>
|
||||
中弈 <fhtjob@hotmail.com>
|
||||
中弈 <zhongyi.fht@alibaba-inc.com>
|
||||
付亮 <48649837+hellolittlewei@users.noreply.github.com>
|
||||
小朝 <13942156310@163.com>
|
||||
晓杰 <87080562+xiao-jay@users.noreply.github.com>
|
||||
清风 <73975649+gopherWxf@users.noreply.github.com>
|
||||
疯狂的石头 <39077997+fengkuangdestone@users.noreply.github.com>
|
||||
郑黉宾 <zhenghongbin@onemt.com.cn>
|
||||
付亮 <48649837+hellolittlewei@users.noreply.github.com>
|
||||
gitccl <chenchuanle6@gmail.com>
|
||||
JiangtaoLi <a491122844@gmail.com>
|
||||
马斯洛 <wangfugen@126.com>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
---
|
||||
sidebar_position: 5
|
||||
---
|
||||
|
||||
# Kubernetes Support
|
||||
|
||||
|
||||
| k8s version | sealos version | cri version | image version |
|
||||
|-------------|---------------|-------------|---------------------------------------------------------------|
|
||||
| `<1.25` | `>=v4.0.0` | v1alpha2 | labring/kubernetes:v1.24.0 |
|
||||
| `>=1.25` | `>=v4.1.0` | v1alpha2 | labring/kubernetes:v1.25.0 |
|
||||
| `>=1.26` | `>=v4.1.4-rc2` | v1 | labring/kubernetes:v1.26-arm64,labring/kubernetes:v1.26-amd64 |
|
||||
|
||||
|
||||
# [Changelogs](https://github.com/labring/sealos/tree/main/CHANGELOG/README.md)
|
||||
|
||||
Reference in New Issue
Block a user