Skip to content

Commit c486b7d

Browse files
committed
feat: add more integration logos at the index page
Signed-off-by: peefy <[email protected]>
1 parent 5f30748 commit c486b7d

File tree

21 files changed

+82
-67
lines changed

21 files changed

+82
-67
lines changed

blog/2024-04-17-newsletter/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,10 @@ app: AppConfig {
8383
import { execProgram, ExecProgramArgs } from "kcl-lib";
8484

8585
function main() {
86-
const result = execProgram(new ExecProgramArgs(["__test__/test_data/schema.k"]));
87-
console.log(result.yamlResult); // 'app:\n replicas: 2'
86+
const result = execProgram(
87+
new ExecProgramArgs(["__test__/test_data/schema.k"]),
88+
);
89+
console.log(result.yamlResult); // 'app:\n replicas: 2'
8890
}
8991

9092
main();

blog/2024-04-30-newsletter/index.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ Thanks to to all contributors for their outstanding work over the past twenty da
5050
- KCL Node JS SDK is released to npm.
5151

5252
**<https://www.npmjs.com/search?q=kcl-lib>**
53-
53+
5454
- KCL Java SDK is released to Github Package.
5555

5656
**<https://github.com/orgs/kcl-lang/packages?repo_name=lib>**
5757

5858
**💻 IDE Update**
59-
59+
6060
- KCL VScode supports the highlight of kcl.mod and kcl.mod.lock.
61-
61+
6262
![kclmod](/img/blog/2024-04-30-biweekly-newsletter/kclmod.png)
6363
![kclmodlock](/img/blog/2024-04-30-biweekly-newsletter/kclmodlock.png)
6464

@@ -69,15 +69,15 @@ Thanks to to all contributors for their outstanding work over the past twenty da
6969
- Fixed an issue where the repository specified in the url was invalid when adding dependencies using the oci url.
7070

7171
- Fixed an issue where calling api output logs failed
72-
72+
7373
**📦️ KCL Modules Update**
74-
74+
7575
- Provide `Argo-cd-order` which is a module for ordering argocd sync operations.
7676

7777
- Provide crossplane-provider-gcp-upjet which is spec definition for crossplane-provider-upjet-gcp.
7878

7979
- crossplane is updated to version 1.15.2.
80-
80+
8181
**📘 Doc Update**
8282

8383
- Added SDK related documents.
@@ -100,7 +100,7 @@ Thanks to to all contributors for their outstanding work over the past twenty da
100100

101101
![youtuber](/img/blog/2024-04-30-biweekly-newsletter/youtuber.png)
102102

103-
The video link: **<https://www.youtube.com/watch?v=Gn6btuH3ULw>**
103+
The video link: **<https://www.youtube.com/watch?v=Gn6btuH3ULw>**
104104

105105
## Special Thanks
106106

@@ -110,8 +110,6 @@ The following are listed in no particular order:
110110

111111
- Thanks to @bozaro for the contribution to the KCL Go SDK 🙌
112112
- Thanks to @jheyduk for the contribution to the Kubectl KCL plugin 🙌
113-
114-
-
115113
- Thanks to @shruti2522@metacoma contribution to the KCL 🙌
116114
- Thanks to @metacoma@aleeriz contribution to the KCL modules 🙌
117115
- Thanks to @XiaoK29 contribution to the KCL go SDK 🙌

docs/reference/xlang-api/java-api.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ sidebar_position: 5
66

77
## Installation
88

9-
Refer to [this](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#authenticating-to-github-packages
10-
) to configure your Maven; set up your GitHub account and Token in the `settings.xml`.
9+
Refer to [this](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#authenticating-to-github-packages) to configure your Maven; set up your GitHub account and Token in the `settings.xml`.
1110

1211
### Maven
1312

docs/reference/xlang-api/rest-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ message ExecProgram_Args {
304304
305305
repeated string k_filename_list = 2;
306306
repeated string k_code_list = 3;
307-
307+
308308
repeated CmdArgSpec args = 4;
309309
repeated CmdOverrideSpec overrides = 5;
310310
@@ -414,7 +414,7 @@ message ListVariables_Args {
414414
415415
message ListVariables_Result {
416416
map<string, Variable> variables = 1;
417-
repeated string unsupported_codes = 2;
417+
repeated string unsupported_codes = 2;
418418
}
419419
420420
message Variable {

docs/user_docs/guides/package-management/4-how-to/9-kpm_oci.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ Default registry - [https://github.com/orgs/kcl-lang/packages](https://github.co
1212

1313
There are several hosted container registries with OCI support that you can use to store your KCL module.
1414

15-
+ [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16-
+ [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17-
+ [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18-
+ [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19-
+ [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20-
+ [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21-
+ [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22-
+ [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
15+
- [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16+
- [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17+
- [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18+
- [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19+
- [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20+
- [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21+
- [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22+
- [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
2323

2424
You can adjust the registry and repository name of the OCI registry by the follow methods.
2525

docs/user_docs/support/faq-kcl.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2591,12 +2591,11 @@ kcl vet data.json schema.k
25912591

25922592
We use the += operator to extend the default values in an array.
25932593

2594-
```KCL
2594+
```python
25952595
schema MyApp:
25962596
args: [str] = ["default", "args"]
25972597
25982598
app = MyApp {
25992599
args += ["additional", "args"]
26002600
}
26012601
```
2602-

i18n/zh-CN/docusaurus-plugin-content-blog/2024-04-17-newsletter/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,10 @@ app: AppConfig {
8383
import { execProgram, ExecProgramArgs } from "kcl-lib";
8484

8585
function main() {
86-
const result = execProgram(new ExecProgramArgs(["__test__/test_data/schema.k"]));
87-
console.log(result.yamlResult); // 'app:\n replicas: 2'
86+
const result = execProgram(
87+
new ExecProgramArgs(["__test__/test_data/schema.k"]),
88+
);
89+
console.log(result.yamlResult); // 'app:\n replicas: 2'
8890
}
8991

9092
main();

i18n/zh-CN/docusaurus-plugin-content-blog/2024-04-30-newsletter/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ image: /img/biweekly-newsletter.png
5555
- KCL Node JS SDK 发布至 npm 仓库。
5656

5757
仓库地址:**<https://www.npmjs.com/search?q=kcl-lib>**
58-
58+
5959
- KCL Java SDK 发布至 Github Maven 仓库。
6060

6161
仓库地址:**<https://github.com/orgs/kcl-lang/packages?repo_name=lib>**
6262

6363
**💻 IDE 更新**
64-
64+
6565
- KCL VScode 支持包管理清单文件 kcl.mod 和 kcl.mod.lock 的高亮。
66-
66+
6767
![kclmod](/img/blog/2024-04-30-biweekly-newsletter/kclmod.png)
6868
![kclmodlock](/img/blog/2024-04-30-biweekly-newsletter/kclmodlock.png)
6969

@@ -74,15 +74,15 @@ image: /img/biweekly-newsletter.png
7474
- 修复了使用 oci url 添加依赖时,url 中指定的仓库失效的问题。
7575

7676
- 修复了调用 api 输出日志失效的问题。
77-
77+
7878
**📦️ 三方库更新**
79-
79+
8080
- 新增 Argo-cd-order 用于排序 argocd 同步操作的模块。
8181

8282
- 增加了 crossplane-provider-gcp-upjet 的规范定义 crossplane-provider-upjet-gcp。
8383

8484
- crossplane 三方库更新到 1.15.2.
85-
85+
8686
**📘 文档更新**
8787

8888
- 新增多语言 SDK 相关文档。
@@ -105,7 +105,7 @@ image: /img/biweekly-newsletter.png
105105

106106
![youtuber](/img/blog/2024-04-30-biweekly-newsletter/youtuber.png)
107107

108-
原视频链接:**<https://www.youtube.com/watch?v=Gn6btuH3ULw>**
108+
原视频链接:**<https://www.youtube.com/watch?v=Gn6btuH3ULw>**
109109

110110
## 特别鸣谢
111111

i18n/zh-CN/docusaurus-plugin-content-docs/current/reference/xlang-api/rest-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ message ExecProgram_Args {
226226
227227
repeated string k_filename_list = 2;
228228
repeated string k_code_list = 3;
229-
229+
230230
repeated CmdArgSpec args = 4;
231231
repeated CmdOverrideSpec overrides = 5;
232232
@@ -336,7 +336,7 @@ message ListVariables_Args {
336336
337337
message ListVariables_Result {
338338
map<string, Variable> variables = 1;
339-
repeated string unsupported_codes = 2;
339+
repeated string unsupported_codes = 2;
340340
}
341341
342342
message Variable {

i18n/zh-CN/docusaurus-plugin-content-docs/current/user_docs/guides/package-management/4-how-to/9-kpm_oci.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ KCL 包管理工具默认使用 ghcr.io 保存 KCL 包。
1212

1313
有几个支持 OCI 的托管容器 Registry,您可以将其用于存储 KCL 模块。
1414

15-
+ [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16-
+ [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17-
+ [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18-
+ [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19-
+ [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20-
+ [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21-
+ [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22-
+ [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
15+
- [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16+
- [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17+
- [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18+
- [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19+
- [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20+
- [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21+
- [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22+
- [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
2323

2424
你可以通过以下方法调整 OCI Registry 的地址和仓库名称。
2525

i18n/zh-CN/docusaurus-plugin-content-docs/version-0.8/reference/xlang-api/rest-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ message ExecProgram_Args {
226226
227227
repeated string k_filename_list = 2;
228228
repeated string k_code_list = 3;
229-
229+
230230
repeated CmdArgSpec args = 4;
231231
repeated CmdOverrideSpec overrides = 5;
232232
@@ -336,7 +336,7 @@ message ListVariables_Args {
336336
337337
message ListVariables_Result {
338338
map<string, Variable> variables = 1;
339-
repeated string unsupported_codes = 2;
339+
repeated string unsupported_codes = 2;
340340
}
341341
342342
message Variable {

i18n/zh-CN/docusaurus-plugin-content-docs/version-0.8/user_docs/guides/package-management/4-how-to/9-kpm_oci.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ KCL 包管理工具默认使用 ghcr.io 保存 KCL 包。
1212

1313
有几个支持 OCI 的托管容器 Registry,您可以将其用于存储 KCL 模块。
1414

15-
+ [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16-
+ [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17-
+ [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18-
+ [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19-
+ [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20-
+ [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21-
+ [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22-
+ [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
15+
- [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16+
- [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17+
- [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18+
- [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19+
- [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20+
- [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21+
- [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22+
- [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
2323

2424
你可以通过以下方法调整 OCI Registry 的地址和仓库名称。
2525

src/pages/index.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
}
171171

172172
.integrationLogoWrapper img {
173-
height: 80%;
173+
height: 70%;
174174
}
175175

176176
@media screen and (max-width: 768px) {

src/pages/index.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,22 @@ function IntegrationSection() {
254254
name: "Argo",
255255
img: "/img/logos/argo.png",
256256
},
257+
{
258+
name: "Flux",
259+
img: "/img/logos/flux.png",
260+
},
261+
{
262+
name: "Ansible",
263+
img: "/img/logos/ansible.png",
264+
},
265+
{
266+
name: "KusionStack",
267+
img: "/img/logos/kusionstack.png",
268+
},
269+
{
270+
name: "KubeVela",
271+
img: "/img/logos/kubevela.png",
272+
},
257273
{
258274
name: "CrossPlane",
259275
img: "/img/logos/crossplane.png",

static/img/logos/ansible.png

4.47 KB
Loading

static/img/logos/flux.png

6.68 KB
Loading

static/img/logos/kubevela.png

5.06 KB
Loading

static/img/logos/kusionstack.png

539 KB
Loading

versioned_docs/version-0.8/reference/xlang-api/java-api.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ sidebar_position: 5
66

77
## Installation
88

9-
Refer to [this](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#authenticating-to-github-packages
10-
) to configure your Maven; set up your GitHub account and Token in the `settings.xml`.
9+
Refer to [this](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#authenticating-to-github-packages) to configure your Maven; set up your GitHub account and Token in the `settings.xml`.
1110

1211
### Maven
1312

versioned_docs/version-0.8/reference/xlang-api/rest-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ message ExecProgram_Args {
304304
305305
repeated string k_filename_list = 2;
306306
repeated string k_code_list = 3;
307-
307+
308308
repeated CmdArgSpec args = 4;
309309
repeated CmdOverrideSpec overrides = 5;
310310
@@ -414,7 +414,7 @@ message ListVariables_Args {
414414
415415
message ListVariables_Result {
416416
map<string, Variable> variables = 1;
417-
repeated string unsupported_codes = 2;
417+
repeated string unsupported_codes = 2;
418418
}
419419
420420
message Variable {

versioned_docs/version-0.8/user_docs/guides/package-management/4-how-to/9-kpm_oci.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ Default registry - [https://github.com/orgs/kcl-lang/packages](https://github.co
1212

1313
There are several hosted container registries with OCI support that you can use to store your KCL module.
1414

15-
+ [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16-
+ [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17-
+ [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18-
+ [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19-
+ [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20-
+ [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21-
+ [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22-
+ [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
15+
- [Docker Hub](https://docs.docker.com/docker-hub/oci-artifacts/)
16+
- [Harbor](https://goharbor.io/docs/main/administration/user-defined-oci-artifact/)
17+
- [Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/push-oci-artifact.html)
18+
- [Azure Container Registry](https://learn.microsoft.com/azure/container-registry/container-registry-oci-artifacts)
19+
- [Google Artifact Registry](https://cloud.google.com/artifact-registry/docs/helm/manage-charts)
20+
- [Alibaba Cloud Container Registry](https://help.aliyun.com/acr/)
21+
- [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry)
22+
- [JFrog Artifactory](https://jfrog.com/help/r/jfrog-artifactory-documentation/docker-registry)
2323

2424
You can adjust the registry and repository name of the OCI registry by the follow methods.
2525

0 commit comments

Comments
 (0)