Skip to content

Commit 778ca9e

Browse files
committed
[YUNIKORN-2104] website update for release 1.4
New versioned documents for YuniKorn 1.4.0 release. New release not for 1.4.0 (partially translated in zh-cn) Updated roadmap (en only) Updated pmc and committer list and download page (both en and zh-cn)
1 parent 96faa56 commit 778ca9e

File tree

182 files changed

+24733
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+24733
-63
lines changed

doap_YuniKorn.rdf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@
3434
<programming-language>Go</programming-language>
3535
<programming-language>JavaScript</programming-language>
3636
<category rdf:resource="https://projects.apache.org/category/cloud" />
37+
<release>
38+
<Version>
39+
<name>YuniKorn 1.4.0</name>
40+
<created>2023-11-20</created>
41+
<revision>1.4.0</revision>
42+
</Version>
43+
</release>
3744
<release>
3845
<Version>
3946
<name>YuniKorn 1.3.0</name>

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const versions = require('./versions.json');
1818

1919
module.exports = {
2020
title: 'Apache YuniKorn',
21-
tagline: 'Unleash the power of resource scheduling for running Big Data & ML on Kubernetes!',
21+
tagline: 'Unleash the power of resource scheduling for running Batch, Data & ML on Kubernetes!',
2222
url: 'https://yunikorn.apache.org',
2323
baseUrl: '/',
2424
favicon: 'img/yunikorn.ico',
@@ -61,7 +61,7 @@ module.exports = {
6161
announcementBar: {
6262
id: 'new_release',
6363
content:
64-
'1.3.0 has been released, check the <a href="/community/download">DOWNLOADS</a>.',
64+
'1.4.0 has been released, check the <a href="/community/download">DOWNLOADS</a>.',
6565
backgroundColor: '#fafbfc',
6666
textColor: '#091E42',
6767
},
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
id: cluster
3+
title: 集群
4+
---
5+
6+
<!--
7+
Licensed to the Apache Software Foundation (ASF) under one
8+
or more contributor license agreements. See the NOTICE file
9+
distributed with this work for additional information
10+
regarding copyright ownership. The ASF licenses this file
11+
to you under the Apache License, Version 2.0 (the
12+
"License"); you may not use this file except in compliance
13+
with the License. You may obtain a copy of the License at
14+
15+
http://www.apache.org/licenses/LICENSE-2.0
16+
17+
Unless required by applicable law or agreed to in writing,
18+
software distributed under the License is distributed on an
19+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
KIND, either express or implied. See the License for the
21+
specific language governing permissions and limitations
22+
under the License.
23+
-->
24+
25+
## 集群
26+
27+
回传 Yunikorn 所管理的集群信息,像是资源管理器的构建信息。
28+
29+
**位置(URL)** : `/ws/v1/clusters`
30+
31+
**方法(Method)** : `GET`
32+
33+
**需求权限**:无
34+
35+
### 成功时的响应
36+
37+
**回传代码**`200 OK`
38+
39+
**示例**
40+
41+
在本示例中,响应的内容来自一个群集,拥有一个资源管理器。
42+
43+
```json
44+
[
45+
{
46+
"startTime": 1697100824863892713,
47+
"rmBuildInformation": [
48+
{
49+
"arch": "amd64",
50+
"buildDate": "2023-09-04T18:11:43+0800",
51+
"buildVersion": "latest",
52+
"coreSHA": "0ecf24d2aad2",
53+
"goVersion": "1.21",
54+
"isPluginVersion": "false",
55+
"rmId": "mycluster",
56+
"shimSHA": "8b26c373b4b5",
57+
"siSHA": "e7622cf54e95"
58+
}
59+
],
60+
"partition": "default",
61+
"clusterName": "kubernetes"
62+
}
63+
]
64+
```
65+
66+
### 出错时的响应
67+
68+
**回传代码**`500 Internal Server Error`
69+
70+
**示例**
71+
72+
```json
73+
{
74+
"status_code": 500,
75+
"message": "system error message. for example, json: invalid UTF-8 in string: ..",
76+
"description": "system error message. for example, json: invalid UTF-8 in string: .."
77+
}
78+
```

0 commit comments

Comments
 (0)