forked from labring/sealos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add license app to cloud. (labring#4196) Signed-off-by: yy <[email protected]> * feature(main): skip sealos.run rule (labring#4198) * Update README (labring#4197) Signed-off-by: Carson Yang <[email protected]> * add cronjob app to cloud. (labring#4201) Signed-off-by: yy <[email protected]> * fix run init job. (labring#4202) Signed-off-by: yy <[email protected]> * feat service license (labring#4195) * feat: license service Signed-off-by: jingyang <[email protected]> * done * tempalte Signed-off-by: jingyang <[email protected]> * done Signed-off-by: jingyang <[email protected]> * done Signed-off-by: jingyang <[email protected]> * docker build Signed-off-by: jingyang <[email protected]> * done Signed-off-by: jingyang <[email protected]> * license yaml Signed-off-by: jingyang <[email protected]> * image * fix type bg * env * add oss Signed-off-by: jingyang <[email protected]> * done Signed-off-by: jingyang <[email protected]> cluster done Signed-off-by: jingyang <[email protected]> done Signed-off-by: jingyang <[email protected]> cluster done Signed-off-by: jingyang <[email protected]> done cluster Signed-off-by: jingyang <[email protected]> done Signed-off-by: jingyang <[email protected]> * fix build Signed-off-by: jingyang <[email protected]> * fix oss && only zh Signed-off-by: jingyang <[email protected]> * feat checkout wechat Signed-off-by: jingyang <[email protected]> * fix ci Signed-off-by: jingyang <[email protected]> --------- Signed-off-by: jingyang <[email protected]> * Docs: update "What is Sealos?" (labring#4200) Signed-off-by: Carson Yang <[email protected]> * refactor(main): unmount override container (labring#4161) Signed-off-by: cuisongliu <[email protected]> * feat: Create a demo plugin Monitor (labring#4184) * feat: lens demo of web version * chore: add & remove some packages * fix: connect to desktop bug and change icon * init: plugin Monitor init * style: restore frontend/pnpm-workspace.yaml & pnpm-lock.yaml and create new ones in plugins/monitor * restore: frontend/Makefile * restore: frontend/pnpm-workspace.yaml * restore * feat:frontend license app (labring#4203) * feat:frontend license app Signed-off-by: jingyang <[email protected]> * fix Signed-off-by: jingyang <[email protected]> * fix * fix detail Signed-off-by: jingyang <[email protected]> --------- Signed-off-by: jingyang <[email protected]> * Docs: update introduction (labring#4207) Signed-off-by: Carson Yang <[email protected]> * fix license db uri (labring#4211) Signed-off-by: yy <[email protected]> * update price (labring#4212) * docs: Automated Changelog Update for v4.3.7 (labring#4210) * 🤖 add release changelog using robot. Signed-off-by: sealos-release-robot <[email protected]> * Update CHANGELOG.md --------- Signed-off-by: sealos-release-robot <[email protected]> Co-authored-by: cuisongliu <[email protected]> * 🤖 add release changelog using rebot. (labring#4213) * add alt names. (labring#4214) Signed-off-by: yy <[email protected]> * Update the workflow to automatically update the website image after the image is built (labring#4209) Signed-off-by: Carson Yang <[email protected]> * fix(costcenter): fix unit & invoice amount (labring#4194) * feat:docs add private cloud page (labring#4215) * fix scripts (labring#4217) * Fix database provider i18n. (labring#4216) Signed-off-by: zzjin <[email protected]> * fix user avator && url (labring#4218) * fix user avator && url Signed-off-by: jingyang <[email protected]> * modify purchase page Signed-off-by: jingyang <[email protected]> * fix height Signed-off-by: jingyang <[email protected]> * fix docs Signed-off-by: jingyang <[email protected]> * fix params * copy code * license time --------- Signed-off-by: jingyang <[email protected]> * fix oss file name && docs footer (labring#4220) * feat(frontend/desktop):support modify team limit (labring#4221) * add acme resolver monitoring (labring#4223) * feat:docs language-differentiated domain names (labring#4226) * feat:standard cluster purchase process (labring#4225) * feat:standard cluster purchase process Signed-off-by: jingyang <[email protected]> * fix cronjob Signed-off-by: jingyang <[email protected]> --------- Signed-off-by: jingyang <[email protected]> * add cloud release ci. Signed-off-by: yy <[email protected]> --------- Signed-off-by: yy <[email protected]> Signed-off-by: Carson Yang <[email protected]> Signed-off-by: jingyang <[email protected]> Signed-off-by: cuisongliu <[email protected]> Signed-off-by: sealos-release-robot <[email protected]> Signed-off-by: zzjin <[email protected]> Co-authored-by: cuisongliu <[email protected]> Co-authored-by: Carson Yang <[email protected]> Co-authored-by: zhujingyang <[email protected]> Co-authored-by: Wishrem <[email protected]> Co-authored-by: Jiahui <[email protected]> Co-authored-by: sealos-release-robot <[email protected]> Co-authored-by: xudaotutou <[email protected]> Co-authored-by: zzjin <[email protected]>
- Loading branch information
1 parent
b868c75
commit ca5dfca
Showing
462 changed files
with
37,279 additions
and
561 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Release Cloud | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
|
||
env: | ||
# Common versions | ||
GO_VERSION: "1.20" | ||
DEFAULT_OWNER: "labring" | ||
TAG: ${{ github.event.release.tag_name }} | ||
|
||
jobs: | ||
save-sealos: | ||
uses: ./.github/workflows/import-save-sealos.yml | ||
|
||
release-controllers: | ||
needs: | ||
- save-sealos | ||
uses: ./.github/workflows/controllers.yml | ||
with: | ||
push_image: true | ||
push_image_tag: ${{ env.TAG }} | ||
|
||
release-frontends: | ||
needs: | ||
- save-sealos | ||
uses: ./.github/workflows/controllers.yml | ||
with: | ||
push_image: true | ||
push_image_tag: ${{ env.TAG }} | ||
uses: ./.github/workflows/frontend.yml | ||
|
||
release-service: | ||
needs: | ||
- save-sealos | ||
uses: ./.github/workflows/controllers.yml | ||
with: | ||
push_image: true | ||
push_image_tag: ${{ env.TAG }} | ||
uses: ./.github/workflows/services.yml | ||
|
||
release-cloud: | ||
needs: | ||
- save-sealos | ||
- release-controllers | ||
- release-frontends | ||
- release-service | ||
uses: ./.github/workflows/cloud.yml | ||
with: | ||
push_image: true | ||
push_image_tag: ${{ env.TAG }} | ||
build_from: ${{ env.TAG }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Welcome to the v4.3.7 release of Sealos!🎉🎉! | ||
|
||
|
||
|
||
## Changelog | ||
### Other work | ||
* 311213aa175c71120f6f91ce616c74e8ab05661d: :bug: fix env merge for sealos run (#4144) (@cuisongliu) | ||
* 5cd471632c42fd1535dcfe542c9faa148a7b4ec3: feature(main): support crun youki gvisor kata (#4189) (#4191) (#4192) (@sealos-ci-robot) | ||
* 4057aacb494206704dcf23441bd0ec9d4e653235: refactor(main): fixed golang lint version (#4141) (#4142) (#4143) (@sealos-ci-robot) | ||
* 579a0163baae48f4547b394530e8bc31196da8ef: refactor(main): skip success exec (#4162) (#4170) (#4175) (@sealos-ci-robot) | ||
* f39b23394b9d06774cf096de7d342201d4b264ca: refactor(main): unmount override container (#4161) (#4208) (@cuisongliu) | ||
|
||
**Full Changelog**: https://github.com/labring/sealos/compare/v4.3.7-rc1...v4.3.7 | ||
|
||
See [the CHANGELOG](https://github.com/labring/sealos/blob/main/CHANGELOG/CHANGELOG.md) for more details. | ||
|
||
Your patronage towards Sealos is greatly appreciated 🎉🎉. | ||
|
||
If you encounter any problems during its usage, please create an issue in the [GitHub repository](https://github.com/labring/sealos), we're committed to resolving your problem as soon as possible. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Welcome to the v5.0.0-beta1 release of Sealos!🎉🎉! | ||
|
||
|
||
|
||
## Changelog | ||
### New Features | ||
* c35222490838e9aeb22118ff9f3fd2b0961fdffc: feat: Create a demo plugin Monitor (#4184) (@Wishrem) | ||
* 3bc6c3cb49bfcbb5706fe1afea71eb149dc2399c: feat: imporve sealos cloud install script (#4181) (@lingdie) | ||
* fb52ae20aa9e82295d43a526a612e69df222503e: feat:frontend license app (#4203) (@zjy365) | ||
### Bug fixes | ||
* a3d7b2bd66db557a2e6f8bd4e09457f64e86453b: fix(costcenter): fix unit & invoice amount (#4185) (@xudaotutou) | ||
### Other work | ||
* 52a396ab6a83eaa652c3e8a1c26320a7bb96bbee: Docs: Update the company's information (#4193) (@yangchuansheng) | ||
* 58058204c00f8adbc00cf30932e02ece934375c4: Docs: add ci workflow for building Sealos Docs Site Docker image (#4177) (@yangchuansheng) | ||
* b6be5be640ae406639ccf2e3423923eb03a05069: Docs: add workflow for previwing docs site (#4186) (@yangchuansheng) | ||
* 8f246bf2dca837760dfc741b33b0a8998352be53: Docs: auto copy i18n files to website folder (#4176) (@yangchuansheng) | ||
* f37b27cd5cb6b2f94b2130480dc77d64fc9c331d: Docs: update "What is Sealos?" (#4200) (@yangchuansheng) | ||
* 384bd8dd36c0c1171b575dfd39d4c17db222efb0: Docs: update introduction (#4207) (@yangchuansheng) | ||
* 74b95f1a8fe063ec4a659beccd68a51affa36c9e: Fix typo for "Preview Sealos Docs Site" workflow (#4190) (@yangchuansheng) | ||
* 961d01a364918bf603b5e99fdabee6aa0391a630: Update README (#4197) (@yangchuansheng) | ||
* 2015389e3f5eb2c28d2eea132c0abec5f7cbb442: Update README.md (#4180) (@fanux) | ||
* b868c75d7d12cb89798c6bc5b37e8702f05689c6: Update/pricing (#4182) (@bxy4543) | ||
* 97bd6727a20d678389558d93c55735184a97b9df: add cronjob app to cloud. (#4201) (@lingdie) | ||
* 5cee7fdd982054d140b89fae875430625405fb01: add license app to cloud. (#4196) (@lingdie) | ||
* bd118edbe4bde0fd2f72e4123078048cd87c1b9b: change _ to - (#4183) (@lingdie) | ||
* 2d55ae311c009377f966ff78115a2537a2a4e3d1: docs: Automated Changelog Update for v4.3.7 (#4210) (@sealos-release-robot) | ||
* c726742f53c98aa38296585e3890eeb5816f54d8: feat service license (#4195) (@zjy365) | ||
* 69ee7b309df8caaff6fbde59b7b5ad0440051ce9: feature(main): skip sealos.run rule (#4198) (@cuisongliu) | ||
* 8476d8190de75fe13a46c34b5f4ca403b1a59b6e: feature(main): support crun youki gvisor kata (#4189) (@cuisongliu) | ||
* 5c71c5498d3576cf5c2a64dc3c1e72ce92a32031: fix license db uri (#4211) (@lingdie) | ||
* 1c91ef0b6f676522b60c4441b0c8d1dfecf76884: fix run init job. (#4202) (@lingdie) | ||
* 4fed20a298b95f89782d84ad9349f456efdd0646: refactor(main): unmount override container (#4161) (@cuisongliu) | ||
* 5878953036c4516e833c7016c42caeff25fb3905: update price (#4212) (@bxy4543) | ||
* 8e7207f80872a47f2ea921d63b9737eff80c1118: 🤖 add release changelog using rebot. (#4171) (@sealos-release-robot) | ||
|
||
**Full Changelog**: https://github.com/labring/sealos/compare/v5.0.0-alpha2...v5.0.0-beta1 | ||
|
||
See [the CHANGELOG](https://github.com/labring/sealos/blob/main/CHANGELOG/CHANGELOG.md) for more details. | ||
|
||
Your patronage towards Sealos is greatly appreciated 🎉🎉. | ||
|
||
If you encounter any problems during its usage, please create an issue in the [GitHub repository](https://github.com/labring/sealos), we're committed to resolving your problem as soon as possible. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.