├── .github └── workflows │ ├── generator.yml │ ├── go.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── docs ├── aliyun-shanghai │ ├── README.md │ ├── apps.md │ ├── laf.md │ ├── rootfs.md │ └── sealos.md └── docker │ ├── README.md │ ├── apps.md │ ├── laf.md │ ├── rootfs.md │ └── sealos.md ├── download.sh ├── generator ├── default.go ├── default_test.go ├── markdown │ ├── interface.go │ ├── other.md.go │ ├── other.md_test.go │ ├── readme.md.go │ └── readme.md_test.go ├── registry │ ├── crane.go │ └── crane_test.go ├── repos.go ├── repos_test.go ├── types │ ├── sort.go │ ├── sort_test.go │ └── types.go └── utils │ ├── http.go │ ├── retry.go │ └── string.go ├── go.mod ├── go.sum ├── main.go └── tmp ├── README.md ├── apps.md ├── laf.md ├── rootfs.md └── sealos.md /.github/workflows/generator.yml: -------------------------------------------------------------------------------- 1 | name: Generator 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: '0 8 * * *' 7 | jobs: 8 | generator: 9 | runs-on: ubuntu-20.04 10 | steps: 11 | - name: Checkout 12 | uses: actions/checkout@v3 13 | with: 14 | fetch-depth: 0 15 | - name: auto generator by dockerhub 16 | run: | 17 | bash download.sh 18 | export SYNC_DIR=docs/docker 19 | export SYNC_HUB=docker.io/labring 20 | /tmp/cluster-image-docs 21 | - name: auto generator by aliyun 22 | run: | 23 | export SYNC_DIR=docs/aliyun-shanghai 24 | export SYNC_HUB=registry.cn-shanghai.aliyuncs.com/labring 25 | /tmp/cluster-image-docs 26 | - uses: peter-evans/create-pull-request@v5 27 | with: 28 | title: 'workflow: Automated Workflow Update for ${{steps.get-current-tag.outputs.tag }}' 29 | body: | 30 | Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action 31 | commit-message: | 32 | 🤖 add workflow change for images. 33 | branch: workflow 34 | base: main 35 | signoff: true 36 | delete-branch: true 37 | token: ${{ secrets.GH_PAT }} 38 | reviewers: cuisongliu 39 | branch-suffix: short-commit-hash 40 | labels: sync-docs 41 | committer: sealos-ci-robot 42 | author: sealos-ci-robot 43 | -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- 1 | name: GO 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: [ "main" ] 7 | paths-ignore: 8 | - "docs/**" 9 | - "tmp/**" 10 | - "**/*.md" 11 | pull_request: 12 | branches: [ "*" ] 13 | paths-ignore: 14 | - "docs/**" 15 | - "tmp/**" 16 | - "**/*.md" 17 | jobs: 18 | 19 | build: 20 | name: Build 21 | runs-on: ubuntu-latest 22 | steps: 23 | 24 | - name: Set up Go 1.x 25 | uses: actions/setup-go@v2 26 | with: 27 | go-version: 1.20.x 28 | 29 | - name: Check out code into the Go module directory 30 | uses: actions/checkout@v2 31 | 32 | - name: Run GoReleaser 33 | uses: goreleaser/goreleaser-action@v1 34 | with: 35 | version: latest 36 | args: build --snapshot --rm-dist --timeout=1h 37 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | push: 5 | branches-ignore: 6 | - '**' 7 | tags: 8 | - '*' 9 | 10 | jobs: 11 | goreleaser: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout 15 | uses: actions/checkout@v3 16 | with: 17 | fetch-depth: 0 18 | 19 | - name: Set up Go 20 | uses: actions/setup-go@master 21 | with: 22 | go-version: 1.20.x 23 | 24 | - name: Run GoReleaser 25 | uses: goreleaser/goreleaser-action@v3 26 | with: 27 | version: latest 28 | args: release --timeout=1h 29 | env: 30 | GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }} 31 | VERSION: ${{ steps.prepare.outputs.tag_name }} 32 | USERNAME: ${{ github.repository_owner }} 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- 1 | before: 2 | hooks: 3 | # You may remove this if you don't use go modules. 4 | - go mod download 5 | # you may remove this if you don't need go generate 6 | - go generate ./... 7 | builds: 8 | - env: 9 | - CGO_ENABLED=0 10 | goos: 11 | - linux 12 | - darwin 13 | - windows 14 | goarch: 15 | - amd64 16 | - arm64 17 | 18 | #archives: 19 | # - replacements: 20 | # darwin: darwin 21 | # linux: linux 22 | # windows: windows 23 | # amd64: amd64 24 | # arm64: arm64 25 | checksum: 26 | name_template: 'checksums.txt' 27 | snapshot: 28 | name_template: "{{ .Tag }}-next" 29 | changelog: 30 | sort: asc 31 | use: github 32 | filters: 33 | exclude: 34 | - '^test:' 35 | - '^chore' 36 | - 'merge conflict' 37 | - Merge pull request 38 | - Merge remote-tracking branch 39 | - Merge branch 40 | - go mod tidy 41 | groups: 42 | - title: Dependency updates 43 | regexp: '^.*?(feat|fix)\(deps\)!?:.+$' 44 | order: 300 45 | - title: 'New Features' 46 | regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$' 47 | order: 100 48 | - title: 'Security updates' 49 | regexp: '^.*?sec(\([[:word:]]+\))??!?:.+$' 50 | order: 150 51 | - title: 'Bug fixes' 52 | regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$' 53 | order: 200 54 | - title: 'Documentation updates' 55 | regexp: ^.*?doc(\([[:word:]]+\))??!?:.+$ 56 | order: 400 57 | - title: 'Build process updates' 58 | regexp: ^.*?build(\([[:word:]]+\))??!?:.+$ 59 | order: 400 60 | - title: Other work 61 | order: 9999 62 | 63 | 64 | release: 65 | prerelease: auto 66 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cluster Image Documentation 2 | 3 | Welcome to the Cluster Image Documentation repository! This repository contains documentation for various cluster images. Each image documentation can be found in its respective subdirectory. 4 | 5 | ## Available Image Documentation 6 | 7 | ### Docker Hub Images 8 | 9 | - [Rootfs Image](docs/docker/rootfs.md) 10 | - [Sealos Image](docs/docker/sealos.md) 11 | - [Laf Image](docs/docker/laf.md) 12 | - [App Image](docs/docker/apps.md) 13 | 14 | ### Aliyun Shanghai Images 15 | 16 | - [Rootfs Image](docs/aliyun-shanghai/rootfs.md) 17 | - [Sealos Image](docs/aliyun-shanghai/sealos.md) 18 | - [Laf Image](docs/aliyun-shanghai/laf.md) 19 | - [App Image](docs/aliyun-shanghai/apps.md) 20 | 21 | Please navigate to the above links to access the detailed documentation for each image category. 22 | 23 | ## Contributing 24 | 25 | If you would like to contribute to the documentation or make improvements, you can fork this repository, make your changes, and submit a pull request. 26 | -------------------------------------------------------------------------------- /docs/aliyun-shanghai/README.md: -------------------------------------------------------------------------------- 1 | # Cluster Image Directory 2 | 3 | Welcome to our documentation folder, where we list four distinct types of cluster images: Rootfs Images, Sealos-related Images, Laf-related Images, and Images for various applications. 4 | 5 | - [Rootfs Images](./rootfs.md) 6 | - [Sealos Images](./sealos.md) 7 | - [Laf Images](./laf.md) 8 | - [Application Images](./apps.md) 9 | 10 | Please navigate to the above links to access the detailed documentation for each image category. 11 | 12 | ## Image Repository 13 | 14 | The images in this documentation are hosted on our dedicated image repository: `registry.cn-shanghai.aliyuncs.com` 15 | 16 | -------------------------------------------------------------------------------- /docs/aliyun-shanghai/laf.md: -------------------------------------------------------------------------------- 1 | # Laf Image Versions 2 | 3 | Here are the versions of the images along with their corresponding links: 4 | 5 | ### [laf](https://github.com/labring/laf) 6 | 7 | - [registry.cn-shanghai.aliyuncs.com/labring/laf:latest](https://explore.ggcr.dev/?image=registry.cn-shanghai.aliyuncs.com/labring/laf:latest) 8 | - [registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.14](https://explore.ggcr.dev/?image=registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.14) 9 | - [registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.12](https://explore.ggcr.dev/?image=registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.12) 10 | - [registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.11](https://explore.ggcr.dev/?image=registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.11) 11 | - [registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.10](https://explore.ggcr.dev/?image=registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.10) 12 | - [registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.9](https://explore.ggcr.dev/?image=registry.cn-shanghai.aliyuncs.com/labring/laf:v1.0.0-beta.9) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/docker/README.md: -------------------------------------------------------------------------------- 1 | # Cluster Image Directory 2 | 3 | Welcome to our documentation folder, where we list four distinct types of cluster images: Rootfs Images, Sealos-related Images, Laf-related Images, and Images for various applications. 4 | 5 | - [Rootfs Images](./rootfs.md) 6 | - [Sealos Images](./sealos.md) 7 | - [Laf Images](./laf.md) 8 | - [Application Images](./apps.md) 9 | 10 | Please navigate to the above links to access the detailed documentation for each image category. 11 | 12 | ## Image Repository 13 | 14 | The images in this documentation are hosted on our dedicated image repository: `docker.io` 15 | 16 | -------------------------------------------------------------------------------- /docs/docker/laf.md: -------------------------------------------------------------------------------- 1 | # Laf Image Versions 2 | 3 | Here are the versions of the images along with their corresponding links: 4 | 5 | ### [laf](https://github.com/labring/laf) 6 | 7 | - [docker.io/labring/laf:latest](https://explore.ggcr.dev/?image=docker.io/labring/laf:latest) 8 | - [docker.io/labring/laf:v1.0.0-beta.14](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.14) 9 | - [docker.io/labring/laf:v1.0.0-beta.12](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.12) 10 | - [docker.io/labring/laf:v1.0.0-beta.11](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.11) 11 | - [docker.io/labring/laf:v1.0.0-beta.10](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.10) 12 | - [docker.io/labring/laf:v1.0.0-beta.9](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.9) 13 | 14 | 15 | -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # 仓库名称 4 | repository="labring-actions/cluster-image-docs" 5 | 6 | # 获取最新release的版本号 7 | latest_release=$(curl -s "https://api.github.com/repos/$repository/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') 8 | # 构建下载链接 9 | download_url="https://github.com/$repository/releases/download/$latest_release/cluster-image-docs_${latest_release#v}_linux_amd64.tar.gz" 10 | 11 | # 下载最新release 12 | wget $download_url 13 | 14 | # 解压缩下载的文件(如果是tar.gz格式) 15 | tar -zxvf cluster-image-docs_${latest_release#v}_linux_amd64.tar.gz cluster-image-docs 16 | 17 | # 删除压缩包 18 | rm -rf cluster-image-docs_${latest_release#v}_linux_amd64.tar.gz 19 | 20 | chmod a+x cluster-image-docs 21 | 22 | mkdir "/tmp" 23 | 24 | mv cluster-image-docs "/tmp" 25 | -------------------------------------------------------------------------------- /generator/default.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package generator 18 | 19 | import ( 20 | "context" 21 | "github.com/cuisongliu/logger" 22 | "github.com/labring-actions/cluster-image-docs/generator/markdown" 23 | "github.com/labring-actions/cluster-image-docs/generator/types" 24 | "golang.org/x/sync/errgroup" 25 | "os" 26 | "path/filepath" 27 | ) 28 | 29 | func Do() { 30 | logger.Cfg(true, false) 31 | syncDir, _ := os.LookupEnv("SYNC_DIR") 32 | if syncDir == "" { 33 | logger.Fatal("SYNC_DIR is empty") 34 | return 35 | } 36 | logger.Info("using syncDir %s", syncDir) 37 | err := os.MkdirAll(syncDir, 0700|0055) 38 | if err != nil { 39 | logger.Fatal("mkdir failed: %v", err) 40 | return 41 | } 42 | 43 | syncHub, _ := os.LookupEnv("SYNC_HUB") 44 | if syncHub == "" { 45 | syncHub = "docker.io/labring" 46 | } 47 | 48 | err = autoRemoveGenerator(syncDir) 49 | if err != nil { 50 | logger.Fatal("autoRemoveGenerator sync config error %s", err.Error()) 51 | return 52 | } 53 | got, err := fetchDockerHubAllRepo(syncHub) 54 | if err != nil { 55 | logger.Fatal("fetchDockerHubAllRepo error %s", err.Error()) 56 | return 57 | } 58 | logger.Info("get docker hub all repo success") 59 | goRunData := make(map[markdown.Type][]types.ImageInfo) 60 | if got != nil { 61 | types.SortByImageInfo(got.Rootfs) 62 | types.SortByImageInfo(got.Sealos) 63 | types.SortByImageInfo(got.Laf) 64 | types.SortByImageInfo(got.Apps) 65 | goRunData[markdown.Rootfs] = got.Rootfs 66 | goRunData[markdown.Sealos] = got.Sealos 67 | goRunData[markdown.Laf] = got.Laf 68 | goRunData[markdown.Apps] = got.Apps 69 | } 70 | 71 | if err = markdown.NewReadme(syncHub).Generator(syncDir); err != nil { 72 | logger.Fatal("markdown.NewReadme().Generator error %s", err.Error()) 73 | return 74 | } 75 | 76 | g, _ := errgroup.WithContext(context.Background()) 77 | for k, v := range goRunData { 78 | // Capture the range variables. 79 | k, v := k, v 80 | g.Go(func() error { 81 | if len(v) == 0 { 82 | return nil 83 | } 84 | if err = markdown.New(k, syncHub, v).Generator(syncDir); err != nil { 85 | return err 86 | } 87 | return nil 88 | }) 89 | } 90 | 91 | // Wait for all goroutines to finish and return the first error. 92 | if err = g.Wait(); err != nil { 93 | logger.Fatal(err.Error()) 94 | } 95 | } 96 | 97 | func autoRemoveGenerator(dir string) error { 98 | if err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error { 99 | if err != nil { 100 | return err 101 | } 102 | 103 | if !info.IsDir() { 104 | os.Remove(path) 105 | } 106 | return nil 107 | }); err != nil { 108 | return err 109 | } 110 | logger.Info("auto remove %s files success", dir) 111 | return nil 112 | } 113 | -------------------------------------------------------------------------------- /generator/default_test.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package generator 18 | 19 | import ( 20 | "os" 21 | "testing" 22 | ) 23 | 24 | func TestDo(t *testing.T) { 25 | os.Setenv("SYNC_DIR", "../tmp") 26 | os.Setenv("SYNC_HUB", "docker.io/labring") 27 | Do() 28 | os.Unsetenv("SYNC_DIR") 29 | os.Unsetenv("SYNC_HUB") 30 | } 31 | -------------------------------------------------------------------------------- /generator/markdown/interface.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package markdown 18 | 19 | type Template interface { 20 | Generator(dir string) error 21 | } 22 | -------------------------------------------------------------------------------- /generator/markdown/other.md.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package markdown 18 | 19 | import ( 20 | "github.com/cuisongliu/logger" 21 | "github.com/labring-actions/cluster-image-docs/generator/types" 22 | "html/template" 23 | "os" 24 | "path" 25 | "strings" 26 | ) 27 | 28 | const otherTemplate = `# {{.Type}} Image Versions 29 | {{ $registry := .Registry }}{{ $repo := .Repo }} 30 | Here are the versions of the images along with their corresponding links: 31 | {{range .Data}}{{ $data := . }} 32 | ### [{{ $data.Name }}]({{$data.Url}}) 33 | 34 | {{range .Tags}}- [{{$registry}}/{{ $repo }}/{{$data.Name }}:{{ . }}](https://explore.ggcr.dev/?image={{$registry}}/{{$repo}}/{{ $data.Name }}:{{ . }}) 35 | {{end}} 36 | {{end}} 37 | ` 38 | 39 | type Type string 40 | 41 | const ( 42 | Rootfs Type = "Rootfs" 43 | Sealos Type = "Sealos" 44 | Laf Type = "Laf" 45 | Apps Type = "Apps" 46 | ) 47 | 48 | type other struct { 49 | Type Type 50 | Data []types.ImageInfo 51 | Registry string 52 | Repo string 53 | } 54 | 55 | func (r *other) Generator(dir string) error { 56 | fname := r.filename() 57 | f, err := os.Create(path.Join(dir, fname)) 58 | if err != nil { 59 | return err 60 | } 61 | defer f.Close() 62 | t := template.Must(template.New("markdown").Parse(otherTemplate)) 63 | err = t.Execute(f, r) 64 | if err != nil { 65 | return err 66 | } 67 | logger.Info("generator markdown %s success", fname) 68 | return nil 69 | } 70 | 71 | func (r *other) filename() string { 72 | switch r.Type { 73 | case Rootfs: 74 | return "rootfs.md" 75 | case Sealos: 76 | return "sealos.md" 77 | case Laf: 78 | return "laf.md" 79 | case Apps: 80 | return "apps.md" 81 | } 82 | return "" 83 | } 84 | 85 | func New(mdType Type, repoAddr string, data []types.ImageInfo) Template { 86 | registryArr := strings.Split(repoAddr, "/") 87 | return &other{ 88 | Type: mdType, 89 | Data: data, 90 | Registry: registryArr[0], 91 | Repo: registryArr[1], 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /generator/markdown/other.md_test.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package markdown 18 | 19 | import ( 20 | "github.com/labring-actions/cluster-image-docs/generator/types" 21 | "testing" 22 | ) 23 | 24 | func Test_other_Generator(t *testing.T) { 25 | type fields struct { 26 | Type Type 27 | Data []types.ImageInfo 28 | Registry string 29 | Repo string 30 | } 31 | type args struct { 32 | dir string 33 | } 34 | tests := []struct { 35 | name string 36 | fields fields 37 | args args 38 | wantErr bool 39 | }{ 40 | { 41 | name: "default", 42 | fields: fields{ 43 | Type: Apps, 44 | Data: []types.ImageInfo{ 45 | { 46 | Name: "nginx", 47 | Tags: []string{ 48 | "latest", 49 | "v1.1.1", 50 | "v2.1.1", 51 | }, 52 | }, 53 | }, 54 | Registry: "docker.io", 55 | Repo: "labring", 56 | }, 57 | args: args{ 58 | dir: "../../tmp", 59 | }, 60 | wantErr: false, 61 | }, 62 | } 63 | for _, tt := range tests { 64 | t.Run(tt.name, func(t *testing.T) { 65 | r := &other{ 66 | Type: tt.fields.Type, 67 | Data: tt.fields.Data, 68 | Registry: tt.fields.Registry, 69 | Repo: tt.fields.Repo, 70 | } 71 | if err := r.Generator(tt.args.dir); (err != nil) != tt.wantErr { 72 | t.Errorf("Generator() error = %v, wantErr %v", err, tt.wantErr) 73 | } 74 | }) 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /generator/markdown/readme.md.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package markdown 18 | 19 | import ( 20 | "fmt" 21 | "os" 22 | "path" 23 | "strings" 24 | ) 25 | 26 | const readmeTemplate = `# Cluster Image Directory 27 | 28 | Welcome to our documentation folder, where we list four distinct types of cluster images: Rootfs Images, Sealos-related Images, Laf-related Images, and Images for various applications. 29 | 30 | - [Rootfs Images](./rootfs.md) 31 | - [Sealos Images](./sealos.md) 32 | - [Laf Images](./laf.md) 33 | - [Application Images](./apps.md) 34 | 35 | Please navigate to the above links to access the detailed documentation for each image category. 36 | 37 | ## Image Repository 38 | 39 | The images in this documentation are hosted on our dedicated image repository: %s 40 | 41 | ` 42 | 43 | type readme struct { 44 | addr string 45 | } 46 | 47 | func (r *readme) Generator(dir string) error { 48 | return os.WriteFile(path.Join(dir, "README.md"), []byte(fmt.Sprintf(readmeTemplate, "`"+r.addr+"`")), 0644) 49 | } 50 | 51 | func NewReadme(addr string) Template { 52 | registryArr := strings.Split(addr, "/") 53 | return &readme{addr: registryArr[0]} 54 | } 55 | -------------------------------------------------------------------------------- /generator/markdown/readme.md_test.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package markdown 18 | 19 | import "testing" 20 | 21 | func Test_readme_Generator(t *testing.T) { 22 | type fields struct { 23 | addr string 24 | } 25 | type args struct { 26 | dir string 27 | } 28 | tests := []struct { 29 | name string 30 | fields fields 31 | args args 32 | wantErr bool 33 | }{ 34 | { 35 | name: "default", 36 | fields: fields{ 37 | addr: "docker.io", 38 | }, 39 | args: args{ 40 | dir: "../../tmp", 41 | }, 42 | wantErr: false, 43 | }, 44 | } 45 | for _, tt := range tests { 46 | t.Run(tt.name, func(t *testing.T) { 47 | r := &readme{ 48 | addr: tt.fields.addr, 49 | } 50 | if err := r.Generator(tt.args.dir); (err != nil) != tt.wantErr { 51 | t.Errorf("Generator() error = %v, wantErr %v", err, tt.wantErr) 52 | } 53 | }) 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /generator/registry/crane.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package registry 18 | 19 | import ( 20 | "context" 21 | "fmt" 22 | "github.com/google/go-containerregistry/pkg/crane" 23 | "github.com/google/go-containerregistry/pkg/name" 24 | "github.com/google/go-containerregistry/pkg/v1/remote" 25 | "golang.org/x/mod/semver" 26 | "sort" 27 | "strings" 28 | ) 29 | 30 | func SkipPlatform(tag string) bool { 31 | if strings.HasSuffix(tag, "arm64") || strings.HasSuffix(tag, "amd64") { 32 | return false 33 | } 34 | return true 35 | } 36 | 37 | func ListTags(ctx context.Context, src string, filter func(tag string) bool) ([]string, error) { 38 | options := make([]crane.Option, 0) 39 | o := crane.GetOptions(options...) 40 | 41 | repo, err := name.NewRepository(src, o.Name...) 42 | if err != nil { 43 | return nil, fmt.Errorf("parsing repo %q: %w", src, err) 44 | } 45 | 46 | puller, err := remote.NewPuller(o.Remote...) 47 | if err != nil { 48 | return nil, err 49 | } 50 | 51 | lister, err := puller.Lister(ctx, repo) 52 | if err != nil { 53 | return nil, fmt.Errorf("reading tags for %s: %w", repo, err) 54 | } 55 | 56 | versions := make([]string, 0) 57 | 58 | for lister.HasNext() { 59 | tags, err := lister.Next(ctx) 60 | if err != nil { 61 | return nil, err 62 | } 63 | for _, tag := range tags.Tags { 64 | newTag := tag 65 | if filter != nil && !filter(tag) { 66 | continue 67 | } 68 | versions = append(versions, newTag) 69 | } 70 | } 71 | semver.Sort(versions) 72 | sort.Sort(sort.Reverse(semver.ByVersion(versions))) 73 | return versions, nil 74 | } 75 | -------------------------------------------------------------------------------- /generator/registry/crane_test.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package registry 18 | 19 | import ( 20 | "context" 21 | "testing" 22 | ) 23 | 24 | func Test_list(t *testing.T) { 25 | tags, err := ListTags(context.TODO(), "labring/helm", SkipPlatform) 26 | t.Logf("%+v", tags) 27 | t.Logf("%+v", err) 28 | } 29 | -------------------------------------------------------------------------------- /generator/repos.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package generator 18 | 19 | import ( 20 | "context" 21 | "encoding/json" 22 | "fmt" 23 | "github.com/cuisongliu/logger" 24 | "github.com/labring-actions/cluster-image-docs/generator/registry" 25 | "github.com/labring-actions/cluster-image-docs/generator/types" 26 | "github.com/labring-actions/cluster-image-docs/generator/utils" 27 | "golang.org/x/sync/errgroup" 28 | "strings" 29 | "sync" 30 | ) 31 | 32 | var kubeRepos = []string{"kubernetes", "kubernetes-crio", "kubernetes-docker", "k3s"} 33 | 34 | func fetchDockerHubAllRepo(registryRepoName string) (*types.RepoInfo, error) { 35 | type Repo struct { 36 | Name string `json:"name"` 37 | } 38 | 39 | type Repositories struct { 40 | Results []Repo `json:"results"` 41 | Next string `json:"next"` 42 | } 43 | dockerAPI := "https://hub.docker.com/v2/repositories/labring?page_size=10" 44 | repos := &types.RepoInfo{ 45 | Rootfs: make([]types.ImageInfo, 0), 46 | Sealos: make([]types.ImageInfo, 0), 47 | Laf: make([]types.ImageInfo, 0), 48 | Apps: make([]types.ImageInfo, 0), 49 | } 50 | var reposMutex sync.Mutex 51 | 52 | if err := utils.Retry(func() error { 53 | for dockerAPI != "" { 54 | logger.Debug("fetch dockerhub url: %s", dockerAPI) 55 | data, err := utils.Request(dockerAPI, "GET", []byte(""), 0) 56 | if err != nil { 57 | return err 58 | } 59 | var repositories Repositories 60 | if err = json.Unmarshal(data, &repositories); err != nil { 61 | return err 62 | } 63 | eg, _ := errgroup.WithContext(context.Background()) 64 | 65 | for _, repo := range repositories.Results { 66 | repoName := repo.Name 67 | eg.Go(func() error { 68 | filterFn := registry.SkipPlatform 69 | if strings.HasPrefix(repoName, "sealos") || strings.HasPrefix(repoName, "laf") { 70 | filterFn = func(tag string) bool { 71 | if strings.HasPrefix(tag, "v") || tag == "latest" { 72 | return registry.SkipPlatform(tag) 73 | } 74 | return false 75 | } 76 | } 77 | 78 | tags, err := registry.ListTags(context.Background(), fmt.Sprintf("%s/%s", registryRepoName, repoName), filterFn) 79 | if err != nil { 80 | logger.Warn("ListTags %s/%s error: %s", registryRepoName, repoName, err.Error()) 81 | } 82 | types.Sort(tags) 83 | reposMutex.Lock() 84 | defer reposMutex.Unlock() 85 | info := types.ImageInfo{ 86 | Name: repoName, 87 | Tags: tags, 88 | } 89 | 90 | if utils.StringInSlice(repoName, kubeRepos) { 91 | info.Url = "https://github.com/kubernetes/kubernetes" 92 | repos.Rootfs = append(repos.Rootfs, info) 93 | } else if strings.HasPrefix(repoName, "sealos") { 94 | info.Url = "https://github.com/labring/sealos" 95 | repos.Sealos = append(repos.Sealos, info) 96 | } else if strings.HasPrefix(repoName, "laf") { 97 | info.Url = "https://github.com/labring/laf" 98 | repos.Laf = append(repos.Laf, info) 99 | } else { 100 | if strings.HasPrefix(repoName, "docker-") { 101 | info.Url = fmt.Sprintf("https://github.com/labring-actions/cluster-image/tree/main/dockerimages/%s", repoName) 102 | } else { 103 | info.Url = fmt.Sprintf("https://github.com/labring-actions/cluster-image/tree/main/applications/%s", repoName) 104 | } 105 | repos.Apps = append(repos.Apps, info) 106 | } 107 | return nil 108 | }) 109 | } 110 | if err = eg.Wait(); err != nil { 111 | return err 112 | } 113 | dockerAPI = repositories.Next 114 | } 115 | return nil 116 | }); err != nil { 117 | logger.Error("get dockerhub repo error: %s", err.Error()) 118 | return nil, err 119 | } 120 | 121 | return repos, nil 122 | } 123 | -------------------------------------------------------------------------------- /generator/repos_test.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package generator 18 | 19 | import ( 20 | "github.com/cuisongliu/logger" 21 | "os" 22 | "testing" 23 | ) 24 | 25 | func TestFetchDockerHubAllVersion(t *testing.T) { 26 | logger.Cfg(true, false) 27 | syncDir := "../docs/docker" 28 | err := os.MkdirAll(syncDir, 0700|0055) 29 | if err != nil { 30 | t.Error(err) 31 | return 32 | } 33 | err = autoRemoveGenerator(syncDir) 34 | if err != nil { 35 | t.Error(err) 36 | return 37 | } 38 | got, err := fetchDockerHubAllRepo("docker.io/labring") 39 | if err != nil { 40 | t.Error(err) 41 | return 42 | } 43 | t.Log("get docker hub all repo success") 44 | if got == nil { 45 | t.Error("got is nil") 46 | return 47 | } 48 | t.Log("rootfs infos") 49 | for _, v := range got.Rootfs { 50 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 51 | } 52 | t.Log("sealos infos") 53 | for _, v := range got.Sealos { 54 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 55 | } 56 | t.Log("laf infos") 57 | for _, v := range got.Laf { 58 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 59 | } 60 | t.Log("app infos") 61 | for _, v := range got.Apps { 62 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 63 | } 64 | 65 | } 66 | 67 | func TestFetchAliyunAllVersion(t *testing.T) { 68 | logger.Cfg(true, false) 69 | syncDir := "../docs/aliyun-hk" 70 | err := os.MkdirAll(syncDir, 0700|0055) 71 | if err != nil { 72 | t.Error(err) 73 | return 74 | } 75 | err = autoRemoveGenerator(syncDir) 76 | if err != nil { 77 | t.Error(err) 78 | return 79 | } 80 | got, err := fetchDockerHubAllRepo("registry.cn-hongkong.aliyuncs.com/labring") 81 | if err != nil { 82 | t.Error(err) 83 | return 84 | } 85 | t.Log("get docker hub all repo success") 86 | if got == nil { 87 | t.Error("got is nil") 88 | return 89 | } 90 | t.Log("rootfs infos") 91 | for _, v := range got.Rootfs { 92 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 93 | } 94 | t.Log("sealos infos") 95 | for _, v := range got.Sealos { 96 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 97 | } 98 | t.Log("laf infos") 99 | for _, v := range got.Laf { 100 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 101 | } 102 | t.Log("app infos") 103 | for _, v := range got.Apps { 104 | t.Logf("name: %s, tags: %+v", v.Name, v.Tags) 105 | } 106 | 107 | } 108 | -------------------------------------------------------------------------------- /generator/types/sort.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package types 18 | 19 | import ( 20 | "sort" 21 | "strings" 22 | ) 23 | 24 | type ByLatest []string 25 | 26 | func (vs ByLatest) Len() int { return len(vs) } 27 | func (vs ByLatest) Swap(i, j int) { vs[i], vs[j] = vs[j], vs[i] } 28 | func (vs ByLatest) Less(i, j int) bool { 29 | containsLatestI := strings.Contains(vs[i], "latest") 30 | containsLatestJ := strings.Contains(vs[j], "latest") 31 | 32 | if containsLatestI && !containsLatestJ { 33 | return true 34 | } 35 | if !containsLatestI && containsLatestJ { 36 | return false 37 | } 38 | return i < j 39 | } 40 | 41 | // Sort sorts a list of semantic version strings using ByRootfs. 42 | func Sort(list []string) { 43 | sort.Sort(ByLatest(list)) 44 | } 45 | 46 | type ByImageInfo []ImageInfo 47 | 48 | func (vs ByImageInfo) Len() int { return len(vs) } 49 | func (vs ByImageInfo) Swap(i, j int) { vs[i], vs[j] = vs[j], vs[i] } 50 | func (vs ByImageInfo) Less(i, j int) bool { 51 | return vs[i].Name < vs[j].Name 52 | } 53 | 54 | func SortByImageInfo(list []ImageInfo) { 55 | sort.Sort(ByImageInfo(list)) 56 | } 57 | -------------------------------------------------------------------------------- /generator/types/sort_test.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package types 18 | 19 | import "testing" 20 | 21 | func TestSort(t *testing.T) { 22 | type args struct { 23 | list []string 24 | } 25 | tests := []struct { 26 | name string 27 | args args 28 | }{ 29 | { 30 | name: "test1", 31 | args: args{ 32 | list: []string{"v1.1.1", "latest"}, 33 | }, 34 | }, 35 | { 36 | name: "test1", 37 | args: args{ 38 | list: []string{"v1.1.1", "latest", "v1.2.3"}, 39 | }, 40 | }, 41 | { 42 | name: "test1", 43 | args: args{ 44 | list: []string{"latest", "v1.1.1", "v1.2.3"}, 45 | }, 46 | }, 47 | } 48 | for _, tt := range tests { 49 | t.Run(tt.name, func(t *testing.T) { 50 | Sort(tt.args.list) 51 | t.Log(tt.args.list) 52 | }) 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /generator/types/types.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package types 18 | 19 | type RepoInfo struct { 20 | Rootfs []ImageInfo 21 | Sealos []ImageInfo 22 | Laf []ImageInfo 23 | Apps []ImageInfo 24 | } 25 | 26 | type ImageInfo struct { 27 | Name string 28 | Url string 29 | Tags []string 30 | } 31 | -------------------------------------------------------------------------------- /generator/utils/http.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, DefaultVersion 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package utils 18 | 19 | import ( 20 | "bytes" 21 | "context" 22 | "fmt" 23 | "github.com/cuisongliu/logger" 24 | "io" 25 | "net" 26 | "net/http" 27 | "time" 28 | ) 29 | 30 | func Request(url, method string, requestData []byte, timeout int64) ([]byte, error) { 31 | if timeout == 0 { 32 | timeout = 60 33 | } 34 | trans := http.Transport{ 35 | Proxy: http.ProxyFromEnvironment, 36 | MaxIdleConnsPerHost: 100, 37 | DialContext: (&net.Dialer{ 38 | Timeout: 30 * time.Second, 39 | KeepAlive: 30 * time.Second, 40 | }).DialContext, 41 | MaxIdleConns: 100, 42 | IdleConnTimeout: 90 * time.Second, 43 | TLSHandshakeTimeout: 10 * time.Second, 44 | ExpectContinueTimeout: 1 * time.Second, 45 | } 46 | // https://github.com/golang/go/issues/13801 47 | client := &http.Client{ 48 | Transport: &trans, 49 | } 50 | ctx, cancel := context.WithTimeout(context.TODO(), time.Duration(timeout*int64(time.Second))) 51 | defer cancel() 52 | req, _ := http.NewRequestWithContext(ctx, method, url, bytes.NewReader(requestData)) 53 | req.Header.Add("Content-Type", "application/json") 54 | req.Header.Set("User-agent", "SealosRuntime") 55 | req.Header.Set("Connection", "keep-alive") 56 | resp, err := client.Do(req) 57 | if err != nil { 58 | return nil, err 59 | } 60 | if resp.StatusCode != 200 { 61 | if resp.StatusCode == 429 { 62 | logger.Warn("request %s resp code is %d, retry after 2s", url, resp.StatusCode) 63 | time.Sleep(2 * time.Second) 64 | return Request(url, method, requestData, timeout) 65 | } 66 | return nil, fmt.Errorf("request %s resp code is %d", url, resp.StatusCode) 67 | } 68 | defer resp.Body.Close() 69 | defer io.Copy(io.Discard, resp.Body) 70 | body, err := io.ReadAll(resp.Body) 71 | if err != nil { 72 | return nil, err 73 | } 74 | return body, nil 75 | } 76 | -------------------------------------------------------------------------------- /generator/utils/retry.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package utils 18 | 19 | import ( 20 | "github.com/cenkalti/backoff/v4" 21 | "time" 22 | ) 23 | 24 | func Retry(fn func() error) error { 25 | // 设置重试策略 26 | exponentialBackoff := backoff.NewExponentialBackOff() 27 | exponentialBackoff.MaxElapsedTime = 15 * time.Second 28 | return backoff.Retry(func() error { 29 | return fn() 30 | }, exponentialBackoff) 31 | } 32 | -------------------------------------------------------------------------------- /generator/utils/string.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package utils 18 | 19 | func StringInSlice(a string, list []string) bool { 20 | for _, b := range list { 21 | if b == a { 22 | return true 23 | } 24 | } 25 | return false 26 | } 27 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/labring-actions/cluster-image-docs 2 | 3 | go 1.20 4 | 5 | require ( 6 | github.com/cenkalti/backoff/v4 v4.2.1 7 | github.com/cuisongliu/logger v0.0.0-20230412024334-6d0345c427ba 8 | github.com/google/go-containerregistry v0.16.1 9 | golang.org/x/mod v0.10.0 10 | ) 11 | 12 | require ( 13 | github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect 14 | github.com/docker/cli v24.0.0+incompatible // indirect 15 | github.com/docker/distribution v2.8.2+incompatible // indirect 16 | github.com/docker/docker v24.0.0+incompatible // indirect 17 | github.com/docker/docker-credential-helpers v0.7.0 // indirect 18 | github.com/klauspost/compress v1.16.5 // indirect 19 | github.com/mitchellh/go-homedir v1.1.0 // indirect 20 | github.com/opencontainers/go-digest v1.0.0 // indirect 21 | github.com/opencontainers/image-spec v1.1.0-rc3 // indirect 22 | github.com/pkg/errors v0.9.1 // indirect 23 | github.com/sirupsen/logrus v1.9.1 // indirect 24 | github.com/vbatts/tar-split v0.11.3 // indirect 25 | golang.org/x/sync v0.3.0 // indirect 26 | golang.org/x/sys v0.8.0 // indirect 27 | ) 28 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= 2 | github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= 3 | github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= 4 | github.com/containerd/stargz-snapshotter/estargz v0.14.3 h1:OqlDCK3ZVUO6C3B/5FSkDwbkEETK84kQgEeFwDC+62k= 5 | github.com/containerd/stargz-snapshotter/estargz v0.14.3/go.mod h1:KY//uOCIkSuNAHhJogcZtrNHdKrA99/FCCRjE3HD36o= 6 | github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= 7 | github.com/cuisongliu/logger v0.0.0-20230412024334-6d0345c427ba h1:NnI/2qCBNm8EkvL3jK6kAJ5szFTT0oRUDDjdV44SlNU= 8 | github.com/cuisongliu/logger v0.0.0-20230412024334-6d0345c427ba/go.mod h1:w7Phuvu7fo9foe+q8V5LRe4Om/+6x8e1D7utm/WFzKk= 9 | github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 10 | github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= 11 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 12 | github.com/docker/cli v24.0.0+incompatible h1:0+1VshNwBQzQAx9lOl+OYCTCEAD8fKs/qeXMx3O0wqM= 13 | github.com/docker/cli v24.0.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= 14 | github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8= 15 | github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= 16 | github.com/docker/docker v24.0.0+incompatible h1:z4bf8HvONXX9Tde5lGBMQ7yCJgNahmJumdrStZAbeY4= 17 | github.com/docker/docker v24.0.0+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= 18 | github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A= 19 | github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0= 20 | github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= 21 | github.com/google/go-containerregistry v0.16.1 h1:rUEt426sR6nyrL3gt+18ibRcvYpKYdpsa5ZW7MA08dQ= 22 | github.com/google/go-containerregistry v0.16.1/go.mod h1:u0qB2l7mvtWVR5kNcbFIhFY1hLbf8eeGapA+vbFDCtQ= 23 | github.com/klauspost/compress v1.16.5 h1:IFV2oUNUzZaz+XyusxpLzpzS8Pt5rh0Z16For/djlyI= 24 | github.com/klauspost/compress v1.16.5/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= 25 | github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= 26 | github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= 27 | github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= 28 | github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= 29 | github.com/opencontainers/image-spec v1.1.0-rc3 h1:fzg1mXZFj8YdPeNkRXMg+zb88BFV0Ys52cJydRwBkb8= 30 | github.com/opencontainers/image-spec v1.1.0-rc3/go.mod h1:X4pATf0uXsnn3g5aiGIsVnJBR4mxhKzfwmvK/B2NTm8= 31 | github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= 32 | github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 33 | github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= 34 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= 35 | github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= 36 | github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= 37 | github.com/sirupsen/logrus v1.9.1 h1:Ou41VVR3nMWWmTiEUnj0OlsgOSCUFgsPAOl6jRIcVtQ= 38 | github.com/sirupsen/logrus v1.9.1/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= 39 | github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= 40 | github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= 41 | github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= 42 | github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= 43 | github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= 44 | github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= 45 | github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= 46 | github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= 47 | github.com/urfave/cli v1.22.12/go.mod h1:sSBEIC79qR6OvcmsD4U3KABeOTxDqQtdDnaFuUN30b8= 48 | github.com/vbatts/tar-split v0.11.3 h1:hLFqsOLQ1SsppQNTMpkpPXClLDfC2A3Zgy9OUU+RVck= 49 | github.com/vbatts/tar-split v0.11.3/go.mod h1:9QlHN18E+fEH7RdG+QAJJcuya3rqT7eXSTY7wGrAokY= 50 | golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk= 51 | golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= 52 | golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= 53 | golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= 54 | golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 55 | golang.org/x/sys v0.0.0-20220906165534-d0df966e6959/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 56 | golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= 57 | golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 58 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 59 | gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= 60 | gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= 61 | gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= 62 | gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= 63 | gotest.tools/v3 v3.0.3 h1:4AuOwCGf4lLR9u3YOe2awrHygurzhO/HeQ6laiA6Sx0= 64 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2023 cuisongliu@qq.com. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package main 18 | 19 | import "github.com/labring-actions/cluster-image-docs/generator" 20 | 21 | func main() { 22 | generator.Do() 23 | } 24 | -------------------------------------------------------------------------------- /tmp/README.md: -------------------------------------------------------------------------------- 1 | # Cluster Image Directory 2 | 3 | Welcome to our documentation folder, where we list four distinct types of cluster images: Rootfs Images, Sealos-related Images, Laf-related Images, and Images for various applications. 4 | 5 | - [Rootfs Images](./rootfs.md) 6 | - [Sealos Images](./sealos.md) 7 | - [Laf Images](./laf.md) 8 | - [Application Images](./apps.md) 9 | 10 | Please navigate to the above links to access the detailed documentation for each image category. 11 | 12 | ## Image Repository 13 | 14 | The images in this documentation are hosted on our dedicated image repository: `docker.io` 15 | 16 | -------------------------------------------------------------------------------- /tmp/apps.md: -------------------------------------------------------------------------------- 1 | # Apps Image Versions 2 | 3 | Here are the versions of the images along with their corresponding links: 4 | 5 | ### [affine](https://github.com/labring-actions/cluster-image/tree/main/applications/affine) 6 | 7 | - [docker.io/labring/affine:latest](https://explore.ggcr.dev/?image=docker.io/labring/affine:latest) 8 | 9 | 10 | ### [apisix](https://github.com/labring-actions/cluster-image/tree/main/applications/apisix) 11 | 12 | - [docker.io/labring/apisix:2.15.1](https://explore.ggcr.dev/?image=docker.io/labring/apisix:2.15.1) 13 | - [docker.io/labring/apisix:2.15.0](https://explore.ggcr.dev/?image=docker.io/labring/apisix:2.15.0) 14 | - [docker.io/labring/apisix:2.14.1](https://explore.ggcr.dev/?image=docker.io/labring/apisix:2.14.1) 15 | - [docker.io/labring/apisix:2.13.1](https://explore.ggcr.dev/?image=docker.io/labring/apisix:2.13.1) 16 | 17 | 18 | ### [argo-rollouts](https://github.com/labring-actions/cluster-image/tree/main/applications/argo-rollouts) 19 | 20 | - [docker.io/labring/argo-rollouts:v1.5.1](https://explore.ggcr.dev/?image=docker.io/labring/argo-rollouts:v1.5.1) 21 | 22 | 23 | ### [argo-workflows](https://github.com/labring-actions/cluster-image/tree/main/applications/argo-workflows) 24 | 25 | - [docker.io/labring/argo-workflows:v3.4.10](https://explore.ggcr.dev/?image=docker.io/labring/argo-workflows:v3.4.10) 26 | 27 | 28 | ### [argocd](https://github.com/labring-actions/cluster-image/tree/main/applications/argocd) 29 | 30 | - [docker.io/labring/argocd:v2.5.3](https://explore.ggcr.dev/?image=docker.io/labring/argocd:v2.5.3) 31 | - [docker.io/labring/argocd:v2.4.17](https://explore.ggcr.dev/?image=docker.io/labring/argocd:v2.4.17) 32 | - [docker.io/labring/argocd:v2.4.8](https://explore.ggcr.dev/?image=docker.io/labring/argocd:v2.4.8) 33 | 34 | 35 | ### [athenaserving](https://github.com/labring-actions/cluster-image/tree/main/applications/athenaserving) 36 | 37 | - [docker.io/labring/athenaserving:v2.0.0rc1](https://explore.ggcr.dev/?image=docker.io/labring/athenaserving:v2.0.0rc1) 38 | 39 | 40 | ### [awx-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/awx-operator) 41 | 42 | - [docker.io/labring/awx-operator:v1.1.0](https://explore.ggcr.dev/?image=docker.io/labring/awx-operator:v1.1.0) 43 | 44 | 45 | ### [bitnami-etcd](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-etcd) 46 | 47 | - [docker.io/labring/bitnami-etcd:v3.5.8](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-etcd:v3.5.8) 48 | - [docker.io/labring/bitnami-etcd:v3.5.6](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-etcd:v3.5.6) 49 | 50 | 51 | ### [bitnami-kafka](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-kafka) 52 | 53 | - [docker.io/labring/bitnami-kafka:v22.1.5](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-kafka:v22.1.5) 54 | 55 | 56 | ### [bitnami-minio](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-minio) 57 | 58 | - [docker.io/labring/bitnami-minio:v12.6.4](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-minio:v12.6.4) 59 | 60 | 61 | ### [bitnami-mongodb](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-mongodb) 62 | 63 | - [docker.io/labring/bitnami-mongodb:6.0.2](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-mongodb:6.0.2) 64 | 65 | 66 | ### [bitnami-mongodb-sharded](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-mongodb-sharded) 67 | 68 | - [docker.io/labring/bitnami-mongodb-sharded:6.0.2](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-mongodb-sharded:6.0.2) 69 | 70 | 71 | ### [bitnami-mysql](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-mysql) 72 | 73 | - [docker.io/labring/bitnami-mysql:v9.10.4](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-mysql:v9.10.4) 74 | 75 | 76 | ### [bitnami-redis-cluster](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-redis-cluster) 77 | 78 | - [docker.io/labring/bitnami-redis-cluster:v8.4.4](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-redis-cluster:v8.4.4) 79 | - [docker.io/labring/bitnami-redis-cluster:v7.0.9](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-redis-cluster:v7.0.9) 80 | - [docker.io/labring/bitnami-redis-cluster:v7.0.8](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-redis-cluster:v7.0.8) 81 | 82 | 83 | ### [bitnami-zookeeper](https://github.com/labring-actions/cluster-image/tree/main/applications/bitnami-zookeeper) 84 | 85 | - [docker.io/labring/bitnami-zookeeper:v11.4.2](https://explore.ggcr.dev/?image=docker.io/labring/bitnami-zookeeper:v11.4.2) 86 | 87 | 88 | ### [bond-cni](https://github.com/labring-actions/cluster-image/tree/main/applications/bond-cni) 89 | 90 | - [docker.io/labring/bond-cni:latest](https://explore.ggcr.dev/?image=docker.io/labring/bond-cni:latest) 91 | 92 | 93 | ### [calico](https://github.com/labring-actions/cluster-image/tree/main/applications/calico) 94 | 95 | - [docker.io/labring/calico:v3.25.1](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.25.1) 96 | - [docker.io/labring/calico:v3.25.0](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.25.0) 97 | - [docker.io/labring/calico:v3.24.6](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.24.6) 98 | - [docker.io/labring/calico:v3.24.5](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.24.5) 99 | - [docker.io/labring/calico:v3.24.1](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.24.1) 100 | - [docker.io/labring/calico:v3.23.5](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.23.5) 101 | - [docker.io/labring/calico:v3.22.5](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.22.5) 102 | - [docker.io/labring/calico:v3.22.1](https://explore.ggcr.dev/?image=docker.io/labring/calico:v3.22.1) 103 | - [docker.io/labring/calico:3.26.1](https://explore.ggcr.dev/?image=docker.io/labring/calico:3.26.1) 104 | - [docker.io/labring/calico:3.25.1](https://explore.ggcr.dev/?image=docker.io/labring/calico:3.25.1) 105 | - [docker.io/labring/calico:3.24.6](https://explore.ggcr.dev/?image=docker.io/labring/calico:3.24.6) 106 | - [docker.io/labring/calico:3.24.5](https://explore.ggcr.dev/?image=docker.io/labring/calico:3.24.5) 107 | 108 | 109 | ### [ceph-csi-cephfs](https://github.com/labring-actions/cluster-image/tree/main/applications/ceph-csi-cephfs) 110 | 111 | - [docker.io/labring/ceph-csi-cephfs:v3.8.0](https://explore.ggcr.dev/?image=docker.io/labring/ceph-csi-cephfs:v3.8.0) 112 | 113 | 114 | ### [ceph-csi-rbd](https://github.com/labring-actions/cluster-image/tree/main/applications/ceph-csi-rbd) 115 | 116 | - [docker.io/labring/ceph-csi-rbd:v3.8.0](https://explore.ggcr.dev/?image=docker.io/labring/ceph-csi-rbd:v3.8.0) 117 | 118 | 119 | ### [cert-manager](https://github.com/labring-actions/cluster-image/tree/main/applications/cert-manager) 120 | 121 | - [docker.io/labring/cert-manager:v1.12.3](https://explore.ggcr.dev/?image=docker.io/labring/cert-manager:v1.12.3) 122 | - [docker.io/labring/cert-manager:v1.12.1](https://explore.ggcr.dev/?image=docker.io/labring/cert-manager:v1.12.1) 123 | - [docker.io/labring/cert-manager:v1.8.0](https://explore.ggcr.dev/?image=docker.io/labring/cert-manager:v1.8.0) 124 | 125 | 126 | ### [chaos-mesh](https://github.com/labring-actions/cluster-image/tree/main/applications/chaos-mesh) 127 | 128 | - [docker.io/labring/chaos-mesh:v2.5.0](https://explore.ggcr.dev/?image=docker.io/labring/chaos-mesh:v2.5.0) 129 | - [docker.io/labring/chaos-mesh:v2.4.3](https://explore.ggcr.dev/?image=docker.io/labring/chaos-mesh:v2.4.3) 130 | 131 | 132 | ### [chaos-mesh-containerd](https://github.com/labring-actions/cluster-image/tree/main/applications/chaos-mesh-containerd) 133 | 134 | - [docker.io/labring/chaos-mesh-containerd:v2.5.0](https://explore.ggcr.dev/?image=docker.io/labring/chaos-mesh-containerd:v2.5.0) 135 | - [docker.io/labring/chaos-mesh-containerd:v2.4.3](https://explore.ggcr.dev/?image=docker.io/labring/chaos-mesh-containerd:v2.4.3) 136 | 137 | 138 | ### [chaos-mesh-crio](https://github.com/labring-actions/cluster-image/tree/main/applications/chaos-mesh-crio) 139 | 140 | - [docker.io/labring/chaos-mesh-crio:v2.5.0](https://explore.ggcr.dev/?image=docker.io/labring/chaos-mesh-crio:v2.5.0) 141 | - [docker.io/labring/chaos-mesh-crio:v2.4.3](https://explore.ggcr.dev/?image=docker.io/labring/chaos-mesh-crio:v2.4.3) 142 | 143 | 144 | ### [cilium](https://github.com/labring-actions/cluster-image/tree/main/applications/cilium) 145 | 146 | - [docker.io/labring/cilium:v1.13.4](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.13.4) 147 | - [docker.io/labring/cilium:v1.13.0](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.13.0) 148 | - [docker.io/labring/cilium:v1.12.13](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.13) 149 | - [docker.io/labring/cilium:v1.12.12](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.12) 150 | - [docker.io/labring/cilium:v1.12.11](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.11) 151 | - [docker.io/labring/cilium:v1.12.10](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.10) 152 | - [docker.io/labring/cilium:v1.12.9](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.9) 153 | - [docker.io/labring/cilium:v1.12.8](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.8) 154 | - [docker.io/labring/cilium:v1.12.7](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.7) 155 | - [docker.io/labring/cilium:v1.12.5](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.5) 156 | - [docker.io/labring/cilium:v1.12.4](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.4) 157 | - [docker.io/labring/cilium:v1.12.1](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.1) 158 | - [docker.io/labring/cilium:v1.12.0](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.12.0) 159 | - [docker.io/labring/cilium:v1.11.11](https://explore.ggcr.dev/?image=docker.io/labring/cilium:v1.11.11) 160 | 161 | 162 | ### [clickhouse](https://github.com/labring-actions/cluster-image/tree/main/applications/clickhouse) 163 | 164 | - [docker.io/labring/clickhouse:0.18.4](https://explore.ggcr.dev/?image=docker.io/labring/clickhouse:0.18.4) 165 | 166 | 167 | ### [cni-plugin](https://github.com/labring-actions/cluster-image/tree/main/applications/cni-plugin) 168 | 169 | - [docker.io/labring/cni-plugin:v1.3.0](https://explore.ggcr.dev/?image=docker.io/labring/cni-plugin:v1.3.0) 170 | - [docker.io/labring/cni-plugin:v1.2.0](https://explore.ggcr.dev/?image=docker.io/labring/cni-plugin:v1.2.0) 171 | - [docker.io/labring/cni-plugin:v1.1.1](https://explore.ggcr.dev/?image=docker.io/labring/cni-plugin:v1.1.1) 172 | 173 | 174 | ### [code-server](https://github.com/labring-actions/cluster-image/tree/main/applications/code-server) 175 | 176 | - [docker.io/labring/code-server:v4.9.1](https://explore.ggcr.dev/?image=docker.io/labring/code-server:v4.9.1) 177 | - [docker.io/labring/code-server:v4.8.2](https://explore.ggcr.dev/?image=docker.io/labring/code-server:v4.8.2) 178 | 179 | 180 | ### [contour](https://github.com/labring-actions/cluster-image/tree/main/applications/contour) 181 | 182 | - [docker.io/labring/contour:v1.23.0](https://explore.ggcr.dev/?image=docker.io/labring/contour:v1.23.0) 183 | 184 | 185 | ### [coredns](https://github.com/labring-actions/cluster-image/tree/main/applications/coredns) 186 | 187 | - [docker.io/labring/coredns:v0.0.1](https://explore.ggcr.dev/?image=docker.io/labring/coredns:v0.0.1) 188 | 189 | 190 | ### [crunchy-postgres-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/crunchy-postgres-operator) 191 | 192 | - [docker.io/labring/crunchy-postgres-operator:v5.3.1](https://explore.ggcr.dev/?image=docker.io/labring/crunchy-postgres-operator:v5.3.1) 193 | - [docker.io/labring/crunchy-postgres-operator:v5.2.0](https://explore.ggcr.dev/?image=docker.io/labring/crunchy-postgres-operator:v5.2.0) 194 | 195 | 196 | ### [csi-driver-nfs](https://github.com/labring-actions/cluster-image/tree/main/applications/csi-driver-nfs) 197 | 198 | - [docker.io/labring/csi-driver-nfs:v4.4.0](https://explore.ggcr.dev/?image=docker.io/labring/csi-driver-nfs:v4.4.0) 199 | - [docker.io/labring/csi-driver-nfs:v2.0.0](https://explore.ggcr.dev/?image=docker.io/labring/csi-driver-nfs:v2.0.0) 200 | 201 | 202 | ### [deepflow](https://github.com/labring-actions/cluster-image/tree/main/applications/deepflow) 203 | 204 | - [docker.io/labring/deepflow:latest](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:latest) 205 | - [docker.io/labring/deepflow:v6.2.1](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.1) 206 | - [docker.io/labring/deepflow:v6.2.6](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.6) 207 | - [docker.io/labring/deepflow:v6.2.3](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.3) 208 | - [docker.io/labring/deepflow:v6.1.1](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.1.1) 209 | - [docker.io/labring/deepflow:6.1.2](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:6.1.2) 210 | - [docker.io/labring/deepflow:v6.2.2](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.2) 211 | - [docker.io/labring/deepflow:v6.1.8](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.1.8) 212 | - [docker.io/labring/deepflow:v6.3.6](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.3.6) 213 | - [docker.io/labring/deepflow:v6.3.3](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.3.3) 214 | - [docker.io/labring/deepflow:v6.2.4](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.4) 215 | - [docker.io/labring/deepflow:v6.2.5](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.5) 216 | - [docker.io/labring/deepflow:v6.1.7](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.1.7) 217 | - [docker.io/labring/deepflow:6.1.6](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:6.1.6) 218 | - [docker.io/labring/deepflow:v6.3.5](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.3.5) 219 | - [docker.io/labring/deepflow:stable](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:stable) 220 | - [docker.io/labring/deepflow:6.1.5](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:6.1.5) 221 | - [docker.io/labring/deepflow:6.1.4](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:6.1.4) 222 | - [docker.io/labring/deepflow:v6.2.0](https://explore.ggcr.dev/?image=docker.io/labring/deepflow:v6.2.0) 223 | 224 | 225 | ### [discourse](https://github.com/labring-actions/cluster-image/tree/main/applications/discourse) 226 | 227 | - [docker.io/labring/discourse:v3.0.6](https://explore.ggcr.dev/?image=docker.io/labring/discourse:v3.0.6) 228 | 229 | 230 | ### [docker-adminer](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-adminer) 231 | 232 | - [docker.io/labring/docker-adminer:v4.8.1](https://explore.ggcr.dev/?image=docker.io/labring/docker-adminer:v4.8.1) 233 | 234 | 235 | ### [docker-casbin](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-casbin) 236 | 237 | - [docker.io/labring/docker-casbin:main](https://explore.ggcr.dev/?image=docker.io/labring/docker-casbin:main) 238 | 239 | 240 | ### [docker-cni-plugins](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-cni-plugins) 241 | 242 | - [docker.io/labring/docker-cni-plugins:v1.3.0](https://explore.ggcr.dev/?image=docker.io/labring/docker-cni-plugins:v1.3.0) 243 | - [docker.io/labring/docker-cni-plugins:v1.2.0](https://explore.ggcr.dev/?image=docker.io/labring/docker-cni-plugins:v1.2.0) 244 | - [docker.io/labring/docker-cni-plugins:v1.1.1](https://explore.ggcr.dev/?image=docker.io/labring/docker-cni-plugins:v1.1.1) 245 | 246 | 247 | ### [docker-kubeblocks-tools](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-kubeblocks-tools) 248 | 249 | - [docker.io/labring/docker-kubeblocks-tools:0.5.2](https://explore.ggcr.dev/?image=docker.io/labring/docker-kubeblocks-tools:0.5.2) 250 | 251 | 252 | ### [docker-kuboard](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-kuboard) 253 | 254 | - [docker.io/labring/docker-kuboard:v2](https://explore.ggcr.dev/?image=docker.io/labring/docker-kuboard:v2) 255 | 256 | 257 | ### [docker-terminal](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-terminal) 258 | 259 | - [docker.io/labring/docker-terminal:1.20.4-8](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-8) 260 | - [docker.io/labring/docker-terminal:1.20.4-7](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-7) 261 | - [docker.io/labring/docker-terminal:1.20.4-6](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-6) 262 | - [docker.io/labring/docker-terminal:1.20.4-5](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-5) 263 | - [docker.io/labring/docker-terminal:1.20.4-4](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-4) 264 | - [docker.io/labring/docker-terminal:1.20.4-3](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-3) 265 | - [docker.io/labring/docker-terminal:1.20.4-2](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4-2) 266 | - [docker.io/labring/docker-terminal:1.20.4](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.4) 267 | - [docker.io/labring/docker-terminal:1.20.3](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.3) 268 | - [docker.io/labring/docker-terminal:1.20.1-1.24.4](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.20.1-1.24.4) 269 | - [docker.io/labring/docker-terminal:1.19.4](https://explore.ggcr.dev/?image=docker.io/labring/docker-terminal:1.19.4) 270 | 271 | 272 | ### [docker-zot](https://github.com/labring-actions/cluster-image/tree/main/dockerimages/docker-zot) 273 | 274 | - [docker.io/labring/docker-zot:v2.0.0-rc4](https://explore.ggcr.dev/?image=docker.io/labring/docker-zot:v2.0.0-rc4) 275 | - [docker.io/labring/docker-zot:v1.4.3](https://explore.ggcr.dev/?image=docker.io/labring/docker-zot:v1.4.3) 276 | 277 | 278 | ### [eck-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/eck-operator) 279 | 280 | - [docker.io/labring/eck-operator:v2.6.1](https://explore.ggcr.dev/?image=docker.io/labring/eck-operator:v2.6.1) 281 | - [docker.io/labring/eck-operator:2.4.0](https://explore.ggcr.dev/?image=docker.io/labring/eck-operator:2.4.0) 282 | 283 | 284 | ### [elastic](https://github.com/labring-actions/cluster-image/tree/main/applications/elastic) 285 | 286 | - [docker.io/labring/elastic:7.17.3](https://explore.ggcr.dev/?image=docker.io/labring/elastic:7.17.3) 287 | 288 | 289 | ### [endpoints-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/endpoints-operator) 290 | 291 | - [docker.io/labring/endpoints-operator:v0.2.1](https://explore.ggcr.dev/?image=docker.io/labring/endpoints-operator:v0.2.1) 292 | - [docker.io/labring/endpoints-operator:v0.2.0](https://explore.ggcr.dev/?image=docker.io/labring/endpoints-operator:v0.2.0) 293 | - [docker.io/labring/endpoints-operator:v0.1.1](https://explore.ggcr.dev/?image=docker.io/labring/endpoints-operator:v0.1.1) 294 | 295 | 296 | ### [etcdctl](https://github.com/labring-actions/cluster-image/tree/main/applications/etcdctl) 297 | 298 | - [docker.io/labring/etcdctl:v3.5.6](https://explore.ggcr.dev/?image=docker.io/labring/etcdctl:v3.5.6) 299 | 300 | 301 | ### [flannel](https://github.com/labring-actions/cluster-image/tree/main/applications/flannel) 302 | 303 | - [docker.io/labring/flannel:v0.22.2](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.22.2) 304 | - [docker.io/labring/flannel:v0.22.1](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.22.1) 305 | - [docker.io/labring/flannel:v0.22.0](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.22.0) 306 | - [docker.io/labring/flannel:v0.21.5](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.21.5) 307 | - [docker.io/labring/flannel:v0.21.4](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.21.4) 308 | - [docker.io/labring/flannel:v0.20.2](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.20.2) 309 | - [docker.io/labring/flannel:v0.20.1](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.20.1) 310 | - [docker.io/labring/flannel:v0.20.0](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.20.0) 311 | - [docker.io/labring/flannel:v0.19.2](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.19.2) 312 | - [docker.io/labring/flannel:v0.19.1](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.19.1) 313 | - [docker.io/labring/flannel:v0.19.0](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.19.0) 314 | - [docker.io/labring/flannel:v0.18.1](https://explore.ggcr.dev/?image=docker.io/labring/flannel:v0.18.1) 315 | - [docker.io/labring/flannel:0.22.2](https://explore.ggcr.dev/?image=docker.io/labring/flannel:0.22.2) 316 | - [docker.io/labring/flannel:0.22.1](https://explore.ggcr.dev/?image=docker.io/labring/flannel:0.22.1) 317 | - [docker.io/labring/flannel:0.22.0](https://explore.ggcr.dev/?image=docker.io/labring/flannel:0.22.0) 318 | 319 | 320 | ### [flink-kubernetes-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/flink-kubernetes-operator) 321 | 322 | - [docker.io/labring/flink-kubernetes-operator:1.2.0](https://explore.ggcr.dev/?image=docker.io/labring/flink-kubernetes-operator:1.2.0) 323 | 324 | 325 | ### [fluent-bit](https://github.com/labring-actions/cluster-image/tree/main/applications/fluent-bit) 326 | 327 | - [docker.io/labring/fluent-bit:0.20.9](https://explore.ggcr.dev/?image=docker.io/labring/fluent-bit:0.20.9) 328 | 329 | 330 | ### [fluent-operator-containerd](https://github.com/labring-actions/cluster-image/tree/main/applications/fluent-operator-containerd) 331 | 332 | - [docker.io/labring/fluent-operator-containerd:v1.5.1](https://explore.ggcr.dev/?image=docker.io/labring/fluent-operator-containerd:v1.5.1) 333 | 334 | 335 | ### [fluxcd](https://github.com/labring-actions/cluster-image/tree/main/applications/fluxcd) 336 | 337 | - [docker.io/labring/fluxcd:v0.37.0](https://explore.ggcr.dev/?image=docker.io/labring/fluxcd:v0.37.0) 338 | - [docker.io/labring/fluxcd:0.36.0](https://explore.ggcr.dev/?image=docker.io/labring/fluxcd:0.36.0) 339 | 340 | 341 | ### [gitea](https://github.com/labring-actions/cluster-image/tree/main/applications/gitea) 342 | 343 | - [docker.io/labring/gitea:v1.20.3](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.20.3) 344 | - [docker.io/labring/gitea:v1.20.2](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.20.2) 345 | - [docker.io/labring/gitea:v1.20.1](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.20.1) 346 | - [docker.io/labring/gitea:v1.20.0](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.20.0) 347 | - [docker.io/labring/gitea:v1.19.4](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.19.4) 348 | - [docker.io/labring/gitea:v1.18.3](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.18.3) 349 | - [docker.io/labring/gitea:v1.18.1](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.18.1) 350 | - [docker.io/labring/gitea:v1.17.3](https://explore.ggcr.dev/?image=docker.io/labring/gitea:v1.17.3) 351 | 352 | 353 | ### [gitlab](https://github.com/labring-actions/cluster-image/tree/main/applications/gitlab) 354 | 355 | - [docker.io/labring/gitlab:v16.2.3](https://explore.ggcr.dev/?image=docker.io/labring/gitlab:v16.2.3) 356 | - [docker.io/labring/gitlab:v16.2.2](https://explore.ggcr.dev/?image=docker.io/labring/gitlab:v16.2.2) 357 | 358 | 359 | ### [gitlab-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/gitlab-operator) 360 | 361 | - [docker.io/labring/gitlab-operator:v0.21.2](https://explore.ggcr.dev/?image=docker.io/labring/gitlab-operator:v0.21.2) 362 | 363 | 364 | ### [gitlab-runner](https://github.com/labring-actions/cluster-image/tree/main/applications/gitlab-runner) 365 | 366 | - [docker.io/labring/gitlab-runner:v16.2.0](https://explore.ggcr.dev/?image=docker.io/labring/gitlab-runner:v16.2.0) 367 | 368 | 369 | ### [gloo](https://github.com/labring-actions/cluster-image/tree/main/applications/gloo) 370 | 371 | - [docker.io/labring/gloo:v1.12.34](https://explore.ggcr.dev/?image=docker.io/labring/gloo:v1.12.34) 372 | 373 | 374 | ### [golang-vim-dev](https://github.com/labring-actions/cluster-image/tree/main/applications/golang-vim-dev) 375 | 376 | - [docker.io/labring/golang-vim-dev:1.18.4](https://explore.ggcr.dev/?image=docker.io/labring/golang-vim-dev:1.18.4) 377 | 378 | 379 | ### [gpu-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/gpu-operator) 380 | 381 | - [docker.io/labring/gpu-operator:v22.9.2](https://explore.ggcr.dev/?image=docker.io/labring/gpu-operator:v22.9.2) 382 | - [docker.io/labring/gpu-operator:v1.11.1](https://explore.ggcr.dev/?image=docker.io/labring/gpu-operator:v1.11.1) 383 | - [docker.io/labring/gpu-operator:v1.10.1](https://explore.ggcr.dev/?image=docker.io/labring/gpu-operator:v1.10.1) 384 | 385 | 386 | ### [grafana](https://github.com/labring-actions/cluster-image/tree/main/applications/grafana) 387 | 388 | - [docker.io/labring/grafana:v10.0.3](https://explore.ggcr.dev/?image=docker.io/labring/grafana:v10.0.3) 389 | 390 | 391 | ### [grafana-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/grafana-operator) 392 | 393 | - [docker.io/labring/grafana-operator:v5.3.0](https://explore.ggcr.dev/?image=docker.io/labring/grafana-operator:v5.3.0) 394 | 395 | 396 | ### [harbor](https://github.com/labring-actions/cluster-image/tree/main/applications/harbor) 397 | 398 | - [docker.io/labring/harbor:v2.8.2](https://explore.ggcr.dev/?image=docker.io/labring/harbor:v2.8.2) 399 | - [docker.io/labring/harbor:v2.8.1](https://explore.ggcr.dev/?image=docker.io/labring/harbor:v2.8.1) 400 | - [docker.io/labring/harbor:v2.8.0](https://explore.ggcr.dev/?image=docker.io/labring/harbor:v2.8.0) 401 | - [docker.io/labring/harbor:v2.7.1](https://explore.ggcr.dev/?image=docker.io/labring/harbor:v2.7.1) 402 | - [docker.io/labring/harbor:v2.7.0](https://explore.ggcr.dev/?image=docker.io/labring/harbor:v2.7.0) 403 | - [docker.io/labring/harbor:v2.6.1](https://explore.ggcr.dev/?image=docker.io/labring/harbor:v2.6.1) 404 | 405 | 406 | ### [helm](https://github.com/labring-actions/cluster-image/tree/main/applications/helm) 407 | 408 | - [docker.io/labring/helm:v3.12.3](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.12.3) 409 | - [docker.io/labring/helm:v3.12.2](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.12.2) 410 | - [docker.io/labring/helm:v3.12.1](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.12.1) 411 | - [docker.io/labring/helm:v3.12.0](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.12.0) 412 | - [docker.io/labring/helm:v3.11.3](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.11.3) 413 | - [docker.io/labring/helm:v3.11.2](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.11.2) 414 | - [docker.io/labring/helm:v3.11.1](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.11.1) 415 | - [docker.io/labring/helm:v3.11.0](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.11.0) 416 | - [docker.io/labring/helm:v3.10.3](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.10.3) 417 | - [docker.io/labring/helm:v3.10.2](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.10.2) 418 | - [docker.io/labring/helm:v3.10.1](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.10.1) 419 | - [docker.io/labring/helm:v3.10.0](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.10.0) 420 | - [docker.io/labring/helm:v3.9.4](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.9.4) 421 | - [docker.io/labring/helm:v3.8.2](https://explore.ggcr.dev/?image=docker.io/labring/helm:v3.8.2) 422 | 423 | 424 | ### [helmfile](https://github.com/labring-actions/cluster-image/tree/main/applications/helmfile) 425 | 426 | - [docker.io/labring/helmfile:v0.155.0](https://explore.ggcr.dev/?image=docker.io/labring/helmfile:v0.155.0) 427 | - [docker.io/labring/helmfile:v0.154.0](https://explore.ggcr.dev/?image=docker.io/labring/helmfile:v0.154.0) 428 | - [docker.io/labring/helmfile:v0.153.0](https://explore.ggcr.dev/?image=docker.io/labring/helmfile:v0.153.0) 429 | - [docker.io/labring/helmfile:v0.152.0](https://explore.ggcr.dev/?image=docker.io/labring/helmfile:v0.152.0) 430 | - [docker.io/labring/helmfile:v0.151.0](https://explore.ggcr.dev/?image=docker.io/labring/helmfile:v0.151.0) 431 | 432 | 433 | ### [higress](https://github.com/labring-actions/cluster-image/tree/main/applications/higress) 434 | 435 | - [docker.io/labring/higress:v1.1.0](https://explore.ggcr.dev/?image=docker.io/labring/higress:v1.1.0) 436 | 437 | 438 | ### [ingress-nginx](https://github.com/labring-actions/cluster-image/tree/main/applications/ingress-nginx) 439 | 440 | - [docker.io/labring/ingress-nginx:v1.8.1](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:v1.8.1) 441 | - [docker.io/labring/ingress-nginx:v1.8.0](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:v1.8.0) 442 | - [docker.io/labring/ingress-nginx:v1.7.1](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:v1.7.1) 443 | - [docker.io/labring/ingress-nginx:v1.7.0](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:v1.7.0) 444 | - [docker.io/labring/ingress-nginx:v1.6.4](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:v1.6.4) 445 | - [docker.io/labring/ingress-nginx:v1.5.1](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:v1.5.1) 446 | - [docker.io/labring/ingress-nginx:4.1.0](https://explore.ggcr.dev/?image=docker.io/labring/ingress-nginx:4.1.0) 447 | 448 | 449 | ### [iomesh](https://github.com/labring-actions/cluster-image/tree/main/applications/iomesh) 450 | 451 | - [docker.io/labring/iomesh:v1.0.1](https://explore.ggcr.dev/?image=docker.io/labring/iomesh:v1.0.1) 452 | 453 | 454 | ### [istio](https://github.com/labring-actions/cluster-image/tree/main/applications/istio) 455 | 456 | - [docker.io/labring/istio:v1.14.2](https://explore.ggcr.dev/?image=docker.io/labring/istio:v1.14.2) 457 | - [docker.io/labring/istio:1.16.2-min](https://explore.ggcr.dev/?image=docker.io/labring/istio:1.16.2-min) 458 | - [docker.io/labring/istio:1.16.2](https://explore.ggcr.dev/?image=docker.io/labring/istio:1.16.2) 459 | - [docker.io/labring/istio:1.15.1](https://explore.ggcr.dev/?image=docker.io/labring/istio:1.15.1) 460 | 461 | 462 | ### [jenkins](https://github.com/labring-actions/cluster-image/tree/main/applications/jenkins) 463 | 464 | - [docker.io/labring/jenkins:v2.401.3](https://explore.ggcr.dev/?image=docker.io/labring/jenkins:v2.401.3) 465 | - [docker.io/labring/jenkins:v2.387.3](https://explore.ggcr.dev/?image=docker.io/labring/jenkins:v2.387.3) 466 | - [docker.io/labring/jenkins:v2.375.3](https://explore.ggcr.dev/?image=docker.io/labring/jenkins:v2.375.3) 467 | - [docker.io/labring/jenkins:v2.361.4](https://explore.ggcr.dev/?image=docker.io/labring/jenkins:v2.361.4) 468 | - [docker.io/labring/jenkins:v2.346.2](https://explore.ggcr.dev/?image=docker.io/labring/jenkins:v2.346.2) 469 | 470 | 471 | ### [jenkins-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/jenkins-operator) 472 | 473 | - [docker.io/labring/jenkins-operator:v0.7.1](https://explore.ggcr.dev/?image=docker.io/labring/jenkins-operator:v0.7.1) 474 | 475 | 476 | ### [k8tz](https://github.com/labring-actions/cluster-image/tree/main/applications/k8tz) 477 | 478 | - [docker.io/labring/k8tz:0.4.0](https://explore.ggcr.dev/?image=docker.io/labring/k8tz:0.4.0) 479 | 480 | 481 | ### [k9s](https://github.com/labring-actions/cluster-image/tree/main/applications/k9s) 482 | 483 | - [docker.io/labring/k9s:v0.27.2](https://explore.ggcr.dev/?image=docker.io/labring/k9s:v0.27.2) 484 | 485 | 486 | ### [kafka-exporter](https://github.com/labring-actions/cluster-image/tree/main/applications/kafka-exporter) 487 | 488 | - [docker.io/labring/kafka-exporter:latest](https://explore.ggcr.dev/?image=docker.io/labring/kafka-exporter:latest) 489 | 490 | 491 | ### [kafka-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/kafka-operator) 492 | 493 | - [docker.io/labring/kafka-operator:0.28.0](https://explore.ggcr.dev/?image=docker.io/labring/kafka-operator:0.28.0) 494 | 495 | 496 | ### [karmada](https://github.com/labring-actions/cluster-image/tree/main/applications/karmada) 497 | 498 | - [docker.io/labring/karmada:v1.5.0](https://explore.ggcr.dev/?image=docker.io/labring/karmada:v1.5.0) 499 | 500 | 501 | ### [kong-ingress-controller](https://github.com/labring-actions/cluster-image/tree/main/applications/kong-ingress-controller) 502 | 503 | - [docker.io/labring/kong-ingress-controller:2.7.0](https://explore.ggcr.dev/?image=docker.io/labring/kong-ingress-controller:2.7.0) 504 | 505 | 506 | ### [kube-ovn](https://github.com/labring-actions/cluster-image/tree/main/applications/kube-ovn) 507 | 508 | - [docker.io/labring/kube-ovn:v1.11.5](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.11.5) 509 | - [docker.io/labring/kube-ovn:v1.11.3](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.11.3) 510 | - [docker.io/labring/kube-ovn:v1.11.0](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.11.0) 511 | - [docker.io/labring/kube-ovn:v1.10.7](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.10.7) 512 | - [docker.io/labring/kube-ovn:v1.10.6](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.10.6) 513 | - [docker.io/labring/kube-ovn:v1.10.5](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.10.5) 514 | - [docker.io/labring/kube-ovn:v1.10.4](https://explore.ggcr.dev/?image=docker.io/labring/kube-ovn:v1.10.4) 515 | 516 | 517 | ### [kube-prometheus-stack](https://github.com/labring-actions/cluster-image/tree/main/applications/kube-prometheus-stack) 518 | 519 | - [docker.io/labring/kube-prometheus-stack:v0.63.0](https://explore.ggcr.dev/?image=docker.io/labring/kube-prometheus-stack:v0.63.0) 520 | - [docker.io/labring/kube-prometheus-stack:v0.56.0](https://explore.ggcr.dev/?image=docker.io/labring/kube-prometheus-stack:v0.56.0) 521 | 522 | 523 | ### [kube-state-metrics](https://github.com/labring-actions/cluster-image/tree/main/applications/kube-state-metrics) 524 | 525 | - [docker.io/labring/kube-state-metrics:v2.4.2](https://explore.ggcr.dev/?image=docker.io/labring/kube-state-metrics:v2.4.2) 526 | 527 | 528 | ### [kube-vip](https://github.com/labring-actions/cluster-image/tree/main/applications/kube-vip) 529 | 530 | - [docker.io/labring/kube-vip:v0.5.10](https://explore.ggcr.dev/?image=docker.io/labring/kube-vip:v0.5.10) 531 | - [docker.io/labring/kube-vip:v0.5.9](https://explore.ggcr.dev/?image=docker.io/labring/kube-vip:v0.5.9) 532 | - [docker.io/labring/kube-vip:v0.5.8](https://explore.ggcr.dev/?image=docker.io/labring/kube-vip:v0.5.8) 533 | - [docker.io/labring/kube-vip:v0.5.7](https://explore.ggcr.dev/?image=docker.io/labring/kube-vip:v0.5.7) 534 | 535 | 536 | ### [kubeblocks](https://github.com/labring-actions/cluster-image/tree/main/applications/kubeblocks) 537 | 538 | - [docker.io/labring/kubeblocks:v0.6.1](https://explore.ggcr.dev/?image=docker.io/labring/kubeblocks:v0.6.1) 539 | - [docker.io/labring/kubeblocks:v0.6.0](https://explore.ggcr.dev/?image=docker.io/labring/kubeblocks:v0.6.0) 540 | - [docker.io/labring/kubeblocks:v0.5.3](https://explore.ggcr.dev/?image=docker.io/labring/kubeblocks:v0.5.3) 541 | 542 | 543 | ### [kubectl-df-pv](https://github.com/labring-actions/cluster-image/tree/main/applications/kubectl-df-pv) 544 | 545 | - [docker.io/labring/kubectl-df-pv:v0.3.0](https://explore.ggcr.dev/?image=docker.io/labring/kubectl-df-pv:v0.3.0) 546 | 547 | 548 | ### [kubegems](https://github.com/labring-actions/cluster-image/tree/main/applications/kubegems) 549 | 550 | - [docker.io/labring/kubegems:v1.22.2](https://explore.ggcr.dev/?image=docker.io/labring/kubegems:v1.22.2) 551 | - [docker.io/labring/kubegems:v1.22.0](https://explore.ggcr.dev/?image=docker.io/labring/kubegems:v1.22.0) 552 | - [docker.io/labring/kubegems:v1.22.0-sealos-part3](https://explore.ggcr.dev/?image=docker.io/labring/kubegems:v1.22.0-sealos-part3) 553 | - [docker.io/labring/kubegems:v1.22.0-ai2](https://explore.ggcr.dev/?image=docker.io/labring/kubegems:v1.22.0-ai2) 554 | - [docker.io/labring/kubegems:v1.22.0-ai1](https://explore.ggcr.dev/?image=docker.io/labring/kubegems:v1.22.0-ai1) 555 | - [docker.io/labring/kubegems:v1.21.4](https://explore.ggcr.dev/?image=docker.io/labring/kubegems:v1.21.4) 556 | 557 | 558 | ### [kubernetes-dashboard](https://github.com/labring-actions/cluster-image/tree/main/applications/kubernetes-dashboard) 559 | 560 | - [docker.io/labring/kubernetes-dashboard:v2.7.0](https://explore.ggcr.dev/?image=docker.io/labring/kubernetes-dashboard:v2.7.0) 561 | - [docker.io/labring/kubernetes-dashboard:v1.0.8](https://explore.ggcr.dev/?image=docker.io/labring/kubernetes-dashboard:v1.0.8) 562 | 563 | 564 | ### [kubernetes-reflector](https://github.com/labring-actions/cluster-image/tree/main/applications/kubernetes-reflector) 565 | 566 | - [docker.io/labring/kubernetes-reflector:v7.0.151](https://explore.ggcr.dev/?image=docker.io/labring/kubernetes-reflector:v7.0.151) 567 | 568 | 569 | ### [kubesphere](https://github.com/labring-actions/cluster-image/tree/main/applications/kubesphere) 570 | 571 | - [docker.io/labring/kubesphere:v3.4.0](https://explore.ggcr.dev/?image=docker.io/labring/kubesphere:v3.4.0) 572 | - [docker.io/labring/kubesphere:v3.3.2](https://explore.ggcr.dev/?image=docker.io/labring/kubesphere:v3.3.2) 573 | - [docker.io/labring/kubesphere:v3.3.1](https://explore.ggcr.dev/?image=docker.io/labring/kubesphere:v3.3.1) 574 | - [docker.io/labring/kubesphere:v3.3.0](https://explore.ggcr.dev/?image=docker.io/labring/kubesphere:v3.3.0) 575 | 576 | 577 | ### [kubevela](https://github.com/labring-actions/cluster-image/tree/main/applications/kubevela) 578 | 579 | - [docker.io/labring/kubevela:v1.6.3](https://explore.ggcr.dev/?image=docker.io/labring/kubevela:v1.6.3) 580 | - [docker.io/labring/kubevela:v1.6.2](https://explore.ggcr.dev/?image=docker.io/labring/kubevela:v1.6.2) 581 | - [docker.io/labring/kubevela:v1.6.1](https://explore.ggcr.dev/?image=docker.io/labring/kubevela:v1.6.1) 582 | - [docker.io/labring/kubevela:v1.6.0](https://explore.ggcr.dev/?image=docker.io/labring/kubevela:v1.6.0) 583 | 584 | 585 | ### [kubevirt](https://github.com/labring-actions/cluster-image/tree/main/applications/kubevirt) 586 | 587 | - [docker.io/labring/kubevirt:v0.58.0](https://explore.ggcr.dev/?image=docker.io/labring/kubevirt:v0.58.0) 588 | - [docker.io/labring/kubevirt:v0.57.0](https://explore.ggcr.dev/?image=docker.io/labring/kubevirt:v0.57.0) 589 | 590 | 591 | ### [kuboard](https://github.com/labring-actions/cluster-image/tree/main/applications/kuboard) 592 | 593 | - [docker.io/labring/kuboard:v3](https://explore.ggcr.dev/?image=docker.io/labring/kuboard:v3) 594 | - [docker.io/labring/kuboard:v2](https://explore.ggcr.dev/?image=docker.io/labring/kuboard:v2) 595 | 596 | 597 | ### [kustomize](https://github.com/labring-actions/cluster-image/tree/main/applications/kustomize) 598 | 599 | - [docker.io/labring/kustomize:v4.5.6](https://explore.ggcr.dev/?image=docker.io/labring/kustomize:v4.5.6) 600 | 601 | 602 | ### [kyverno](https://github.com/labring-actions/cluster-image/tree/main/applications/kyverno) 603 | 604 | - [docker.io/labring/kyverno:v1.10.3](https://explore.ggcr.dev/?image=docker.io/labring/kyverno:v1.10.3) 605 | - [docker.io/labring/kyverno:v1.9.5](https://explore.ggcr.dev/?image=docker.io/labring/kyverno:v1.9.5) 606 | 607 | 608 | ### [local-path-provisioner](https://github.com/labring-actions/cluster-image/tree/main/applications/local-path-provisioner) 609 | 610 | - [docker.io/labring/local-path-provisioner:v0.0.23](https://explore.ggcr.dev/?image=docker.io/labring/local-path-provisioner:v0.0.23) 611 | 612 | 613 | ### [loki](https://github.com/labring-actions/cluster-image/tree/main/applications/loki) 614 | 615 | - [docker.io/labring/loki:v2.8.4](https://explore.ggcr.dev/?image=docker.io/labring/loki:v2.8.4) 616 | - [docker.io/labring/loki:v2.6.1](https://explore.ggcr.dev/?image=docker.io/labring/loki:v2.6.1) 617 | - [docker.io/labring/loki:2.6.1](https://explore.ggcr.dev/?image=docker.io/labring/loki:2.6.1) 618 | 619 | 620 | ### [loki-stack](https://github.com/labring-actions/cluster-image/tree/main/applications/loki-stack) 621 | 622 | - [docker.io/labring/loki-stack:v2.6.1](https://explore.ggcr.dev/?image=docker.io/labring/loki-stack:v2.6.1) 623 | 624 | 625 | ### [longhorn](https://github.com/labring-actions/cluster-image/tree/main/applications/longhorn) 626 | 627 | - [docker.io/labring/longhorn:v1.5.1](https://explore.ggcr.dev/?image=docker.io/labring/longhorn:v1.5.1) 628 | - [docker.io/labring/longhorn:v1.4.3](https://explore.ggcr.dev/?image=docker.io/labring/longhorn:v1.4.3) 629 | - [docker.io/labring/longhorn:v1.4.0](https://explore.ggcr.dev/?image=docker.io/labring/longhorn:v1.4.0) 630 | - [docker.io/labring/longhorn:v1.3.0](https://explore.ggcr.dev/?image=docker.io/labring/longhorn:v1.3.0) 631 | 632 | 633 | ### [lvscare](https://github.com/labring-actions/cluster-image/tree/main/applications/lvscare) 634 | 635 | - [docker.io/labring/lvscare:v1.1.3-beta.8](https://explore.ggcr.dev/?image=docker.io/labring/lvscare:v1.1.3-beta.8) 636 | 637 | 638 | ### [memcached](https://github.com/labring-actions/cluster-image/tree/main/applications/memcached) 639 | 640 | - [docker.io/labring/memcached:1.6.17](https://explore.ggcr.dev/?image=docker.io/labring/memcached:1.6.17) 641 | 642 | 643 | ### [metallb](https://github.com/labring-actions/cluster-image/tree/main/applications/metallb) 644 | 645 | - [docker.io/labring/metallb:v0.13.10](https://explore.ggcr.dev/?image=docker.io/labring/metallb:v0.13.10) 646 | - [docker.io/labring/metallb:v0.13.9](https://explore.ggcr.dev/?image=docker.io/labring/metallb:v0.13.9) 647 | - [docker.io/labring/metallb:v0.13.7](https://explore.ggcr.dev/?image=docker.io/labring/metallb:v0.13.7) 648 | - [docker.io/labring/metallb:v0.13.4](https://explore.ggcr.dev/?image=docker.io/labring/metallb:v0.13.4) 649 | 650 | 651 | ### [metrics-server](https://github.com/labring-actions/cluster-image/tree/main/applications/metrics-server) 652 | 653 | - [docker.io/labring/metrics-server:v0.6.2](https://explore.ggcr.dev/?image=docker.io/labring/metrics-server:v0.6.2) 654 | - [docker.io/labring/metrics-server:v0.6.1](https://explore.ggcr.dev/?image=docker.io/labring/metrics-server:v0.6.1) 655 | 656 | 657 | ### [minio](https://github.com/labring-actions/cluster-image/tree/main/applications/minio) 658 | 659 | - [docker.io/labring/minio:RELEASE.2023-07-07T07-13-57Z](https://explore.ggcr.dev/?image=docker.io/labring/minio:RELEASE.2023-07-07T07-13-57Z) 660 | - [docker.io/labring/minio:2022.5.9-debian-10-r13](https://explore.ggcr.dev/?image=docker.io/labring/minio:2022.5.9-debian-10-r13) 661 | - [docker.io/labring/minio:2021.6.17-debian-10-r38](https://explore.ggcr.dev/?image=docker.io/labring/minio:2021.6.17-debian-10-r38) 662 | 663 | 664 | ### [minio-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/minio-operator) 665 | 666 | - [docker.io/labring/minio-operator:v4.5.5](https://explore.ggcr.dev/?image=docker.io/labring/minio-operator:v4.5.5) 667 | - [docker.io/labring/minio-operator:v4.5.4](https://explore.ggcr.dev/?image=docker.io/labring/minio-operator:v4.5.4) 668 | - [docker.io/labring/minio-operator:v4.5.3](https://explore.ggcr.dev/?image=docker.io/labring/minio-operator:v4.5.3) 669 | - [docker.io/labring/minio-operator:v4.4.16](https://explore.ggcr.dev/?image=docker.io/labring/minio-operator:v4.4.16) 670 | 671 | 672 | ### [mongodb-community-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/mongodb-community-operator) 673 | 674 | - [docker.io/labring/mongodb-community-operator:0.7.6](https://explore.ggcr.dev/?image=docker.io/labring/mongodb-community-operator:0.7.6) 675 | 676 | 677 | ### [mongodb-single](https://github.com/labring-actions/cluster-image/tree/main/applications/mongodb-single) 678 | 679 | - [docker.io/labring/mongodb-single:6.0.6](https://explore.ggcr.dev/?image=docker.io/labring/mongodb-single:6.0.6) 680 | 681 | 682 | ### [mssql-server](https://github.com/labring-actions/cluster-image/tree/main/applications/mssql-server) 683 | 684 | - [docker.io/labring/mssql-server:2022-latest](https://explore.ggcr.dev/?image=docker.io/labring/mssql-server:2022-latest) 685 | - [docker.io/labring/mssql-server:2019-latest](https://explore.ggcr.dev/?image=docker.io/labring/mssql-server:2019-latest) 686 | - [docker.io/labring/mssql-server:2017-latest](https://explore.ggcr.dev/?image=docker.io/labring/mssql-server:2017-latest) 687 | 688 | 689 | ### [multus-cni](https://github.com/labring-actions/cluster-image/tree/main/applications/multus-cni) 690 | 691 | - [docker.io/labring/multus-cni:v4.0.1](https://explore.ggcr.dev/?image=docker.io/labring/multus-cni:v4.0.1) 692 | - [docker.io/labring/multus-cni:v3.9.3](https://explore.ggcr.dev/?image=docker.io/labring/multus-cni:v3.9.3) 693 | - [docker.io/labring/multus-cni:v3.9.2](https://explore.ggcr.dev/?image=docker.io/labring/multus-cni:v3.9.2) 694 | 695 | 696 | ### [mysql-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/mysql-operator) 697 | 698 | - [docker.io/labring/mysql-operator:8.0.27-18.1](https://explore.ggcr.dev/?image=docker.io/labring/mysql-operator:8.0.27-18.1) 699 | - [docker.io/labring/mysql-operator:8.0.23-14.1](https://explore.ggcr.dev/?image=docker.io/labring/mysql-operator:8.0.23-14.1) 700 | 701 | 702 | ### [nerdctl](https://github.com/labring-actions/cluster-image/tree/main/applications/nerdctl) 703 | 704 | - [docker.io/labring/nerdctl:v1.5.0](https://explore.ggcr.dev/?image=docker.io/labring/nerdctl:v1.5.0) 705 | - [docker.io/labring/nerdctl:v1.4.0](https://explore.ggcr.dev/?image=docker.io/labring/nerdctl:v1.4.0) 706 | - [docker.io/labring/nerdctl:v1.3.0](https://explore.ggcr.dev/?image=docker.io/labring/nerdctl:v1.3.0) 707 | - [docker.io/labring/nerdctl:v1.2.1](https://explore.ggcr.dev/?image=docker.io/labring/nerdctl:v1.2.1) 708 | - [docker.io/labring/nerdctl:v1.2.0](https://explore.ggcr.dev/?image=docker.io/labring/nerdctl:v1.2.0) 709 | 710 | 711 | ### [neuvector](https://github.com/labring-actions/cluster-image/tree/main/applications/neuvector) 712 | 713 | - [docker.io/labring/neuvector:v5.1.0](https://explore.ggcr.dev/?image=docker.io/labring/neuvector:v5.1.0) 714 | 715 | 716 | ### [neuvector-containerd](https://github.com/labring-actions/cluster-image/tree/main/applications/neuvector-containerd) 717 | 718 | - [docker.io/labring/neuvector-containerd:v5.0.5](https://explore.ggcr.dev/?image=docker.io/labring/neuvector-containerd:v5.0.5) 719 | 720 | 721 | ### [neuvector-crio](https://github.com/labring-actions/cluster-image/tree/main/applications/neuvector-crio) 722 | 723 | - [docker.io/labring/neuvector-crio:v5.0.5](https://explore.ggcr.dev/?image=docker.io/labring/neuvector-crio:v5.0.5) 724 | 725 | 726 | ### [neuvector-docker](https://github.com/labring-actions/cluster-image/tree/main/applications/neuvector-docker) 727 | 728 | - [docker.io/labring/neuvector-docker:v5.0.5](https://explore.ggcr.dev/?image=docker.io/labring/neuvector-docker:v5.0.5) 729 | 730 | 731 | ### [nextcloud](https://github.com/labring-actions/cluster-image/tree/main/applications/nextcloud) 732 | 733 | - [docker.io/labring/nextcloud:v27.0.2](https://explore.ggcr.dev/?image=docker.io/labring/nextcloud:v27.0.2) 734 | 735 | 736 | ### [nfs-subdir-external-provisioner](https://github.com/labring-actions/cluster-image/tree/main/applications/nfs-subdir-external-provisioner) 737 | 738 | - [docker.io/labring/nfs-subdir-external-provisioner:v4.0.18](https://explore.ggcr.dev/?image=docker.io/labring/nfs-subdir-external-provisioner:v4.0.18) 739 | - [docker.io/labring/nfs-subdir-external-provisioner:v4.0.17](https://explore.ggcr.dev/?image=docker.io/labring/nfs-subdir-external-provisioner:v4.0.17) 740 | 741 | 742 | ### [nginx](https://github.com/labring-actions/cluster-image/tree/main/applications/nginx) 743 | 744 | - [docker.io/labring/nginx:v1.25.2](https://explore.ggcr.dev/?image=docker.io/labring/nginx:v1.25.2) 745 | - [docker.io/labring/nginx:v1.25.1](https://explore.ggcr.dev/?image=docker.io/labring/nginx:v1.25.1) 746 | - [docker.io/labring/nginx:v1.25.0](https://explore.ggcr.dev/?image=docker.io/labring/nginx:v1.25.0) 747 | - [docker.io/labring/nginx:v1.24.0](https://explore.ggcr.dev/?image=docker.io/labring/nginx:v1.24.0) 748 | - [docker.io/labring/nginx:v1.23.3](https://explore.ggcr.dev/?image=docker.io/labring/nginx:v1.23.3) 749 | - [docker.io/labring/nginx:1.23.2](https://explore.ggcr.dev/?image=docker.io/labring/nginx:1.23.2) 750 | - [docker.io/labring/nginx:1.23.1](https://explore.ggcr.dev/?image=docker.io/labring/nginx:1.23.1) 751 | - [docker.io/labring/nginx:1.23.0](https://explore.ggcr.dev/?image=docker.io/labring/nginx:1.23.0) 752 | - [docker.io/labring/nginx:1.22.0](https://explore.ggcr.dev/?image=docker.io/labring/nginx:1.22.0) 753 | - [docker.io/labring/nginx:1.21.6](https://explore.ggcr.dev/?image=docker.io/labring/nginx:1.21.6) 754 | - [docker.io/labring/nginx:1.21.5](https://explore.ggcr.dev/?image=docker.io/labring/nginx:1.21.5) 755 | 756 | 757 | ### [openebs](https://github.com/labring-actions/cluster-image/tree/main/applications/openebs) 758 | 759 | - [docker.io/labring/openebs:v3.7.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs:v3.7.0) 760 | - [docker.io/labring/openebs:v3.6.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs:v3.6.0) 761 | - [docker.io/labring/openebs:v3.5.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs:v3.5.0) 762 | - [docker.io/labring/openebs:v3.4.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs:v3.4.0) 763 | - [docker.io/labring/openebs:v3.3.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs:v3.3.0) 764 | - [docker.io/labring/openebs:v1.9.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs:v1.9.0) 765 | 766 | 767 | ### [openebs-cstor](https://github.com/labring-actions/cluster-image/tree/main/applications/openebs-cstor) 768 | 769 | - [docker.io/labring/openebs-cstor:v3.3.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs-cstor:v3.3.0) 770 | 771 | 772 | ### [openebs-jiva](https://github.com/labring-actions/cluster-image/tree/main/applications/openebs-jiva) 773 | 774 | - [docker.io/labring/openebs-jiva:v3.3.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs-jiva:v3.3.0) 775 | 776 | 777 | ### [openebs-lvm](https://github.com/labring-actions/cluster-image/tree/main/applications/openebs-lvm) 778 | 779 | - [docker.io/labring/openebs-lvm:v0.8.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs-lvm:v0.8.0) 780 | - [docker.io/labring/openebs-lvm:lvm-1.0.1](https://explore.ggcr.dev/?image=docker.io/labring/openebs-lvm:lvm-1.0.1) 781 | - [docker.io/labring/openebs-lvm:0.8.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs-lvm:0.8.0) 782 | 783 | 784 | ### [openebs-mayastor](https://github.com/labring-actions/cluster-image/tree/main/applications/openebs-mayastor) 785 | 786 | - [docker.io/labring/openebs-mayastor:v2.3.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs-mayastor:v2.3.0) 787 | - [docker.io/labring/openebs-mayastor:v1.0.4](https://explore.ggcr.dev/?image=docker.io/labring/openebs-mayastor:v1.0.4) 788 | 789 | 790 | ### [openebs-nfs](https://github.com/labring-actions/cluster-image/tree/main/applications/openebs-nfs) 791 | 792 | - [docker.io/labring/openebs-nfs:v0.10.0](https://explore.ggcr.dev/?image=docker.io/labring/openebs-nfs:v0.10.0) 793 | 794 | 795 | ### [openim](https://github.com/labring-actions/cluster-image/tree/main/applications/openim) 796 | 797 | - [docker.io/labring/openim:errcode](https://explore.ggcr.dev/?image=docker.io/labring/openim:errcode) 798 | 799 | 800 | ### [oracle-mysql-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/oracle-mysql-operator) 801 | 802 | - [docker.io/labring/oracle-mysql-operator:8.0.30-2.0.6](https://explore.ggcr.dev/?image=docker.io/labring/oracle-mysql-operator:8.0.30-2.0.6) 803 | 804 | 805 | ### [ot-redis-cluster](https://github.com/labring-actions/cluster-image/tree/main/applications/ot-redis-cluster) 806 | 807 | - [docker.io/labring/ot-redis-cluster:v0.14.0](https://explore.ggcr.dev/?image=docker.io/labring/ot-redis-cluster:v0.14.0) 808 | 809 | 810 | ### [piraeus-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/piraeus-operator) 811 | 812 | - [docker.io/labring/piraeus-operator:v2.1.1](https://explore.ggcr.dev/?image=docker.io/labring/piraeus-operator:v2.1.1) 813 | 814 | 815 | ### [podman](https://github.com/labring-actions/cluster-image/tree/main/applications/podman) 816 | 817 | - [docker.io/labring/podman:v4.5.0](https://explore.ggcr.dev/?image=docker.io/labring/podman:v4.5.0) 818 | - [docker.io/labring/podman:v4.4.4](https://explore.ggcr.dev/?image=docker.io/labring/podman:v4.4.4) 819 | 820 | 821 | ### [prometheus-adapter](https://github.com/labring-actions/cluster-image/tree/main/applications/prometheus-adapter) 822 | 823 | - [docker.io/labring/prometheus-adapter:3.4.2](https://explore.ggcr.dev/?image=docker.io/labring/prometheus-adapter:3.4.2) 824 | 825 | 826 | ### [promtail](https://github.com/labring-actions/cluster-image/tree/main/applications/promtail) 827 | 828 | - [docker.io/labring/promtail:v2.8.3](https://explore.ggcr.dev/?image=docker.io/labring/promtail:v2.8.3) 829 | 830 | 831 | ### [rabbitmq-cluster-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/rabbitmq-cluster-operator) 832 | 833 | - [docker.io/labring/rabbitmq-cluster-operator:2.0.0](https://explore.ggcr.dev/?image=docker.io/labring/rabbitmq-cluster-operator:2.0.0) 834 | 835 | 836 | ### [rancher](https://github.com/labring-actions/cluster-image/tree/main/applications/rancher) 837 | 838 | - [docker.io/labring/rancher:v2.6.9](https://explore.ggcr.dev/?image=docker.io/labring/rancher:v2.6.9) 839 | - [docker.io/labring/rancher:v2.6.8](https://explore.ggcr.dev/?image=docker.io/labring/rancher:v2.6.8) 840 | - [docker.io/labring/rancher:v2.6.7](https://explore.ggcr.dev/?image=docker.io/labring/rancher:v2.6.7) 841 | 842 | 843 | ### [redis-exporter](https://github.com/labring-actions/cluster-image/tree/main/applications/redis-exporter) 844 | 845 | - [docker.io/labring/redis-exporter:latest](https://explore.ggcr.dev/?image=docker.io/labring/redis-exporter:latest) 846 | 847 | 848 | ### [redis-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/redis-operator) 849 | 850 | - [docker.io/labring/redis-operator:v1.2.4](https://explore.ggcr.dev/?image=docker.io/labring/redis-operator:v1.2.4) 851 | - [docker.io/labring/redis-operator:v1.2.3](https://explore.ggcr.dev/?image=docker.io/labring/redis-operator:v1.2.3) 852 | - [docker.io/labring/redis-operator:v1.2.2](https://explore.ggcr.dev/?image=docker.io/labring/redis-operator:v1.2.2) 853 | - [docker.io/labring/redis-operator:3.1.4](https://explore.ggcr.dev/?image=docker.io/labring/redis-operator:3.1.4) 854 | 855 | 856 | ### [registry](https://github.com/labring-actions/cluster-image/tree/main/applications/registry) 857 | 858 | - [docker.io/labring/registry:2.8.2](https://explore.ggcr.dev/?image=docker.io/labring/registry:2.8.2) 859 | - [docker.io/labring/registry:2.8.1](https://explore.ggcr.dev/?image=docker.io/labring/registry:2.8.1) 860 | 861 | 862 | ### [rocketmq-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/rocketmq-operator) 863 | 864 | - [docker.io/labring/rocketmq-operator:4.5.0](https://explore.ggcr.dev/?image=docker.io/labring/rocketmq-operator:4.5.0) 865 | 866 | 867 | ### [rook](https://github.com/labring-actions/cluster-image/tree/main/applications/rook) 868 | 869 | - [docker.io/labring/rook:v1.9.11](https://explore.ggcr.dev/?image=docker.io/labring/rook:v1.9.11) 870 | - [docker.io/labring/rook:v1.9.8](https://explore.ggcr.dev/?image=docker.io/labring/rook:v1.9.8) 871 | 872 | 873 | ### [skopeo](https://github.com/labring-actions/cluster-image/tree/main/applications/skopeo) 874 | 875 | - [docker.io/labring/skopeo:v1.13.0](https://explore.ggcr.dev/?image=docker.io/labring/skopeo:v1.13.0) 876 | - [docker.io/labring/skopeo:v1.12.0](https://explore.ggcr.dev/?image=docker.io/labring/skopeo:v1.12.0) 877 | - [docker.io/labring/skopeo:v1.11.2](https://explore.ggcr.dev/?image=docker.io/labring/skopeo:v1.11.2) 878 | 879 | 880 | ### [skywalking](https://github.com/labring-actions/cluster-image/tree/main/applications/skywalking) 881 | 882 | - [docker.io/labring/skywalking:8.8.1](https://explore.ggcr.dev/?image=docker.io/labring/skywalking:8.8.1) 883 | 884 | 885 | ### [sonarqube](https://github.com/labring-actions/cluster-image/tree/main/applications/sonarqube) 886 | 887 | - [docker.io/labring/sonarqube:v10.1.0](https://explore.ggcr.dev/?image=docker.io/labring/sonarqube:v10.1.0) 888 | 889 | 890 | ### [sriov-network-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/sriov-network-operator) 891 | 892 | - [docker.io/labring/sriov-network-operator:v1.2.0](https://explore.ggcr.dev/?image=docker.io/labring/sriov-network-operator:v1.2.0) 893 | 894 | 895 | ### [tekton](https://github.com/labring-actions/cluster-image/tree/main/applications/tekton) 896 | 897 | - [docker.io/labring/tekton:v0.61.0](https://explore.ggcr.dev/?image=docker.io/labring/tekton:v0.61.0) 898 | 899 | 900 | ### [teleport](https://github.com/labring-actions/cluster-image/tree/main/applications/teleport) 901 | 902 | - [docker.io/labring/teleport:v13.3.4](https://explore.ggcr.dev/?image=docker.io/labring/teleport:v13.3.4) 903 | 904 | 905 | ### [telepresence](https://github.com/labring-actions/cluster-image/tree/main/applications/telepresence) 906 | 907 | - [docker.io/labring/telepresence:2.11.0](https://explore.ggcr.dev/?image=docker.io/labring/telepresence:2.11.0) 908 | 909 | 910 | ### [tidb-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/tidb-operator) 911 | 912 | - [docker.io/labring/tidb-operator:v1.3.7](https://explore.ggcr.dev/?image=docker.io/labring/tidb-operator:v1.3.7) 913 | 914 | 915 | ### [tomcat](https://github.com/labring-actions/cluster-image/tree/main/applications/tomcat) 916 | 917 | - [docker.io/labring/tomcat:v10.5.14](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:v10.5.14) 918 | - [docker.io/labring/tomcat:v10.1.12](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:v10.1.12) 919 | - [docker.io/labring/tomcat:v10.1.11](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:v10.1.11) 920 | - [docker.io/labring/tomcat:v10.1.10](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:v10.1.10) 921 | - [docker.io/labring/tomcat:v10.1.9](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:v10.1.9) 922 | - [docker.io/labring/tomcat:v10.1.8](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:v10.1.8) 923 | - [docker.io/labring/tomcat:10.0.23](https://explore.ggcr.dev/?image=docker.io/labring/tomcat:10.0.23) 924 | 925 | 926 | ### [traefik](https://github.com/labring-actions/cluster-image/tree/main/applications/traefik) 927 | 928 | - [docker.io/labring/traefik:2.8.7](https://explore.ggcr.dev/?image=docker.io/labring/traefik:2.8.7) 929 | 930 | 931 | ### [trivy-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/trivy-operator) 932 | 933 | - [docker.io/labring/trivy-operator:v0.5.0](https://explore.ggcr.dev/?image=docker.io/labring/trivy-operator:v0.5.0) 934 | 935 | 936 | ### [uptime-kuma](https://github.com/labring-actions/cluster-image/tree/main/applications/uptime-kuma) 937 | 938 | - [docker.io/labring/uptime-kuma:1.23.0](https://explore.ggcr.dev/?image=docker.io/labring/uptime-kuma:1.23.0) 939 | 940 | 941 | ### [velero](https://github.com/labring-actions/cluster-image/tree/main/applications/velero) 942 | 943 | - [docker.io/labring/velero:v1.9.1](https://explore.ggcr.dev/?image=docker.io/labring/velero:v1.9.1) 944 | 945 | 946 | ### [weave-gitops](https://github.com/labring-actions/cluster-image/tree/main/applications/weave-gitops) 947 | 948 | - [docker.io/labring/weave-gitops:0.10.1](https://explore.ggcr.dev/?image=docker.io/labring/weave-gitops:0.10.1) 949 | 950 | 951 | ### [wordpress](https://github.com/labring-actions/cluster-image/tree/main/applications/wordpress) 952 | 953 | - [docker.io/labring/wordpress:v6.2.2](https://explore.ggcr.dev/?image=docker.io/labring/wordpress:v6.2.2) 954 | - [docker.io/labring/wordpress:v6.2.1](https://explore.ggcr.dev/?image=docker.io/labring/wordpress:v6.2.1) 955 | - [docker.io/labring/wordpress:v6.2.0](https://explore.ggcr.dev/?image=docker.io/labring/wordpress:v6.2.0) 956 | - [docker.io/labring/wordpress:v6.1.1](https://explore.ggcr.dev/?image=docker.io/labring/wordpress:v6.1.1) 957 | - [docker.io/labring/wordpress:v6.0.1](https://explore.ggcr.dev/?image=docker.io/labring/wordpress:v6.0.1) 958 | 959 | 960 | ### [zadig](https://github.com/labring-actions/cluster-image/tree/main/applications/zadig) 961 | 962 | - [docker.io/labring/zadig:1.18.0](https://explore.ggcr.dev/?image=docker.io/labring/zadig:1.18.0) 963 | - [docker.io/labring/zadig:1.17.0](https://explore.ggcr.dev/?image=docker.io/labring/zadig:1.17.0) 964 | 965 | 966 | ### [zalando-postgres-operator](https://github.com/labring-actions/cluster-image/tree/main/applications/zalando-postgres-operator) 967 | 968 | - [docker.io/labring/zalando-postgres-operator:v1.9.0](https://explore.ggcr.dev/?image=docker.io/labring/zalando-postgres-operator:v1.9.0) 969 | - [docker.io/labring/zalando-postgres-operator:14](https://explore.ggcr.dev/?image=docker.io/labring/zalando-postgres-operator:14) 970 | 971 | 972 | ### [zot](https://github.com/labring-actions/cluster-image/tree/main/applications/zot) 973 | 974 | - [docker.io/labring/zot:v2.0.0-rc4](https://explore.ggcr.dev/?image=docker.io/labring/zot:v2.0.0-rc4) 975 | - [docker.io/labring/zot:v1.4.3](https://explore.ggcr.dev/?image=docker.io/labring/zot:v1.4.3) 976 | 977 | 978 | ### [zot-upload](https://github.com/labring-actions/cluster-image/tree/main/applications/zot-upload) 979 | 980 | - [docker.io/labring/zot-upload:main](https://explore.ggcr.dev/?image=docker.io/labring/zot-upload:main) 981 | 982 | 983 | -------------------------------------------------------------------------------- /tmp/laf.md: -------------------------------------------------------------------------------- 1 | # Laf Image Versions 2 | 3 | Here are the versions of the images along with their corresponding links: 4 | 5 | ### [laf](https://github.com/labring/laf) 6 | 7 | - [docker.io/labring/laf:latest](https://explore.ggcr.dev/?image=docker.io/labring/laf:latest) 8 | - [docker.io/labring/laf:v1.0.0-beta.10](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.10) 9 | - [docker.io/labring/laf:v1.0.0-beta.9](https://explore.ggcr.dev/?image=docker.io/labring/laf:v1.0.0-beta.9) 10 | 11 | 12 | -------------------------------------------------------------------------------- /tmp/sealos.md: -------------------------------------------------------------------------------- 1 | # Sealos Image Versions 2 | 3 | Here are the versions of the images along with their corresponding links: 4 | 5 | ### [sealos](https://github.com/labring/sealos) 6 | 7 | - [docker.io/labring/sealos:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos:latest) 8 | - [docker.io/labring/sealos:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v5.0.0-alpha1) 9 | - [docker.io/labring/sealos:v4.3.1-rc2](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.3.1-rc2) 10 | - [docker.io/labring/sealos:v4.3.1-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.3.1-rc1) 11 | - [docker.io/labring/sealos:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.3.0-rc1) 12 | - [docker.io/labring/sealos:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.2.1-rc6) 13 | - [docker.io/labring/sealos:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.2.1-rc5) 14 | - [docker.io/labring/sealos:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.2.1-rc4) 15 | - [docker.io/labring/sealos:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.2.1-rc3) 16 | - [docker.io/labring/sealos:v4.2.1-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.2.1-rc1) 17 | - [docker.io/labring/sealos:v4.1.4-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.1.4-rc1) 18 | - [docker.io/labring/sealos:v4.1.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos:v4.1.3) 19 | 20 | 21 | ### [sealos-cloud](https://github.com/labring/sealos) 22 | 23 | - [docker.io/labring/sealos-cloud:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:latest) 24 | - [docker.io/labring/sealos-cloud:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v5.0.0-alpha1) 25 | - [docker.io/labring/sealos-cloud:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.3.0) 26 | - [docker.io/labring/sealos-cloud:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.3.0-rc1) 27 | - [docker.io/labring/sealos-cloud:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.3) 28 | - [docker.io/labring/sealos-cloud:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.2) 29 | - [docker.io/labring/sealos-cloud:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.1) 30 | - [docker.io/labring/sealos-cloud:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.1-rc6) 31 | - [docker.io/labring/sealos-cloud:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.1-rc5) 32 | - [docker.io/labring/sealos-cloud:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.1-rc4) 33 | - [docker.io/labring/sealos-cloud:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v4.2.1-rc3) 34 | - [docker.io/labring/sealos-cloud:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud:v1alpha1) 35 | 36 | 37 | ### [sealos-cloud-account-controller](https://github.com/labring/sealos) 38 | 39 | - [docker.io/labring/sealos-cloud-account-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:latest) 40 | - [docker.io/labring/sealos-cloud-account-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v5.0.0-alpha1) 41 | - [docker.io/labring/sealos-cloud-account-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.3.0) 42 | - [docker.io/labring/sealos-cloud-account-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.3.0-rc1) 43 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.3) 44 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.2) 45 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.1) 46 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc6) 47 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc5) 48 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc4) 49 | - [docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v4.2.1-rc3) 50 | - [docker.io/labring/sealos-cloud-account-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-account-controller:v1alpha1) 51 | 52 | 53 | ### [sealos-cloud-adminer-frontend](https://github.com/labring/sealos) 54 | 55 | - [docker.io/labring/sealos-cloud-adminer-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:latest) 56 | - [docker.io/labring/sealos-cloud-adminer-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v5.0.0-alpha1) 57 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.3.0) 58 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.3.0-rc1) 59 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.3) 60 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.2) 61 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1) 62 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc6) 63 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc5) 64 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc4) 65 | - [docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v4.2.1-rc3) 66 | - [docker.io/labring/sealos-cloud-adminer-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-adminer-frontend:v1alpha1) 67 | 68 | 69 | ### [sealos-cloud-admission-controller](https://github.com/labring/sealos) 70 | 71 | - [docker.io/labring/sealos-cloud-admission-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-admission-controller:latest) 72 | 73 | 74 | ### [sealos-cloud-app-controller](https://github.com/labring/sealos) 75 | 76 | - [docker.io/labring/sealos-cloud-app-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:latest) 77 | - [docker.io/labring/sealos-cloud-app-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v5.0.0-alpha1) 78 | - [docker.io/labring/sealos-cloud-app-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.3.0) 79 | - [docker.io/labring/sealos-cloud-app-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.3.0-rc1) 80 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.3) 81 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.2) 82 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.1) 83 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc6) 84 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc5) 85 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc4) 86 | - [docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v4.2.1-rc3) 87 | - [docker.io/labring/sealos-cloud-app-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-app-controller:v1alpha1) 88 | 89 | 90 | ### [sealos-cloud-applaunchpad-frontend](https://github.com/labring/sealos) 91 | 92 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:latest) 93 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v5.0.0-alpha1) 94 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.3.0) 95 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.3.0-rc1) 96 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.3) 97 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.2) 98 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1) 99 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc6) 100 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc5) 101 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc4) 102 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v4.2.1-rc3) 103 | - [docker.io/labring/sealos-cloud-applaunchpad-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-applaunchpad-frontend:v1alpha1) 104 | 105 | 106 | ### [sealos-cloud-auth-service](https://github.com/labring/sealos) 107 | 108 | - [docker.io/labring/sealos-cloud-auth-service:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:latest) 109 | - [docker.io/labring/sealos-cloud-auth-service:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v5.0.0-alpha1) 110 | - [docker.io/labring/sealos-cloud-auth-service:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.3.0-rc1) 111 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.3) 112 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.2) 113 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.1) 114 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc6) 115 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc5) 116 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc4) 117 | - [docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-auth-service:v4.2.1-rc3) 118 | 119 | 120 | ### [sealos-cloud-bytebase-frontend](https://github.com/labring/sealos) 121 | 122 | - [docker.io/labring/sealos-cloud-bytebase-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:latest) 123 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v5.0.0-alpha1) 124 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.3.0) 125 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.3.0-rc1) 126 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.3) 127 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.2) 128 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1) 129 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc6) 130 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc5) 131 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc4) 132 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v4.2.1-rc3) 133 | - [docker.io/labring/sealos-cloud-bytebase-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-bytebase-frontend:v1alpha1) 134 | 135 | 136 | ### [sealos-cloud-cloud-controller](https://github.com/labring/sealos) 137 | 138 | - [docker.io/labring/sealos-cloud-cloud-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cloud-controller:latest) 139 | - [docker.io/labring/sealos-cloud-cloud-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cloud-controller:v1alpha1) 140 | 141 | 142 | ### [sealos-cloud-cluster-controller](https://github.com/labring/sealos) 143 | 144 | - [docker.io/labring/sealos-cloud-cluster-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:latest) 145 | - [docker.io/labring/sealos-cloud-cluster-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v5.0.0-alpha1) 146 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.3.0) 147 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.3.0-rc1) 148 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.3) 149 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.2) 150 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.1) 151 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc6) 152 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc5) 153 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc4) 154 | - [docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v4.2.1-rc3) 155 | - [docker.io/labring/sealos-cloud-cluster-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-cluster-controller:v1alpha1) 156 | 157 | 158 | ### [sealos-cloud-costcenter-frontend](https://github.com/labring/sealos) 159 | 160 | - [docker.io/labring/sealos-cloud-costcenter-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:latest) 161 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v5.0.0-alpha1) 162 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v4.3.0) 163 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v4.3.0-rc1) 164 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v4.2.3) 165 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v4.2.2) 166 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v4.2.1) 167 | - [docker.io/labring/sealos-cloud-costcenter-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-costcenter-frontend:v1alpha1) 168 | 169 | 170 | ### [sealos-cloud-db-adminer-controller](https://github.com/labring/sealos) 171 | 172 | - [docker.io/labring/sealos-cloud-db-adminer-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:latest) 173 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v5.0.0-alpha1) 174 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.3.0) 175 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.3.0-rc1) 176 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.3) 177 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.2) 178 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1) 179 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc6) 180 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc5) 181 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc4) 182 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v4.2.1-rc3) 183 | - [docker.io/labring/sealos-cloud-db-adminer-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-adminer-controller:v1alpha1) 184 | 185 | 186 | ### [sealos-cloud-db-bytebase-controller](https://github.com/labring/sealos) 187 | 188 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:latest) 189 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v5.0.0-alpha1) 190 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.3.0) 191 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.3.0-rc1) 192 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.3) 193 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.2) 194 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1) 195 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc6) 196 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc5) 197 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc4) 198 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v4.2.1-rc3) 199 | - [docker.io/labring/sealos-cloud-db-bytebase-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-db-bytebase-controller:v1alpha1) 200 | 201 | 202 | ### [sealos-cloud-dbprovider-frontend](https://github.com/labring/sealos) 203 | 204 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:latest) 205 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v5.0.0-alpha1) 206 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v4.3.0) 207 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v4.3.0-rc1) 208 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.3) 209 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.2) 210 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.1) 211 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v4.2.1-rc6) 212 | - [docker.io/labring/sealos-cloud-dbprovider-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-dbprovider-frontend:v1alpha1) 213 | 214 | 215 | ### [sealos-cloud-desktop-frontend](https://github.com/labring/sealos) 216 | 217 | - [docker.io/labring/sealos-cloud-desktop-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:latest) 218 | - [docker.io/labring/sealos-cloud-desktop-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v5.0.0-alpha1) 219 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.3.0) 220 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.3.0-rc1) 221 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.3) 222 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.2) 223 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1) 224 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc6) 225 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc5) 226 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc4) 227 | - [docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v4.2.1-rc3) 228 | - [docker.io/labring/sealos-cloud-desktop-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-desktop-frontend:v1alpha1) 229 | 230 | 231 | ### [sealos-cloud-imagehub-controller](https://github.com/labring/sealos) 232 | 233 | - [docker.io/labring/sealos-cloud-imagehub-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:latest) 234 | - [docker.io/labring/sealos-cloud-imagehub-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v5.0.0-alpha1) 235 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.3.0) 236 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.3.0-rc1) 237 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.3) 238 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.2) 239 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1) 240 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc6) 241 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc5) 242 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc4) 243 | - [docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v4.2.1-rc3) 244 | - [docker.io/labring/sealos-cloud-imagehub-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-controller:v1alpha1) 245 | 246 | 247 | ### [sealos-cloud-imagehub-frontend](https://github.com/labring/sealos) 248 | 249 | - [docker.io/labring/sealos-cloud-imagehub-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:latest) 250 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v5.0.0-alpha1) 251 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.3.0) 252 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.3.0-rc1) 253 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.3) 254 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.2) 255 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1) 256 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc6) 257 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc5) 258 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc4) 259 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v4.2.1-rc3) 260 | - [docker.io/labring/sealos-cloud-imagehub-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-imagehub-frontend:v1alpha1) 261 | 262 | 263 | ### [sealos-cloud-infra-controller](https://github.com/labring/sealos) 264 | 265 | - [docker.io/labring/sealos-cloud-infra-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:latest) 266 | - [docker.io/labring/sealos-cloud-infra-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v5.0.0-alpha1) 267 | - [docker.io/labring/sealos-cloud-infra-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.3.0) 268 | - [docker.io/labring/sealos-cloud-infra-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.3.0-rc1) 269 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.3) 270 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.2) 271 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.1) 272 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc6) 273 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc5) 274 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc4) 275 | - [docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v4.2.1-rc3) 276 | - [docker.io/labring/sealos-cloud-infra-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-infra-controller:v1alpha1) 277 | 278 | 279 | ### [sealos-cloud-licenseissuer-controller](https://github.com/labring/sealos) 280 | 281 | - [docker.io/labring/sealos-cloud-licenseissuer-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-licenseissuer-controller:latest) 282 | 283 | 284 | ### [sealos-cloud-metering-controller](https://github.com/labring/sealos) 285 | 286 | - [docker.io/labring/sealos-cloud-metering-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:latest) 287 | - [docker.io/labring/sealos-cloud-metering-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v5.0.0-alpha1) 288 | - [docker.io/labring/sealos-cloud-metering-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.3.0) 289 | - [docker.io/labring/sealos-cloud-metering-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.3.0-rc1) 290 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.3) 291 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.2) 292 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.1) 293 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc6) 294 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc5) 295 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc4) 296 | - [docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v4.2.1-rc3) 297 | - [docker.io/labring/sealos-cloud-metering-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-metering-controller:v1alpha1) 298 | 299 | 300 | ### [sealos-cloud-node-controller](https://github.com/labring/sealos) 301 | 302 | - [docker.io/labring/sealos-cloud-node-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-node-controller:latest) 303 | 304 | 305 | ### [sealos-cloud-resources-controller](https://github.com/labring/sealos) 306 | 307 | - [docker.io/labring/sealos-cloud-resources-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:latest) 308 | - [docker.io/labring/sealos-cloud-resources-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v5.0.0-alpha1) 309 | - [docker.io/labring/sealos-cloud-resources-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v4.3.0) 310 | - [docker.io/labring/sealos-cloud-resources-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v4.3.0-rc1) 311 | - [docker.io/labring/sealos-cloud-resources-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v4.2.3) 312 | - [docker.io/labring/sealos-cloud-resources-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v4.2.2) 313 | - [docker.io/labring/sealos-cloud-resources-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v4.2.1) 314 | - [docker.io/labring/sealos-cloud-resources-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-controller:v1alpha1) 315 | 316 | 317 | ### [sealos-cloud-resources-metering-controller](https://github.com/labring/sealos) 318 | 319 | - [docker.io/labring/sealos-cloud-resources-metering-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:latest) 320 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v5.0.0-alpha1) 321 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v4.3.0) 322 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v4.3.0-rc1) 323 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v4.2.3) 324 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v4.2.2) 325 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v4.2.1) 326 | - [docker.io/labring/sealos-cloud-resources-metering-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-resources-metering-controller:v1alpha1) 327 | 328 | 329 | ### [sealos-cloud-template-frontend](https://github.com/labring/sealos) 330 | 331 | - [docker.io/labring/sealos-cloud-template-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-template-frontend:latest) 332 | 333 | 334 | ### [sealos-cloud-terminal-controller](https://github.com/labring/sealos) 335 | 336 | - [docker.io/labring/sealos-cloud-terminal-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:latest) 337 | - [docker.io/labring/sealos-cloud-terminal-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v5.0.0-alpha1) 338 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.3.0) 339 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.3.0-rc1) 340 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.3) 341 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.2) 342 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.1) 343 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc6) 344 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc5) 345 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc4) 346 | - [docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v4.2.1-rc3) 347 | - [docker.io/labring/sealos-cloud-terminal-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-controller:v1alpha1) 348 | 349 | 350 | ### [sealos-cloud-terminal-frontend](https://github.com/labring/sealos) 351 | 352 | - [docker.io/labring/sealos-cloud-terminal-frontend:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:latest) 353 | - [docker.io/labring/sealos-cloud-terminal-frontend:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v5.0.0-alpha1) 354 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.3.0-rc1) 355 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.3) 356 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.2) 357 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1) 358 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc6) 359 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc5) 360 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc4) 361 | - [docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v4.2.1-rc3) 362 | - [docker.io/labring/sealos-cloud-terminal-frontend:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-terminal-frontend:v1alpha1) 363 | 364 | 365 | ### [sealos-cloud-user-controller](https://github.com/labring/sealos) 366 | 367 | - [docker.io/labring/sealos-cloud-user-controller:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:latest) 368 | - [docker.io/labring/sealos-cloud-user-controller:v5.0.0-alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v5.0.0-alpha1) 369 | - [docker.io/labring/sealos-cloud-user-controller:v4.3.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.3.0) 370 | - [docker.io/labring/sealos-cloud-user-controller:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.3.0-rc1) 371 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.3) 372 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.2) 373 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.1) 374 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc6) 375 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc5) 376 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc4) 377 | - [docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v4.2.1-rc3) 378 | - [docker.io/labring/sealos-cloud-user-controller:v1alpha1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-cloud-user-controller:v1alpha1) 379 | 380 | 381 | ### [sealos-patch](https://github.com/labring/sealos) 382 | 383 | - [docker.io/labring/sealos-patch:latest](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:latest) 384 | - [docker.io/labring/sealos-patch:v4.3.1-rc2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.3.1-rc2) 385 | - [docker.io/labring/sealos-patch:v4.3.1-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.3.1-rc1) 386 | - [docker.io/labring/sealos-patch:v4.3.0-rc1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.3.0-rc1) 387 | - [docker.io/labring/sealos-patch:v4.2.2](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.2.2) 388 | - [docker.io/labring/sealos-patch:v4.2.1](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.2.1) 389 | - [docker.io/labring/sealos-patch:v4.2.0](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.2.0) 390 | - [docker.io/labring/sealos-patch:v4.1.7](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.1.7) 391 | - [docker.io/labring/sealos-patch:v4.1.6](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.1.6) 392 | - [docker.io/labring/sealos-patch:v4.1.5](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.1.5) 393 | - [docker.io/labring/sealos-patch:v4.1.4](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.1.4) 394 | - [docker.io/labring/sealos-patch:v4.1.3](https://explore.ggcr.dev/?image=docker.io/labring/sealos-patch:v4.1.3) 395 | 396 | 397 | --------------------------------------------------------------------------------