forked from docs/doc-exports
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f01f116a5 | |||
| 4304fed907 | |||
| b31d0d5dd6 | |||
| a9f303e99a | |||
| d8e1c23e3b | |||
| f8f1b77f86 | |||
| d0d66eeb73 | |||
| 14cbe51752 | |||
| fcbcabfb7d | |||
| 23019c5a63 | |||
| 406cbf6c6f | |||
| 7655950d89 | |||
| 52a58dcf06 |
@ -1,81 +0,0 @@
|
||||
# .gitea/workflows/class-txt-check.yml
|
||||
name: Docs Precheck - CLASS.TXT.json Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize, edited]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
class-txt-check:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
- name: Get changed CLASS.TXT.json files
|
||||
id: changed-files
|
||||
run: |
|
||||
BASE_SHA="${{ gitea.event.pull_request.base.sha }}"
|
||||
changed=$(git diff --name-only ${BASE_SHA}...HEAD | grep -E 'CLASS\.TXT\.json$' | tr '\n' ' ' || true)
|
||||
echo "files=$changed" >> $GITHUB_OUTPUT
|
||||
echo "CHANGED_FILES=$changed" >> $GITHUB_ENV
|
||||
echo "Changed CLASS.TXT.json files: $changed"
|
||||
|
||||
- name: Run duplicate title check
|
||||
id: class-check
|
||||
run: |
|
||||
python3 .gitea/workflows/helpers/class-txt-check.py
|
||||
|
||||
- name: Comment on PR with violations
|
||||
if: failure() && steps.class-check.outcome == 'failure'
|
||||
env:
|
||||
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
||||
REPO: ${{ gitea.repository }}
|
||||
PR_NUMBER: ${{ gitea.event.pull_request.number }}
|
||||
TOKEN: ${{ gitea.token }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
# Ensure URL starts with http
|
||||
if [[ ! "${GITEA_SERVER_URL}" =~ ^https?:// ]]; then
|
||||
GITEA_SERVER_URL="http://${GITEA_SERVER_URL}"
|
||||
echo "Added http:// prefix to URL"
|
||||
fi
|
||||
|
||||
# Generate comment message
|
||||
MSG=$(python3 .gitea/workflows/helpers/class-comment.py)
|
||||
echo "$MSG"
|
||||
|
||||
# Extract body from JSON
|
||||
BODY=$(echo "$MSG" | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
|
||||
|
||||
# Build the full URL
|
||||
FULL_URL="${GITEA_SERVER_URL}/api/v1/repos/${REPO}/issues/${PR_NUMBER}/comments"
|
||||
echo "Posting comment to: ${FULL_URL}"
|
||||
|
||||
# Comment on PR
|
||||
curl -sS -X POST \
|
||||
-H "Authorization: token ${TOKEN}" \
|
||||
-H "Content-Type: application/json" \
|
||||
"${FULL_URL}" \
|
||||
-d "$(echo "$BODY" | python3 -c "import sys, json; print(json.dumps({'body': sys.stdin.read()}))")"
|
||||
|
||||
- name: Final status
|
||||
if: always()
|
||||
run: |
|
||||
if [ -f violations.json ]; then
|
||||
echo "::error::CLASS.TXT.json check failed. See previous step for details."
|
||||
exit 1
|
||||
fi
|
||||
@ -1,84 +0,0 @@
|
||||
# .gitea/workflows/docs-precheck.yml
|
||||
name: Docs Precheck - Underscore Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize, edited]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
docs-precheck:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install beautifulsoup4 lxml
|
||||
|
||||
- name: Get changed HTML files
|
||||
id: changed-files
|
||||
run: |
|
||||
BASE_SHA="${{ gitea.event.pull_request.base.sha }}"
|
||||
changed=$(git diff --name-only ${BASE_SHA}...HEAD | grep -E '\.(html|htm)$' | tr '\n' ' ' || true)
|
||||
echo "files=$changed" >> $GITHUB_OUTPUT
|
||||
echo "CHANGED_FILES=$changed" >> $GITHUB_ENV
|
||||
echo "Changed HTML files: $changed"
|
||||
|
||||
- name: Run underscore check
|
||||
id: underscore-check
|
||||
run: |
|
||||
python3 .gitea/workflows/helpers/underscore-check.py
|
||||
|
||||
- name: Comment on PR with violations
|
||||
if: failure() && steps.underscore-check.outcome == 'failure'
|
||||
env:
|
||||
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
||||
REPO: ${{ gitea.repository }}
|
||||
PR_NUMBER: ${{ gitea.event.pull_request.number }}
|
||||
TOKEN: ${{ gitea.token }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
# Ensure URL starts with http
|
||||
if [[ ! "${GITEA_SERVER_URL}" =~ ^https?:// ]]; then
|
||||
GITEA_SERVER_URL="http://${GITEA_SERVER_URL}"
|
||||
echo "Added http:// prefix to URL"
|
||||
fi
|
||||
|
||||
# Generate comment message
|
||||
MSG=$(python3 .gitea/workflows/helpers/underscore-comment.py)
|
||||
echo "$MSG"
|
||||
|
||||
# Extract body from JSON
|
||||
BODY=$(echo "$MSG" | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
|
||||
|
||||
# Build the full URL
|
||||
FULL_URL="${GITEA_SERVER_URL}/api/v1/repos/${REPO}/issues/${PR_NUMBER}/comments"
|
||||
echo "Posting comment to: ${FULL_URL}"
|
||||
|
||||
# Comment on PR
|
||||
curl -sS -X POST \
|
||||
-H "Authorization: token ${TOKEN}" \
|
||||
-H "Content-Type: application/json" \
|
||||
"${FULL_URL}" \
|
||||
-d "$(echo "$BODY" | python3 -c "import sys, json; print(json.dumps({'body': sys.stdin.read()}))")"
|
||||
|
||||
- name: Final status
|
||||
if: always()
|
||||
run: |
|
||||
if [ -f violations.json ]; then
|
||||
echo "::error::Underscore check failed. See previous step for details."
|
||||
exit 1
|
||||
fi
|
||||
@ -1,71 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Generate PR comment for CLASS.TXT.json duplicate title violations.
|
||||
|
||||
This script reads violations.json (created by class-txt-check.py) and generates
|
||||
a formatted markdown comment to be posted on the PR. The comment includes:
|
||||
- File path where violations were found
|
||||
- Parent document title and code
|
||||
- The duplicate title
|
||||
- Document codes that share the duplicate title
|
||||
|
||||
Usage:
|
||||
Run after class-txt-check.py fails. Reads violations.json and outputs JSON
|
||||
with 'body' field containing the markdown comment text.
|
||||
"""
|
||||
|
||||
import json
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
try:
|
||||
with open("violations.json", "r") as f:
|
||||
violations = json.load(f)
|
||||
except Exception:
|
||||
violations = []
|
||||
|
||||
if not violations:
|
||||
print(json.dumps({"body": "No violations to report"}))
|
||||
sys.exit(0)
|
||||
|
||||
# Group violations by file
|
||||
by_file = {}
|
||||
for v in violations:
|
||||
key = v["file"]
|
||||
if key not in by_file:
|
||||
by_file[key] = []
|
||||
by_file[key].append(v)
|
||||
|
||||
# Build message
|
||||
lines = [
|
||||
"❌ **Duplicate title detected in CLASS.TXT.json**",
|
||||
"",
|
||||
"Found child documents with duplicate titles under the same parent:",
|
||||
"",
|
||||
]
|
||||
|
||||
for filepath, file_violations in by_file.items():
|
||||
lines.append(f"**{filepath}:**")
|
||||
for v in file_violations:
|
||||
parent_code = v["parent_code"]
|
||||
parent_title = v["parent_title"]
|
||||
duplicate_title = v["duplicate_title"]
|
||||
codes = v["codes"]
|
||||
|
||||
lines.append(f" - Parent: `{parent_title}` (code: `{parent_code}`)")
|
||||
lines.append(f" Duplicate title: `{duplicate_title}`")
|
||||
for code in codes:
|
||||
lines.append(f" - Document code: `{code}`")
|
||||
lines.append("")
|
||||
|
||||
lines.append(
|
||||
"**Please ensure all child documents under the same parent have unique titles.**"
|
||||
)
|
||||
|
||||
message = "\n".join(lines)
|
||||
print(json.dumps({"body": message}))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,63 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Generate PR comment for metadata registration check violations.
|
||||
|
||||
This script reads violations.json (created by metadata-check.py) and generates
|
||||
a formatted markdown comment to be posted on the PR. The comment includes:
|
||||
- HTML file path that was added but not registered
|
||||
- Which metadata files it's missing from (CLASS.TXT.json, ALL_META.TXT.json)
|
||||
- Whether the metadata files don't exist or the file is simply missing from them
|
||||
|
||||
Usage:
|
||||
Run after metadata-check.py fails. Reads violations.json and outputs JSON
|
||||
with 'body' field containing the markdown comment text.
|
||||
"""
|
||||
|
||||
import json
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
try:
|
||||
with open("violations.json", "r") as f:
|
||||
violations = json.load(f)
|
||||
except Exception:
|
||||
violations = []
|
||||
|
||||
if not violations:
|
||||
print(json.dumps({"body": "No violations to report"}))
|
||||
sys.exit(0)
|
||||
|
||||
# Build message
|
||||
lines = [
|
||||
"❌ **HTML file not registered in metadata**",
|
||||
"",
|
||||
"The following HTML files were added but are not properly registered in the metadata files:",
|
||||
"",
|
||||
]
|
||||
|
||||
for v in violations:
|
||||
html_file = v["file"]
|
||||
missing_from = v["missing_from"]
|
||||
|
||||
lines.append(f"**{html_file}**")
|
||||
for missing in missing_from:
|
||||
# Check if it's a "file not found" case
|
||||
if "(file not found)" in missing:
|
||||
lines.append(
|
||||
f" ❌ Missing from: `{missing.split(' (')[0]}` (metadata file does not exist)"
|
||||
)
|
||||
else:
|
||||
lines.append(f" ❌ Missing from: `{missing}`")
|
||||
lines.append("")
|
||||
|
||||
lines.append(
|
||||
"**Please add the new HTML files to both `CLASS.TXT.json` and `ALL_META.TXT.json` in the same directory.**"
|
||||
)
|
||||
|
||||
message = "\n".join(lines)
|
||||
print(json.dumps({"body": message}))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,68 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Generate PR comment for underscore check violations.
|
||||
|
||||
This script reads violations.json (created by underscore-check.py) and generates
|
||||
a formatted markdown comment to be posted on the PR. The comment includes:
|
||||
- File path where violations were found
|
||||
- Line number of each violation
|
||||
- The offending word (ending with underscore)
|
||||
- Context showing where the violation appears in the HTML
|
||||
|
||||
Usage:
|
||||
Run after underscore-check.py fails. Reads violations.json and outputs JSON
|
||||
with 'body' field containing the markdown comment text.
|
||||
"""
|
||||
|
||||
import json
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
try:
|
||||
with open("violations.json", "r") as f:
|
||||
violations = json.load(f)
|
||||
except Exception:
|
||||
violations = []
|
||||
|
||||
if not violations:
|
||||
print(json.dumps({"body": "No violations to report"}))
|
||||
sys.exit(0)
|
||||
|
||||
# Group violations by file
|
||||
by_file = {}
|
||||
for v in violations:
|
||||
key = v["file"]
|
||||
if key not in by_file:
|
||||
by_file[key] = []
|
||||
by_file[key].append(v)
|
||||
|
||||
# Build message
|
||||
lines = [
|
||||
"❌ **Underscore check failed**",
|
||||
"",
|
||||
"Found words ending with underscore (not followed by alphanumeric characters):",
|
||||
"",
|
||||
]
|
||||
|
||||
for filepath, file_violations in by_file.items():
|
||||
lines.append(f"**{filepath}:**")
|
||||
for v in file_violations:
|
||||
word = v["word"]
|
||||
line_num = v["line"]
|
||||
context = v["context"]
|
||||
# Escape markdown special chars in context
|
||||
context = context.replace("`", "\\`")
|
||||
lines.append(f" - Line {line_num}: `{word}` in context: `{context}`")
|
||||
lines.append("")
|
||||
|
||||
lines.append(
|
||||
"**Please fix these issues as soon as possible.** Words should not end with an underscore unless followed by alphanumeric characters (A-Za-z0-9)."
|
||||
)
|
||||
|
||||
message = "\n".join(lines)
|
||||
print(json.dumps({"body": message}))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@ -1,81 +0,0 @@
|
||||
# .gitea/workflows/metadata-check.yml
|
||||
name: Docs Precheck - Metadata Registration Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize, edited]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
metadata-check:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
- name: Get added HTML files
|
||||
id: added-files
|
||||
run: |
|
||||
BASE_SHA="${{ gitea.event.pull_request.base.sha }}"
|
||||
added=$(git diff --name-status ${BASE_SHA}...HEAD | grep "^A" | awk '{print $2}' | grep -E '\.html$' | tr '\n' ' ' || true)
|
||||
echo "files=$added" >> $GITHUB_OUTPUT
|
||||
echo "ADDED_FILES=$added" >> $GITHUB_ENV
|
||||
echo "Added HTML files: $added"
|
||||
|
||||
- name: Run metadata registration check
|
||||
id: metadata-check
|
||||
run: |
|
||||
python3 .gitea/workflows/helpers/metadata-check.py
|
||||
|
||||
- name: Comment on PR with violations
|
||||
if: failure() && steps.metadata-check.outcome == 'failure'
|
||||
env:
|
||||
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
||||
REPO: ${{ gitea.repository }}
|
||||
PR_NUMBER: ${{ gitea.event.pull_request.number }}
|
||||
TOKEN: ${{ gitea.token }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
# Ensure URL starts with http
|
||||
if [[ ! "${GITEA_SERVER_URL}" =~ ^https?:// ]]; then
|
||||
GITEA_SERVER_URL="http://${GITEA_SERVER_URL}"
|
||||
echo "Added http:// prefix to URL"
|
||||
fi
|
||||
|
||||
# Generate comment message
|
||||
MSG=$(python3 .gitea/workflows/helpers/metadata-comment.py)
|
||||
echo "$MSG"
|
||||
|
||||
# Extract body from JSON
|
||||
BODY=$(echo "$MSG" | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
|
||||
|
||||
# Build the full URL
|
||||
FULL_URL="${GITEA_SERVER_URL}/api/v1/repos/${REPO}/issues/${PR_NUMBER}/comments"
|
||||
echo "Posting comment to: ${FULL_URL}"
|
||||
|
||||
# Comment on PR
|
||||
curl -sS -X POST \
|
||||
-H "Authorization: token ${TOKEN}" \
|
||||
-H "Content-Type: application/json" \
|
||||
"${FULL_URL}" \
|
||||
-d "$(echo "$BODY" | python3 -c "import sys, json; print(json.dumps({'body': sys.stdin.read()}))")"
|
||||
|
||||
- name: Final status
|
||||
if: always()
|
||||
run: |
|
||||
if [ -f violations.json ]; then
|
||||
echo "::error::Metadata registration check failed. See previous step for details."
|
||||
exit 1
|
||||
fi
|
||||
@ -515,7 +515,7 @@
|
||||
{
|
||||
"desc":"Meaning: Request throttling policy.Scope of effect: Operation Object (2.0)/Operation Object (3.0)Example:",
|
||||
"product_code":"apig",
|
||||
"title":"x-apigateway-ratelimits",
|
||||
"title":"x-apigateway-ratelimit",
|
||||
"uri":"apig_03_0098.html",
|
||||
"doc_type":"usermanual",
|
||||
"p_code":"43",
|
||||
|
||||
@ -1,20 +0,0 @@
|
||||
<a name="apig_02_0001"></a><a name="apig_02_0001"></a>
|
||||
|
||||
<h1 class="topictitle1">Process Flow</h1>
|
||||
<div id="body8662426"><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p8060118">The following figure shows the process of exposing an API.</p>
|
||||
<p id="apig_02_0001__en-us_topic_0000001128377382_p18543548134311"><span><img id="apig_02_0001__en-us_topic_0000001128377382_image14730133294617" src="en-us_image_0000001829896089.png"></span></p>
|
||||
<ol id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_ol134712352910"><li id="apig_02_0001__en-us_topic_0000001128377382_li035223651911">Creating a Gateway<p id="apig_02_0001__en-us_topic_0000001128377382_p08351451237"><a name="apig_02_0001__en-us_topic_0000001128377382_li035223651911"></a><a name="en-us_topic_0000001128377382_li035223651911"></a><a href="apig_03_0037.html">Create a dedicated gateway.</a></p>
|
||||
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li1934718315294"><a href="apig-ug-180307003.html">Creating an API Group</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p52731551293">An API group facilitates management of APIs used for the same service. Create an API group and then create APIs.</p>
|
||||
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li1239042116208"><a href="apig-ug-190419107.html">Binding a Domain Name</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p1939022115203">Before making the API available for users to access, bind an independent domain name (custom domain name) to the group to which the API belongs. Then API callers can use these domain names to call the API.</p>
|
||||
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li034715392911"><a href="apig_0080101678.html">Creating an API</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p1396201052917">When creating an API, configure the frontend and backend request paths, parameters, and protocols.</p>
|
||||
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li1447643191811"><a href="apig-ug-190419108.html">Debugging an API</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p18728145518188">Debug the API to check whether it works normally.</p>
|
||||
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li23471332910"><a href="apig-ug-180307004.html">(Optional) Creating an Environment</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p10254142615218">An API can be called in different scenarios, such as the production environment (RELEASE) or other custom environments. RELEASE is the default environment defined in APIG.</p>
|
||||
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li134733102913"><a href="apig-ug-180307005.html">Publishing an API</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p780511012155">Publish the API so that it can be called.</p>
|
||||
</li></ol>
|
||||
</div>
|
||||
<div>
|
||||
<div class="familylinks">
|
||||
<div class="parentlink"><strong>Parent topic:</strong> <a href="apig-ug-180307001.html">Opening APIs</a></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -41,7 +41,7 @@
|
||||
</table>
|
||||
</div>
|
||||
</p></li><li id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_li369614061512"><span>Click <strong id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_b1151018810305">OK</strong>.</span><p><p id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_p643617378212">If the domain name is no longer needed, click <strong id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_b791211518302">Unbind Domain Name</strong> to unbind it from the API group.</p>
|
||||
</p></li><li id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_li93451675213"><span>(Optional) If the API group contains HTTPS APIs, bind an SSL certificate to the independent domain name test_.</span><p><ol type="a" id="apig_03_0006__en-us_topic_0000001221574215_ol1799111542324"><li id="apig_03_0006__en-us_topic_0000001221574215_li13991165415321">In the row that contains the domain name, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b854515393379">Select SSL Certificate</strong>.</li></ol><ol type="a" start="2" id="apig_03_0006__en-us_topic_0000001221574215_ol2992145419328"><li id="apig_03_0006__en-us_topic_0000001221574215_li2992135493218">Select an SSL certificate and click <strong id="apig_03_0006__en-us_topic_0000001221574215_b13711142203720">OK</strong>.<ul id="apig_03_0006__en-us_topic_0000001221574215_ul867615616168"><li id="apig_03_0006__en-us_topic_0000001221574215_li20676175641611">If a CA certificate has been uploaded for the SSL certificate, you can enable client authentication (HTTPS two-way authentication). <strong id="apig_03_0006__en-us_topic_0000001221574215_b28742914013">Enabling or disabling client authentication will affect the existing services. Exercise caution when performing this operation.</strong></li><li id="apig_03_0006__en-us_topic_0000001221574215_li14676105617167">If no SSL certificate is available, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b11101651114714">Create SSL Certificate</strong> to create one. For details, see <a href="apig_03_0055.html#apig_03_0055">SSL Certificates</a>.</li></ul>
|
||||
</p></li><li id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_li93451675213"><span>(Optional) If the API group contains HTTPS APIs, bind an SSL certificate to the independent domain name.</span><p><ol type="a" id="apig_03_0006__en-us_topic_0000001221574215_ol1799111542324"><li id="apig_03_0006__en-us_topic_0000001221574215_li13991165415321">In the row that contains the domain name, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b854515393379">Select SSL Certificate</strong>.</li></ol><ol type="a" start="2" id="apig_03_0006__en-us_topic_0000001221574215_ol2992145419328"><li id="apig_03_0006__en-us_topic_0000001221574215_li2992135493218">Select an SSL certificate and click <strong id="apig_03_0006__en-us_topic_0000001221574215_b13711142203720">OK</strong>.<ul id="apig_03_0006__en-us_topic_0000001221574215_ul867615616168"><li id="apig_03_0006__en-us_topic_0000001221574215_li20676175641611">If a CA certificate has been uploaded for the SSL certificate, you can enable client authentication (HTTPS two-way authentication). <strong id="apig_03_0006__en-us_topic_0000001221574215_b28742914013">Enabling or disabling client authentication will affect the existing services. Exercise caution when performing this operation.</strong></li><li id="apig_03_0006__en-us_topic_0000001221574215_li14676105617167">If no SSL certificate is available, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b11101651114714">Create SSL Certificate</strong> to create one. For details, see <a href="apig_03_0055.html#apig_03_0055">SSL Certificates</a>.</li></ul>
|
||||
</li></ol>
|
||||
</p></li></ol>
|
||||
</div>
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
</li>
|
||||
<li class="ulchildlink"><strong><a href="apig_03_0055.html">SSL Certificates</a></strong><br>
|
||||
</li>
|
||||
<li class="ulchildlink test_policy test_"><strong><a href="apig_03_0040.html">Load Balance Channels</a></strong><br>
|
||||
<li class="ulchildlink"><strong><a href="apig_03_0040.html">Load Balance Channels</a></strong><br>
|
||||
</li>
|
||||
<li class="ulchildlink"><strong><a href="apig_03_0041.html">Managing Environments</a></strong><br>
|
||||
</li>
|
||||
|
||||
@ -47,7 +47,7 @@
|
||||
</li></ul>
|
||||
</p></li><li id="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_li19109142924410"><span>Click <strong id="apig_03_0019__en-us_topic_0000001221774151_b1275410503448">OK</strong>.</span><p><ul id="apig_03_0019__en-us_topic_0000001221774151_ul18334414115613"><li id="apig_03_0019__en-us_topic_0000001221774151_li133351014125618">To clone this policy, click <strong id="apig_03_0019__en-us_topic_0000001221774151_b995111582546">Clone</strong> in the <strong id="apig_03_0019__en-us_topic_0000001221774151_b204471192551">Operation</strong> column.<div class="note" id="apig_03_0019__en-us_topic_0000001221774151_note165441445125319"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="apig_03_0019__en-us_topic_0000001221774151_ul133541495612"><li id="apig_03_0019__en-us_topic_0000001221774151_li2335181412567">The name of a cloned policy cannot be the same as that of any existing policy.</li><li id="apig_03_0019__en-us_topic_0000001221774151_li1533581455617"><strong id="apig_03_0019__en-us_topic_0000001221774151_b033415153572">Request throttling</strong> and <strong id="apig_03_0019__en-us_topic_0000001221774151_b391031715576">signature key</strong> policies cannot be cloned.</li></ul>
|
||||
</div></div>
|
||||
</li><li id="apig_03_0019__en-us_topic_0000001221774151_li933561485617">After the policy is created, perform the operations described in test_policy <a href="#apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713">Binding the Policy to APIs</a> for the policy to take effect for the API.</li></ul>
|
||||
</li><li id="apig_03_0019__en-us_topic_0000001221774151_li933561485617">After the policy is created, perform the operations described in <a href="#apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713">Binding the Policy to APIs</a> for the policy to take effect for the API.</li></ul>
|
||||
</p></li></ol>
|
||||
</div>
|
||||
<div class="section" id="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713"><a name="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713"></a><a name="en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713"></a><h4 class="sectiontitle">Binding the Policy to APIs</h4><ol id="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_ol1356962619589"><li id="apig_03_0019__en-us_topic_0000001221774151_li53566433142"><span>Click a policy name to go to the policy details page.</span></li><li id="apig_03_0019__en-us_topic_0000001221774151_li1350414233155"><span>In the <strong id="apig_03_0019__en-us_topic_0000001221774151_b253612484616">APIs</strong> area, select an environment and click <strong id="apig_03_0019__en-us_topic_0000001221774151_b17559174011464">Select APIs</strong>.</span></li><li id="apig_03_0019__en-us_topic_0000001221774151_li1218216522159"><span>Select the API group, environment, and required APIs.</span></li><li id="apig_03_0019__en-us_topic_0000001221774151_li131891433203"><span>Click <strong id="apig_03_0019__en-us_topic_0000001221774151_b914315914475">OK</strong>.</span><p><ul id="apig_03_0019__en-us_topic_0000001221774151_ul514320193525"><li id="apig_03_0019__en-us_topic_0000001221774151_li16143111911526">If an API no longer needs this policy, click <strong id="apig_03_0019__en-us_topic_0000001221774151_b4321503488">Unbind</strong> in the row that contains the API.</li><li id="apig_03_0019__en-us_topic_0000001221774151_li191431319145211">If there are multiple APIs that no longer need this policy, select these APIs, and click <strong id="apig_03_0019__en-us_topic_0000001221774151_b11659101474819">Unbind</strong> above the API list. You can unbind a policy from a maximum of 1000 APIs at a time.</li></ul>
|
||||
|
||||
@ -1867,7 +1867,7 @@
|
||||
"product_code":"cce",
|
||||
"code":"104",
|
||||
"des":"This section describes how to allocate data disk space to nodes so that you can configure the data disk space accordingly.In clusters of a version earlier than v1.23.18-r",
|
||||
"doc_type":"usermanual",
|
||||
"doc_type":"api2",
|
||||
"kw":"Data Disk Space Allocation,Container engine and container image space,container engine and container",
|
||||
"search_title":"",
|
||||
"metedata":[
|
||||
|
||||
@ -758,7 +758,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.18.2.5.1.3 "><p id="AddNode__p733314713157"><a href="#AddNode__en-us_topic_0000001417516392_request_Runtime">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.18.2.5.1.4 "><p id="AddNode__p12333972157">Container runtime. Defaults to <strong id="AddNode__b2033317741515">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.18.2.5.1.4 "><p id="AddNode__p12333972157">Container runtime.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -781,9 +781,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.19.2.5.1.3 "><p id="AddNode__p133347701515">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.19.2.5.1.4 "><p id="AddNode__p333419721513">Container runtime. Defaults to <strong id="AddNode__b14334107171520">docker</strong>.</p>
|
||||
<p id="AddNode__p106556623011">Enumeration values:</p>
|
||||
<ul id="AddNode__ul265516617301"><li id="AddNode__li3655116133020">docker</li><li id="AddNode__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.19.2.5.1.4 "><p id="AddNode__p333419721513">Container runtime.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -756,7 +756,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.18.2.5.1.3 "><p id="ResetNode__p12586105213518"><a href="#ResetNode__en-us_topic_0000001467713153_request_Runtime">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.18.2.5.1.4 "><p id="ResetNode__p10586115210516">Container runtime. Defaults to <strong id="ResetNode__b185862521658">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.18.2.5.1.4 "><p id="ResetNode__p10586115210516">Container runtime.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -779,9 +779,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.19.2.5.1.3 "><p id="ResetNode__p20586135211518">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.19.2.5.1.4 "><p id="ResetNode__p1858618523512">Container runtime. Defaults to <strong id="ResetNode__b12586152854">docker</strong>.</p>
|
||||
<p id="ResetNode__p106556623011">Enumeration values:</p>
|
||||
<ul id="ResetNode__ul265516617301"><li id="ResetNode__li3655116133020">docker</li><li id="ResetNode__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="40%" headers="mcps1.3.3.19.2.5.1.4 "><p id="ResetNode__p1858618523512">Container runtime.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -1656,12 +1656,12 @@
|
||||
"name" : "support-overload",
|
||||
"value" : true
|
||||
} ]
|
||||
<span id="cce_02_0236__ph67632339285"> },{ </span>
|
||||
<span id="cce_02_0236__ph2076353310282"> "name": "eni",</span>
|
||||
<span id="cce_02_0236__ph776303319283"> "configurations": [ {</span>
|
||||
<span id="cce_02_0236__ph1076313337282"><strong id="cce_02_0236__b58001246466"> "name": "dataplane-v2", </strong></span>
|
||||
<span id="cce_02_0236__ph10763113316289"><strong id="cce_02_0236__b2800152414462"> "value": true</strong></span>
|
||||
<span id="cce_02_0236__ph1176333332818"> } ]</span>
|
||||
<span id="cce_02_0236__ph1693022384318"> },{ </span>
|
||||
<span id="cce_02_0236__ph119301023164319"> "name": "eni",</span>
|
||||
<span id="cce_02_0236__ph1593082311433"> "configurations": [ {</span>
|
||||
<span id="cce_02_0236__ph1593015238433"><strong id="cce_02_0236__b58001246466"> "name": "dataplane-v2", </strong></span>
|
||||
<span id="cce_02_0236__ph7930223144310"><strong id="cce_02_0236__b2800152414462"> "value": true</strong></span>
|
||||
<span id="cce_02_0236__ph893052314438"> } ]</span>
|
||||
} ],
|
||||
"hostNetwork" : {
|
||||
"vpc" : "0538a5d0-9a65-4c1d-a8bf-e9acee237980",
|
||||
|
||||
@ -417,7 +417,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="15.040000000000001%" headers="mcps1.3.3.7.2.5.1.3 "><p id="cce_02_0242__p15238243164815"><a href="#cce_02_0242__table163721555105015">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="49.02%" headers="mcps1.3.3.7.2.5.1.4 "><p id="cce_02_0242__p62213390326">Container runtime. The default value is <strong id="cce_02_0242__b17221153917321">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="49.02%" headers="mcps1.3.3.7.2.5.1.4 "><p id="cce_02_0242__p62213390326">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -872,9 +872,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.07%" headers="mcps1.3.3.18.2.5.1.3 "><p id="cce_02_0242__p133731552509">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.3.18.2.5.1.4 "><p id="cce_02_0242__p1065576103017">Container runtime. The default value is <strong id="cce_02_0242__b4655116103020">docker</strong>.</p>
|
||||
<p id="cce_02_0242__p106556623011">Enumeration values:</p>
|
||||
<ul id="cce_02_0242__ul265516617301"><li id="cce_02_0242__li3655116133020">docker</li><li id="cce_02_0242__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.3.18.2.5.1.4 "><p id="cce_02_0242__p1065576103017">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -1628,7 +1626,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20.95%" headers="mcps1.3.4.6.2.4.1.2 "><p id="cce_02_0242__p1043118445316"><a href="#cce_02_0242__table483064395515">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="56.03%" headers="mcps1.3.4.6.2.4.1.3 "><p id="cce_02_0242__p222092916320">Container runtime. The default value is <strong id="cce_02_0242__b8220192943214">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="56.03%" headers="mcps1.3.4.6.2.4.1.3 "><p id="cce_02_0242__p222092916320">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -1869,9 +1867,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.981998199819984%" headers="mcps1.3.4.11.2.4.1.2 "><p id="cce_02_0242__p683112437552">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="56.76567656765676%" headers="mcps1.3.4.11.2.4.1.3 "><p id="cce_02_0242__p6238339332">Container runtime. The default value is <strong id="cce_02_0242__b1823433103317">docker</strong>.</p>
|
||||
<p id="cce_02_0242__p8231933103314">Enumeration values:</p>
|
||||
<ul id="cce_02_0242__ul9231533153313"><li id="cce_02_0242__li4236336336">docker</li><li id="cce_02_0242__li1123113383310">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="56.76567656765676%" headers="mcps1.3.4.11.2.4.1.3 "><p id="cce_02_0242__p6238339332">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -362,7 +362,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20.95%" headers="mcps1.3.4.7.2.4.1.2 "><p id="cce_02_0243__p15238243164815"><a href="#cce_02_0243__table483064395515">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="56.03%" headers="mcps1.3.4.7.2.4.1.3 "><p id="cce_02_0243__p1571644203216">Container runtime. The default value is <strong id="cce_02_0243__b115712443322">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="56.03%" headers="mcps1.3.4.7.2.4.1.3 "><p id="cce_02_0243__p1571644203216">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_02_0243__row89546317484"><td class="cellrowborder" valign="top" width="23.02%" headers="mcps1.3.4.7.2.4.1.1 "><p id="cce_02_0243__p9814194502">extendParam</p>
|
||||
@ -447,9 +447,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.981998199819984%" headers="mcps1.3.4.10.2.4.1.2 "><p id="cce_02_0243__p683112437552">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="56.76567656765676%" headers="mcps1.3.4.10.2.4.1.3 "><p id="cce_02_0243__p1878419311271">Container runtime. The default value is <strong id="cce_02_0243__b161045853112">docker</strong>.</p>
|
||||
<p id="cce_02_0243__p1756711014115">Enumeration values:</p>
|
||||
<ul id="cce_02_0243__ul18567509120"><li id="cce_02_0243__li1356717015119">docker</li><li id="cce_02_0243__li1556710612">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="56.76567656765676%" headers="mcps1.3.4.10.2.4.1.3 "><p id="cce_02_0243__p1878419311271">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -467,7 +467,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.4.7.2.4.1.2 "><p id="cce_02_0269__p1864918416511"><a href="#cce_02_0269__table163721555105015">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="60%" headers="mcps1.3.4.7.2.4.1.3 "><p id="cce_02_0269__p62213390326">Container runtime. The default value is <strong id="cce_02_0269__b17221153917321">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="60%" headers="mcps1.3.4.7.2.4.1.3 "><p id="cce_02_0269__p62213390326">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -927,9 +927,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.07%" headers="mcps1.3.4.21.2.5.1.3 "><p id="cce_02_0269__p133731552509">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.4.21.2.5.1.4 "><p id="cce_02_0269__p1065576103017">Container runtime. The default value is <strong id="cce_02_0269__b4655116103020">docker</strong>.</p>
|
||||
<p id="cce_02_0269__p106556623011">Enumeration values:</p>
|
||||
<ul id="cce_02_0269__ul265516617301"><li id="cce_02_0269__li3655116133020">docker</li><li id="cce_02_0269__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.4.21.2.5.1.4 "><p id="cce_02_0269__p1065576103017">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -8,9 +8,15 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_02_0273__row19701173581314"><td class="cellrowborder" valign="top" width="17.98%" headers="mcps1.3.1.2.3.1.1 "><p id="cce_02_0273__p12197345161310">2026-03-25</p>
|
||||
<tbody><tr id="cce_02_0273__row12501031153611"><td class="cellrowborder" valign="top" width="17.98%" headers="mcps1.3.1.2.3.1.1 "><p id="cce_02_0273__p1425193163610">2026-04-03</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="82.02000000000001%" headers="mcps1.3.1.2.3.1.2 "><p id="cce_02_0273__p16701133501314"><span id="cce_02_0273__ph844125216138">Update:</span></p>
|
||||
<td class="cellrowborder" valign="top" width="82.02000000000001%" headers="mcps1.3.1.2.3.1.2 "><p id="cce_02_0273__p8637315113716">Update:</p>
|
||||
<ul id="cce_02_0273__ul14291019183715"><li id="cce_02_0273__li6291719183710">updated the default container runtime to containerd.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_02_0273__row19701173581314"><td class="cellrowborder" valign="top" width="17.98%" headers="mcps1.3.1.2.3.1.1 "><p id="cce_02_0273__p12197345161310">2026-03-25</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="82.02000000000001%" headers="mcps1.3.1.2.3.1.2 "><p id="cce_02_0273__p16701133501314">Update:</p>
|
||||
<ul id="cce_02_0273__ul457513123141"><li id="cce_02_0273__li10575012171419">Updated <a href="cce_02_0236.html#cce_02_0236__table1873418287490">Creating a Cluster</a>.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -407,7 +407,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="15.06%" headers="mcps1.3.3.8.2.5.1.3 "><p id="cce_02_0354__p15238243164815"><a href="#cce_02_0354__table163721555105015">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="49%" headers="mcps1.3.3.8.2.5.1.4 "><p id="cce_02_0354__p62213390326">Container runtime. The default value is <strong id="cce_02_0354__b17221153917321">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="49%" headers="mcps1.3.3.8.2.5.1.4 "><p id="cce_02_0354__p62213390326">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -953,9 +953,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.07%" headers="mcps1.3.3.20.2.5.1.3 "><p id="cce_02_0354__p133731552509">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.3.20.2.5.1.4 "><p id="cce_02_0354__p1065576103017">Container runtime. The default value is <strong id="cce_02_0354__b4655116103020">docker</strong>.</p>
|
||||
<p id="cce_02_0354__p106556623011">Enumeration values:</p>
|
||||
<ul id="cce_02_0354__ul265516617301"><li id="cce_02_0354__li3655116133020">docker</li><li id="cce_02_0354__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.3.20.2.5.1.4 "><p id="cce_02_0354__p1065576103017">Container runtime. The default value is <span id="cce_02_0354__ph13953205320597">containerd</span>.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -454,7 +454,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="17.919999999999998%" headers="mcps1.3.4.8.2.4.1.2 "><p id="cce_02_0355__p15238243164815"><a href="#cce_02_0355__table163721555105015">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="58.29%" headers="mcps1.3.4.8.2.4.1.3 "><p id="cce_02_0355__p62213390326">Container runtime. The default value is <strong id="cce_02_0355__b17221153917321">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="58.29%" headers="mcps1.3.4.8.2.4.1.3 "><p id="cce_02_0355__p62213390326">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -917,9 +917,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.07%" headers="mcps1.3.4.21.2.5.1.3 "><p id="cce_02_0355__p133731552509">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.4.21.2.5.1.4 "><p id="cce_02_0355__p1065576103017">Container runtime. The default value is <strong id="cce_02_0355__b4655116103020">docker</strong>.</p>
|
||||
<p id="cce_02_0355__p106556623011">Enumeration values:</p>
|
||||
<ul id="cce_02_0355__ul265516617301"><li id="cce_02_0355__li3655116133020">docker</li><li id="cce_02_0355__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.4.21.2.5.1.4 "><p id="cce_02_0355__p1065576103017">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -407,7 +407,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.4.6.2.4.1.2 "><p id="cce_02_0357__p1864918416511"><a href="#cce_02_0357__table163721555105015">Runtime</a> object</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="60%" headers="mcps1.3.4.6.2.4.1.3 "><p id="cce_02_0357__p62213390326">Container runtime. The default value is <strong id="cce_02_0357__b17221153917321">docker</strong>.</p>
|
||||
<td class="cellrowborder" valign="top" width="60%" headers="mcps1.3.4.6.2.4.1.3 "><p id="cce_02_0357__p62213390326">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -867,9 +867,7 @@
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="19.07%" headers="mcps1.3.4.20.2.5.1.3 "><p id="cce_02_0357__p133731552509">String</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.4.20.2.5.1.4 "><p id="cce_02_0357__p1065576103017">Container runtime. The default value is <strong id="cce_02_0357__b4655116103020">docker</strong>.</p>
|
||||
<p id="cce_02_0357__p106556623011">Enumeration values:</p>
|
||||
<ul id="cce_02_0357__ul265516617301"><li id="cce_02_0357__li3655116133020">docker</li><li id="cce_02_0357__li4656126163010">containerd</li></ul>
|
||||
<td class="cellrowborder" valign="top" width="41.730000000000004%" headers="mcps1.3.4.20.2.5.1.4 "><p id="cce_02_0357__p1065576103017">Container runtime. The default value is containerd.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,13 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_01_0300__row047745519291"><td class="cellrowborder" valign="top" width="19.009999999999998%" headers="mcps1.3.1.2.3.1.1 "><p id="cce_01_0300__p1747705515291"><span id="cce_01_0300__ph17657328307">2026-03-25</span></p>
|
||||
<tbody><tr id="cce_01_0300__row7103647952"><td class="cellrowborder" valign="top" width="19.009999999999998%" headers="mcps1.3.1.2.3.1.1 "><p id="cce_01_0300__p42146531050">2026-04-16</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="80.99%" headers="mcps1.3.1.2.3.1.2 "><p id="cce_01_0300__p0129151615">Update:</p>
|
||||
<ul id="cce_01_0300__ul18129135162"><li id="cce_01_0300__li459917178385">Updated <a href="cce_10_0064.html">Add-ons</a></li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_01_0300__row047745519291"><td class="cellrowborder" valign="top" width="19.009999999999998%" headers="mcps1.3.1.2.3.1.1 "><p id="cce_01_0300__p1747705515291">2026-03-25</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="80.99%" headers="mcps1.3.1.2.3.1.2 "><p id="cce_01_0300__p854717933014">Add:</p>
|
||||
<ul id="cce_01_0300__ul13222613133018"><li id="cce_01_0300__li12224131301">Added <a href="cce_10_0055.html">Configuring APM</a></li><li id="cce_01_0300__li13945922153011">Added <a href="en-us_topic_0000002516078019.html">Configuring Alarms for Java Applications on APM</a></li></ul>
|
||||
|
||||
@ -6,6 +6,63 @@
|
||||
</div>
|
||||
<div class="section" id="cce_10_0026__en-us_topic_0179639644_section036851413573"><h4 class="sectiontitle">What Is a Trace?</h4><p id="cce_10_0026__en-us_topic_0179639644_p7344192412579">A trace is an operation log for a cloud service resource, tracked and stored by CTS. Traces record operations such as adding, modifying, or deleting cloud service resources. You can view them to identify who performed operations and when for detailed tracking.</p>
|
||||
</div>
|
||||
<div class="section" id="cce_10_0026__en-us_topic_0179639644_section19271975203"><h4 class="sectiontitle">Viewing Traces in the Trace List</h4><ol id="cce_10_0026__en-us_topic_0179639644_ol143115612115"><li id="cce_10_0026__en-us_topic_0179639644_li1629194722218"><span>Log in to the management console, click <span><img id="cce_10_0026__en-us_topic_0179639644_image1229124714224" src="en-us_image_0000002359774578.png"></span> in the upper left corner, and choose <strong id="cce_10_0026__en-us_topic_0179639644_b0101171161313">Management & Deployment</strong> > <strong id="cce_10_0026__en-us_topic_0179639644_b17101511131310">Cloud Trace Service</strong>.</span></li><li id="cce_10_0026__en-us_topic_0179639644_li1443115692119"><span>In the navigation pane, choose <strong id="cce_10_0026__en-us_topic_0179639644_b5352121921314">Trace List</strong>.</span></li><li id="cce_10_0026__en-us_topic_0179639644_li1468123811239"><span>In the upper right corner of the page, select a desired query time range: <strong id="cce_10_0026__en-us_topic_0179639644_b97183311212">Last 1 hour</strong>, <strong id="cce_10_0026__en-us_topic_0179639644_b17712033131211">Last 1 day</strong>, or <strong id="cce_10_0026__en-us_topic_0179639644_b12717337121">Last 1 week</strong>. You can also specify a custom time range within the last seven days.</span></li><li id="cce_10_0026__en-us_topic_0179639644_li243155612119"><span>Set filters to search for your desired traces, as shown in <a href="#cce_10_0026__en-us_topic_0179639644_fig139361441134311">Figure 1</a>.</span><p><div class="fignone" id="cce_10_0026__en-us_topic_0179639644_fig139361441134311"><a name="cce_10_0026__en-us_topic_0179639644_fig139361441134311"></a><a name="en-us_topic_0179639644_fig139361441134311"></a><span class="figcap"><b>Figure 1 </b>Filters</span><br><span><img id="cce_10_0026__en-us_topic_0179639644_image14936144112433" src="en-us_image_0000001744598325.png"></span></div>
|
||||
|
||||
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="cce_10_0026__en-us_topic_0179639644_table147746583014" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Trace filtering parameters</caption><thead align="left"><tr id="cce_10_0026__en-us_topic_0179639644_row1877510573019"><th align="left" class="cellrowborder" valign="top" width="18.95%" id="mcps1.3.3.2.4.2.2.2.3.1.1"><p id="cce_10_0026__en-us_topic_0179639644_p1877512593016">Parameter</p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" valign="top" width="81.05%" id="mcps1.3.3.2.4.2.2.2.3.1.2"><p id="cce_10_0026__en-us_topic_0179639644_p57751859302">Description</p>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0026__en-us_topic_0179639644_row1285411013373"><td class="cellrowborder" valign="top" width="18.95%" headers="mcps1.3.3.2.4.2.2.2.3.1.1 "><p id="cce_10_0026__en-us_topic_0179639644_p28541510143716">Trace Type</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="81.05%" headers="mcps1.3.3.2.4.2.2.2.3.1.2 "><p id="cce_10_0026__en-us_topic_0179639644_p08541510193711">Select <strong id="cce_10_0026__en-us_topic_0179639644_b14902228784">Management</strong> or <strong id="cce_10_0026__en-us_topic_0179639644_b129020281815">Data</strong>.</p>
|
||||
<ul id="cce_10_0026__en-us_topic_0179639644_ul1060181493817"><li id="cce_10_0026__en-us_topic_0179639644_li156071412384">Management traces record operations performed by users on cloud service resources, including creation, modification, and deletion.</li><li id="cce_10_0026__en-us_topic_0179639644_li1385816156388">Data traces are reported by OBS and record operations performed on data in OBS buckets, including uploads and downloads.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0026__en-us_topic_0179639644_row113186562383"><td class="cellrowborder" valign="top" width="18.95%" headers="mcps1.3.3.2.4.2.2.2.3.1.1 "><p id="cce_10_0026__en-us_topic_0179639644_p157759523017">Trace Source</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="81.05%" headers="mcps1.3.3.2.4.2.2.2.3.1.2 "><p id="cce_10_0026__en-us_topic_0179639644_p177757543019">Select the name of the cloud service that triggers a trace from the drop-down list.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0026__en-us_topic_0179639644_row531111429400"><td class="cellrowborder" valign="top" width="18.95%" headers="mcps1.3.3.2.4.2.2.2.3.1.1 "><p id="cce_10_0026__en-us_topic_0179639644_p167757553018">Resource type</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="81.05%" headers="mcps1.3.3.2.4.2.2.2.3.1.2 "><p id="cce_10_0026__en-us_topic_0179639644_p1677513515307">Select the type of the resource involved in a trace from the drop-down list.</p>
|
||||
<p id="cce_10_0026__en-us_topic_0179639644_p1077535173016">For details about the resource types of each cloud service, see "Supported Services and Operations" in <em id="cce_10_0026__en-us_topic_0179639644_i8304152131410">CTS User Guide</em>.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0026__en-us_topic_0179639644_row17951953163817"><td class="cellrowborder" valign="top" width="18.95%" headers="mcps1.3.3.2.4.2.2.2.3.1.1 "><p id="cce_10_0026__en-us_topic_0179639644_p17951145393815">Search By</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="81.05%" headers="mcps1.3.3.2.4.2.2.2.3.1.2 "><p id="cce_10_0026__en-us_topic_0179639644_p1866016362423">Select one of the following options:</p>
|
||||
<ul id="cce_10_0026__en-us_topic_0179639644_ul8324201518432"><li id="cce_10_0026__en-us_topic_0179639644_li1332441519434"><strong id="cce_10_0026__en-us_topic_0179639644_b17755195192214">Resource ID</strong>: ID of the cloud resource involved in a trace.<p id="cce_10_0026__en-us_topic_0179639644_p927319140446">Leave this field empty if the resource has no resource ID or if resource creation failed.</p>
|
||||
</li><li id="cce_10_0026__en-us_topic_0179639644_li19324111594319"><strong id="cce_10_0026__en-us_topic_0179639644_b20740051162314">Trace name</strong>: name of a trace.<p id="cce_10_0026__en-us_topic_0179639644_p162131756164314">For details about the operations that can be audited for each cloud service, see "Supported Services and Operations" in <em id="cce_10_0026__en-us_topic_0179639644_i1559831121510">CTS User Guide</em>.</p>
|
||||
</li><li id="cce_10_0026__en-us_topic_0179639644_li53251315144311"><strong id="cce_10_0026__en-us_topic_0179639644_b113836152512">Resource name</strong>: name of the cloud resource involved in a trace.<p id="cce_10_0026__en-us_topic_0179639644_p546964974419">If the cloud resource involved in the trace does not have a resource name or the corresponding API operation does not involve the resource name parameter, leave this field empty.</p>
|
||||
</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0026__en-us_topic_0179639644_row10776105103014"><td class="cellrowborder" valign="top" width="18.95%" headers="mcps1.3.3.2.4.2.2.2.3.1.1 "><p id="cce_10_0026__en-us_topic_0179639644_p47761954309">Operator</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="81.05%" headers="mcps1.3.3.2.4.2.2.2.3.1.2 "><p id="cce_10_0026__en-us_topic_0179639644_p17761455309">User who triggers a trace.</p>
|
||||
<p id="cce_10_0026__en-us_topic_0179639644_p1577616513018">Select one or more operators from the drop-down list.</p>
|
||||
<p id="cce_10_0026__en-us_topic_0179639644_p47761952302">If the value of <strong id="cce_10_0026__en-us_topic_0179639644_b1470691118286">trace_type</strong> in a trace is <strong id="cce_10_0026__en-us_topic_0179639644_b18706191132818">SystemAction</strong>, the operation is triggered by the service and the trace's operator may be empty.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0026__en-us_topic_0179639644_row1377615153014"><td class="cellrowborder" valign="top" width="18.95%" headers="mcps1.3.3.2.4.2.2.2.3.1.1 "><p id="cce_10_0026__en-us_topic_0179639644_p877615519306">Trace Status</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="81.05%" headers="mcps1.3.3.2.4.2.2.2.3.1.2 "><p id="cce_10_0026__en-us_topic_0179639644_p10776115133014">Select one of the following options:</p>
|
||||
<ul id="cce_10_0026__en-us_topic_0179639644_ul177767517302"><li id="cce_10_0026__en-us_topic_0179639644_li177617583015"><strong id="cce_10_0026__en-us_topic_0179639644_b14380125823418">Normal</strong>: The operation succeeded.</li><li id="cce_10_0026__en-us_topic_0179639644_li1077665143015"><strong id="cce_10_0026__en-us_topic_0179639644_b128046471357">Warning</strong>: The operation failed.</li><li id="cce_10_0026__en-us_topic_0179639644_li19776135143018"><strong id="cce_10_0026__en-us_topic_0179639644_b134361033365">Incident</strong>: The operation caused a fault that is more serious than a normal failure, for example, causing other faults.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</p></li><li class="subitemlist" id="cce_10_0026__en-us_topic_0179639644_li124311756172111"><span>Click <strong id="cce_10_0026__en-us_topic_0179639644_b158561654073256">Query</strong>.</span></li><li id="cce_10_0026__en-us_topic_0179639644_li7432056192112"><span>On the <strong id="cce_10_0026__en-us_topic_0179639644_b176911834143214">Trace List</strong> page, you can also export and refresh the trace list.</span><p><ul id="cce_10_0026__en-us_topic_0179639644_ul119414175448"><li id="cce_10_0026__en-us_topic_0179639644_li12946170445">Click <strong id="cce_10_0026__en-us_topic_0179639644_b8907168171714">Export</strong> to export all traces in the query result as a CSV file. The file can contain up to 5,000 records.</li><li id="cce_10_0026__en-us_topic_0179639644_li394151717445">Click <span><img id="cce_10_0026__en-us_topic_0179639644_image109421716440" src="en-us_image_0000001696678850.png"></span> to view the latest information about traces.</li></ul>
|
||||
</p></li><li id="cce_10_0026__en-us_topic_0179639644_li15432145622119"><span>Click <span><img id="cce_10_0026__en-us_topic_0179639644_image9947176447" src="en-us_image_0000001744678489.jpg"></span> on the left of a trace to expand its details.</span><p><p id="cce_10_0026__en-us_topic_0179639644_p1294101714446"></p>
|
||||
<p id="cce_10_0026__en-us_topic_0179639644_p1694171715446"><span><img id="cce_10_0026__en-us_topic_0179639644_image1767234653119" src="en-us_image_0000001942942816.png"></span></p>
|
||||
<p id="cce_10_0026__en-us_topic_0179639644_p145491156142711"></p>
|
||||
</p></li><li id="cce_10_0026__en-us_topic_0179639644_li143245616217"><span>Click <strong id="cce_10_0026__en-us_topic_0179639644_b139145611337">View Trace</strong> in the <strong id="cce_10_0026__en-us_topic_0179639644_b1591756103313">Operation</strong> column. The trace details are displayed.</span><p><p id="cce_10_0026__en-us_topic_0179639644_p1695161714447"><span><img id="cce_10_0026__en-us_topic_0179639644_image1904172011220" src="en-us_image_0000001758618249.png"></span></p>
|
||||
</p></li></ol>
|
||||
</div>
|
||||
<div class="section" id="cce_10_0026__en-us_topic_0179639644_section18501734161612"><h4 class="sectiontitle">Helpful Links</h4><ul id="cce_10_0026__en-us_topic_0179639644_ul19442019172"><li id="cce_10_0026__en-us_topic_0179639644_li547715311275">For details about the key fields in the trace structure, see <a href="https://docs.otc.t-systems.com/cloud-trace-service/umn/user_guide/trace_references/trace_structure.html#cts-03-0010" target="_blank" rel="noopener noreferrer">Trace Structure</a> and <a href="https://docs.otc.t-systems.com/cloud-trace-service/umn/user_guide/trace_references/example_traces.html" target="_blank" rel="noopener noreferrer">Example Traces</a>.</li></ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -420,17 +420,42 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0066__en-us_topic_0000001559534258_row9254171316545"><td class="cellrowborder" valign="top" width="15.51155115511551%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0066__en-us_topic_0000001559534258_p6693516105416">2.4.161</p>
|
||||
<tbody><tr id="cce_10_0066__en-us_topic_0000001559534258_row8932114912510"><td class="cellrowborder" valign="top" width="15.51155115511551%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0066__en-us_topic_0000001559534258_p1493216493514">2.4.198</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="25.172517251725175%" headers="mcps1.3.6.2.2.4.1.2 "><p id="cce_10_0066__en-us_topic_0000001559534258_p14693171619544">v1.25</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p069371645418">v1.27</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p9693101655412">v1.28</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p06931016145418">v1.29</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p76932162549">v1.30</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p7693101615541">v1.31</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p1238918263541">v1.32</p>
|
||||
<td class="cellrowborder" valign="top" width="25.172517251725175%" headers="mcps1.3.6.2.2.4.1.2 "><p id="cce_10_0066__en-us_topic_0000001559534258_p161221141465">v1.27</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p17122542610">v1.28</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p181221545619">v1.29</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p61224412617">v1.30</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p4122045615">v1.31</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p812214410617">v1.32</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p3122134361">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="59.31593159315932%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0066__en-us_topic_0000001559534258_p163634323542">CCE clusters v1.32 are supported.</p>
|
||||
<td class="cellrowborder" valign="top" width="59.31593159315932%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0066__en-us_topic_0000001559534258_p453051014615">CCE clusters v1.33 are supported.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0066__en-us_topic_0000001559534258_row22431232193917"><td class="cellrowborder" valign="top" width="15.51155115511551%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0066__en-us_topic_0000001559534258_p96841440113918">2.4.196</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="25.172517251725175%" headers="mcps1.3.6.2.2.4.1.2 "><p id="cce_10_0066__en-us_topic_0000001559534258_p17684184023917">v1.27</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p8684134083914">v1.28</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p268464014396">v1.29</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p7684104013397">v1.30</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p10684164012397">v1.31</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p1468474017398">v1.32</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p5684144015396">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="59.31593159315932%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0066__en-us_topic_0000001559534258_p5527457809">CCE clusters v1.33 are supported.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0066__en-us_topic_0000001559534258_row33651857165811"><td class="cellrowborder" valign="top" width="15.51155115511551%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0066__en-us_topic_0000001559534258_p1954723155918">2.4.167</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="25.172517251725175%" headers="mcps1.3.6.2.2.4.1.2 "><p id="cce_10_0066__en-us_topic_0000001559534258_p1429154585910">v1.27</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p629124505918">v1.28</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p14291134565911">v1.29</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p1129134545914">v1.30</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p1629194510591">v1.31</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p3291144518599">v1.32</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="59.31593159315932%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0066__en-us_topic_0000001559534258_p197561494591">CCE clusters v1.32 are supported.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0066__en-us_topic_0000001559534258_row20626722193716"><td class="cellrowborder" valign="top" width="15.51155115511551%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0066__en-us_topic_0000001559534258_p1516293063713">2.4.134</p>
|
||||
@ -442,7 +467,7 @@
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p1116253053710">v1.30</p>
|
||||
<p id="cce_10_0066__en-us_topic_0000001559534258_p1016283093714">v1.31</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="59.31593159315932%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0066__en-us_topic_0000001559534258_p1668154463714">Fixed some issues.</p>
|
||||
<td class="cellrowborder" valign="top" width="59.31593159315932%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0066__en-us_topic_0000001559534258_p13604183345612">CCE clusters v1.31 are supported.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0066__en-us_topic_0000001559534258_row16377112285810"><td class="cellrowborder" valign="top" width="15.51155115511551%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0066__en-us_topic_0000001559534258_p1289322913588">2.4.75</p>
|
||||
|
||||
@ -374,7 +374,22 @@ $configBlock
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0129__en-us_topic_0000001608265441_row17675143610531"><td class="cellrowborder" valign="top" width="17.64%" headers="mcps1.3.7.2.2.5.1.1 "><p id="cce_10_0129__en-us_topic_0000001608265441_p0146104135310">1.30.33</p>
|
||||
<tbody><tr id="cce_10_0129__en-us_topic_0000001608265441_row13653165703820"><td class="cellrowborder" valign="top" width="17.64%" headers="mcps1.3.7.2.2.5.1.1 "><p id="cce_10_0129__en-us_topic_0000001608265441_p365313574383">1.30.43</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="29.42%" headers="mcps1.3.7.2.2.5.1.2 "><p id="cce_10_0129__en-us_topic_0000001608265441_p1995143173917">v1.27</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p5951133123919">v1.28</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p1695112303919">v1.29</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p995112310393">v1.30</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p1195193203913">v1.31</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p9951113163918">v1.32</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p1595118320394">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.29%" headers="mcps1.3.7.2.2.5.1.3 "><p id="cce_10_0129__en-us_topic_0000001608265441_p16305123433915">CCE clusters v1.33 are supported.</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="17.65%" headers="mcps1.3.7.2.2.5.1.4 "><p id="cce_10_0129__en-us_topic_0000001608265441_p119517303910"><a href="https://github.com/coredns/coredns/releases/tag/v1.11.4" target="_blank" rel="noopener noreferrer">1.11.4</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0129__en-us_topic_0000001608265441_row17675143610531"><td class="cellrowborder" valign="top" width="17.64%" headers="mcps1.3.7.2.2.5.1.1 "><p id="cce_10_0129__en-us_topic_0000001608265441_p0146104135310">1.30.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="29.42%" headers="mcps1.3.7.2.2.5.1.2 "><p id="cce_10_0129__en-us_topic_0000001608265441_p71468418531">v1.25</p>
|
||||
<p id="cce_10_0129__en-us_topic_0000001608265441_p714654155319">v1.27</p>
|
||||
|
||||
@ -499,7 +499,22 @@ problem_gauge{reason="CRIIsUp",type="CRIProblem"} 0
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0132__en-us_topic_0000001559693886_row394594919544"><td class="cellrowborder" valign="top" width="17.65%" headers="mcps1.3.10.2.2.5.1.1 "><p id="cce_10_0132__en-us_topic_0000001559693886_p8703452125419">1.19.25</p>
|
||||
<tbody><tr id="cce_10_0132__en-us_topic_0000001559693886_row16257115312455"><td class="cellrowborder" valign="top" width="17.65%" headers="mcps1.3.10.2.2.5.1.1 "><p id="cce_10_0132__en-us_topic_0000001559693886_p1988010570454">1.19.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="29.409999999999997%" headers="mcps1.3.10.2.2.5.1.2 "><p id="cce_10_0132__en-us_topic_0000001559693886_p6880115744511">v1.27</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p0880195711458">v1.28</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p1088013579453">v1.29</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p68809579457">v1.30</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p10880155744510">v1.31</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p188801657184517">v1.32</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p5880165720455">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="38.07%" headers="mcps1.3.10.2.2.5.1.3 "><p id="cce_10_0132__en-us_topic_0000001559693886_p914454154611">Fixed some issues.</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="14.87%" headers="mcps1.3.10.2.2.5.1.4 "><p id="cce_10_0132__en-us_topic_0000001559693886_p198801657144513"><a href="https://github.com/kubernetes/node-problem-detector/releases/tag/v0.8.10" target="_blank" rel="noopener noreferrer">0.8.10</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0132__en-us_topic_0000001559693886_row394594919544"><td class="cellrowborder" valign="top" width="17.65%" headers="mcps1.3.10.2.2.5.1.1 "><p id="cce_10_0132__en-us_topic_0000001559693886_p8703452125419">1.19.25</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="29.409999999999997%" headers="mcps1.3.10.2.2.5.1.2 "><p id="cce_10_0132__en-us_topic_0000001559693886_p0704175211545">v1.25</p>
|
||||
<p id="cce_10_0132__en-us_topic_0000001559693886_p170495275419">v1.27</p>
|
||||
|
||||
@ -79,11 +79,11 @@
|
||||
</li><li id="cce_10_0141__li113881456468">When installing a GPU driver on Ubuntu and CentOS, pay attention to the OS version. For details, see <a href="#cce_10_0141__table6519152112818">Table 3</a>. For more information, see <a href="https://docs.nvidia.com/datacenter/tesla/" target="_blank" rel="noopener noreferrer">NVIDIA Driver Documentation</a>.</li></ul>
|
||||
</div></div>
|
||||
|
||||
<div class="tablenoborder"><a name="cce_10_0141__table056413288409"></a><a name="table056413288409"></a><table cellpadding="4" cellspacing="0" summary="" id="cce_10_0141__table056413288409" frame="border" border="1" rules="all"><caption><b>Table 2 </b>Supported GPU drivers</caption><thead align="left"><tr id="cce_10_0141__row17564102864016"><th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.11.3.2.7.1.1"><p id="cce_10_0141__p65641928114011"><strong id="cce_10_0141__b1807133721">GPU Model</strong></p>
|
||||
<div class="tablenoborder"><a name="cce_10_0141__table056413288409"></a><a name="table056413288409"></a><table cellpadding="4" cellspacing="0" summary="" id="cce_10_0141__table056413288409" frame="border" border="1" rules="all"><caption><b>Table 2 </b>Supported GPU drivers</caption><thead align="left"><tr id="cce_10_0141__row17564102864016"><th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.11.3.2.7.1.1"><p id="cce_10_0141__p65641928114011"><strong id="cce_10_0141__b101043949">GPU Model</strong></p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.11.3.2.7.1.2"><p id="cce_10_0141__p8564192814016"><strong id="cce_10_0141__b1262368121">Supported Cluster Type</strong></p>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.11.3.2.7.1.2"><p id="cce_10_0141__p8564192814016"><strong id="cce_10_0141__b1558601204">Supported Cluster Type</strong></p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.11.3.2.7.1.3"><p id="cce_10_0141__p45641228164018"><strong id="cce_10_0141__b1563295180">Specification</strong></p>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.11.3.2.7.1.3"><p id="cce_10_0141__p45641228164018"><strong id="cce_10_0141__b1945810092">Specification</strong></p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" valign="top" width="16.93584905660377%" id="mcps1.3.11.3.2.7.1.4"><p id="cce_10_0141__p456402811407">OS</p>
|
||||
</th>
|
||||
@ -198,7 +198,7 @@
|
||||
<p id="cce_10_0141__p699518390599"></p>
|
||||
</div>
|
||||
<div class="section" id="cce_10_0141__section95451728192112"><a name="cce_10_0141__section95451728192112"></a><a name="section95451728192112"></a><h4 class="sectiontitle">Obtaining a Driver Link from the Internet</h4><ol id="cce_10_0141__ol1138125974915"><li id="cce_10_0141__li620314782713"><span>Log in to the <span id="cce_10_0141__cce_10_0004_ph18314322182_3">CCE console</span> and click the cluster name to access the cluster console.</span></li><li id="cce_10_0141__li111387599493"><span>Create a node. In the <strong id="cce_10_0141__b2312250103712">Specifications</strong> area, select the GPU node flavor. The GPU card models are displayed in the lower part of the area.</span><p><p id="cce_10_0141__p1618510475363"></p>
|
||||
</p></li></ol><ol start="3" id="cce_10_0141__ol195031456154814"><li id="cce_10_0141__li16232124410505"><span>Log in to the <a href="https://www.nvidia.com/en-us/drivers/" target="_blank" rel="noopener noreferrer">NVIDIA driver download page</a> and search for the driver information. The OS must be <strong id="cce_10_0141__b18474438264">Linux 64-bit</strong>.</span><p><div class="fignone" id="cce_10_0141__fig11696366517"><span class="figcap"><b>Figure 2 </b>Selecting parameters</span><br><span><img id="cce_10_0141__image1519115318213" src="en-us_image_0000002516199373.png"></span></div>
|
||||
</p></li></ol><ol start="3" id="cce_10_0141__ol195031456154814"><li id="cce_10_0141__li16232124410505"><span>Log in to the <a href="https://www.nvidia.com/en-us/drivers/" target="_blank" rel="noopener noreferrer">NVIDIA driver download page</a> and search for driver information. The OS must be <strong id="cce_10_0141__b10981947121910">Linux 64-bit</strong>.</span><p><div class="fignone" id="cce_10_0141__fig11696366517"><span class="figcap"><b>Figure 2 </b>Selecting parameters</span><br><span><img id="cce_10_0141__image1519115318213" src="en-us_image_0000002516199373.png"></span></div>
|
||||
</p></li><li id="cce_10_0141__li1682301014493"><span>After confirming the driver information, click <span class="uicontrol" id="cce_10_0141__uicontrol1411775314551"><b>Find</b></span>. On the displayed page, find the driver to be downloaded and click <span class="uicontrol" id="cce_10_0141__uicontrol163131533185618"><b>View</b></span>.</span><p><div class="fignone" id="cce_10_0141__fig7873421145213"><span class="figcap"><b>Figure 3 </b>Viewing the driver information</span><br><span><img id="cce_10_0141__image29015595501" src="en-us_image_0000002483959410.png"></span></div>
|
||||
</p></li><li id="cce_10_0141__li624514474513"><span>Click <strong id="cce_10_0141__b89621609439">Download</strong> and copy the download link.</span><p><div class="fignone" id="cce_10_0141__fig635212293546"><span class="figcap"><b>Figure 4 </b>Obtaining the link</span><br><span><img id="cce_10_0141__image99782175560" src="en-us_image_0000002516079355.png"></span></div>
|
||||
</p></li></ol>
|
||||
@ -252,7 +252,32 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0141__en-us_topic_0000001559693890_row4741978131"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.16.2.2.4.1.1 "><p id="cce_10_0141__en-us_topic_0000001559693890_p2382018201318">2.8.4</p>
|
||||
<tbody><tr id="cce_10_0141__en-us_topic_0000001559693890_row1867673720563"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.16.2.2.4.1.1 "><p id="cce_10_0141__en-us_topic_0000001559693890_p1017134316564">2.11.1</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.71357135713571%" headers="mcps1.3.16.2.2.4.1.2 "><p id="cce_10_0141__en-us_topic_0000001559693890_p1517184375616">v1.28</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p15171114395611">v1.29</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p16171144335610">v1.30</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p1317114311569">v1.31</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p13171943175613">v1.32</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p518964718566">v1.33</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p11913194765619">v1.34</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="42.85428542854286%" headers="mcps1.3.16.2.2.4.1.3 "><p id="cce_10_0141__en-us_topic_0000001559693890_p417114319566">CCE clusters v1.34 are supported.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0141__en-us_topic_0000001559693890_row872155994619"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.16.2.2.4.1.1 "><p id="cce_10_0141__en-us_topic_0000001559693890_p13721559124612">2.10.2</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.71357135713571%" headers="mcps1.3.16.2.2.4.1.2 "><p id="cce_10_0141__en-us_topic_0000001559693890_p9784131474">v1.28</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p579113144720">v1.29</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p87941394719">v1.30</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p97921334714">v1.31</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p879141304714">v1.32</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p1047811149473">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="42.85428542854286%" headers="mcps1.3.16.2.2.4.1.3 "><p id="cce_10_0141__en-us_topic_0000001559693890_p1728192214717">Supported NVIDIA driver 570.86.15.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0141__en-us_topic_0000001559693890_row4741978131"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.16.2.2.4.1.1 "><p id="cce_10_0141__en-us_topic_0000001559693890_p2382018201318">2.8.4</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.71357135713571%" headers="mcps1.3.16.2.2.4.1.2 "><p id="cce_10_0141__en-us_topic_0000001559693890_p611012386138">v1.28</p>
|
||||
<p id="cce_10_0141__en-us_topic_0000001559693890_p1811018387136">v1.29</p>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1034,7 +1034,33 @@ workload_balancer_third_party_types: ''</pre>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0193__en-us_topic_0000001609894173_row17503815619"><td class="cellrowborder" valign="top" width="15.21%" headers="mcps1.3.8.3.2.4.1.1 "><p id="cce_10_0193__en-us_topic_0000001609894173_p55183815617">1.18.3</p>
|
||||
<tbody><tr id="cce_10_0193__en-us_topic_0000001609894173_row193005482128"><td class="cellrowborder" valign="top" width="15.21%" headers="mcps1.3.8.3.2.4.1.1 "><p id="cce_10_0193__en-us_topic_0000001609894173_p1930044861212">1.21.2</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="33.37%" headers="mcps1.3.8.3.2.4.1.2 "><p id="cce_10_0193__en-us_topic_0000001609894173_p1935419821314">v1.28</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p635419810134">v1.29</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p16354881134">v1.30</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p03549821310">v1.31</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p3354208121311">v1.32</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p183542820138">v1.33</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p535417811132">v1.34</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="51.42%" headers="mcps1.3.8.3.2.4.1.3 "><ul id="cce_10_0193__en-us_topic_0000001609894173_ul168004226159"><li id="cce_10_0193__en-us_topic_0000001609894173_li16800102281511">Supported inference workload management.</li><li id="cce_10_0193__en-us_topic_0000001609894173_li181410310155">Supported multi-dimensional parallelism and collaborative scheduling across multi-level network topologies for training tasks.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0193__en-us_topic_0000001609894173_row58451619174212"><td class="cellrowborder" valign="top" width="15.21%" headers="mcps1.3.8.3.2.4.1.1 "><p id="cce_10_0193__en-us_topic_0000001609894173_p18260162894210">1.19.6</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="33.37%" headers="mcps1.3.8.3.2.4.1.2 "><p id="cce_10_0193__en-us_topic_0000001609894173_p18260152834219">v1.27</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p62601128184213">v1.28</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p192607283428">v1.29</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p526042817427">v1.30</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p17260182816423">v1.31</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p8260152810426">v1.32</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p1426012819422">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="51.42%" headers="mcps1.3.8.3.2.4.1.3 "><ul id="cce_10_0193__en-us_topic_0000001609894173_ul5704550114210"><li id="cce_10_0193__en-us_topic_0000001609894173_li1270417507422">Added support for scalable scheduling of logical NPU pools.</li><li id="cce_10_0193__en-us_topic_0000001609894173_li1704175010425">Added support for two-level group network topology-aware scheduling in training jobs.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0193__en-us_topic_0000001609894173_row17503815619"><td class="cellrowborder" valign="top" width="15.21%" headers="mcps1.3.8.3.2.4.1.1 "><p id="cce_10_0193__en-us_topic_0000001609894173_p55183815617">1.18.3</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="33.37%" headers="mcps1.3.8.3.2.4.1.2 "><p id="cce_10_0193__en-us_topic_0000001609894173_p11973115315569">v1.27</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p1697365335617">v1.28</p>
|
||||
@ -1058,6 +1084,18 @@ workload_balancer_third_party_types: ''</pre>
|
||||
<td class="cellrowborder" valign="top" width="51.42%" headers="mcps1.3.8.3.2.4.1.3 "><p id="cce_10_0193__en-us_topic_0000001609894173_p13973151703611">Supported even scheduling in virtual GPUs.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0193__en-us_topic_0000001609894173_row3439105011257"><td class="cellrowborder" valign="top" width="15.21%" headers="mcps1.3.8.3.2.4.1.1 "><p id="cce_10_0193__en-us_topic_0000001609894173_p6440155062519">1.15.11</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="33.37%" headers="mcps1.3.8.3.2.4.1.2 "><p id="cce_10_0193__en-us_topic_0000001609894173_p1579410810262">v1.23</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p137945815265">v1.25</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p37941815268">v1.27</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p15794188142618">v1.28</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p1579414819268">v1.29</p>
|
||||
<p id="cce_10_0193__en-us_topic_0000001609894173_p1189122042616">v1.30</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="51.42%" headers="mcps1.3.8.3.2.4.1.3 "><p id="cce_10_0193__en-us_topic_0000001609894173_p6147153212265">Fixed some issues.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0193__en-us_topic_0000001609894173_row577110132033"><td class="cellrowborder" valign="top" width="15.21%" headers="mcps1.3.8.3.2.4.1.1 "><p id="cce_10_0193__en-us_topic_0000001609894173_p163891031533">1.15.6</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="33.37%" headers="mcps1.3.8.3.2.4.1.2 "><p id="cce_10_0193__en-us_topic_0000001609894173_p186131183317">v1.23</p>
|
||||
|
||||
@ -70,7 +70,23 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0205__en-us_topic_0000001610054101_row44613241406"><td class="cellrowborder" valign="top" width="13.850000000000001%" headers="mcps1.3.7.2.2.5.1.1 "><p id="cce_10_0205__en-us_topic_0000001610054101_p11466241702">1.3.102</p>
|
||||
<tbody><tr id="cce_10_0205__en-us_topic_0000001610054101_row153921644414"><td class="cellrowborder" valign="top" width="13.850000000000001%" headers="mcps1.3.7.2.2.5.1.1 "><p id="cce_10_0205__en-us_topic_0000001610054101_p129131471445">1.3.104</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.810000000000002%" headers="mcps1.3.7.2.2.5.1.2 "><p id="cce_10_0205__en-us_topic_0000001610054101_p2063622112313">v1.25</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p17913117124415">v1.27</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p791319724414">v1.28</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p1391318754411">v1.29</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p1191317794415">v1.30</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p6913579445">v1.31</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p191317124412">v1.32</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p991317711448">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="38.9%" headers="mcps1.3.7.2.2.5.1.3 "><p id="cce_10_0205__en-us_topic_0000001610054101_p189131172445">CCE clusters v1.33 are supported.</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.44%" headers="mcps1.3.7.2.2.5.1.4 "><p id="cce_10_0205__en-us_topic_0000001610054101_p572311124442"><a href="https://github.com/kubernetes-sigs/metrics-server/releases/tag/v0.6.2" target="_blank" rel="noopener noreferrer">0.6.2</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0205__en-us_topic_0000001610054101_row44613241406"><td class="cellrowborder" valign="top" width="13.850000000000001%" headers="mcps1.3.7.2.2.5.1.1 "><p id="cce_10_0205__en-us_topic_0000001610054101_p11466241702">1.3.102</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.810000000000002%" headers="mcps1.3.7.2.2.5.1.2 "><p id="cce_10_0205__en-us_topic_0000001610054101_p13700328803">v1.25</p>
|
||||
<p id="cce_10_0205__en-us_topic_0000001610054101_p1770013281700">v1.27</p>
|
||||
|
||||
@ -75,7 +75,20 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0240__en-us_topic_0000001610213713_row115915492012"><td class="cellrowborder" valign="top" width="21.41%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0240__en-us_topic_0000001610213713_p716034918015">1.5.32</p>
|
||||
<tbody><tr id="cce_10_0240__en-us_topic_0000001610213713_row17828329134315"><td class="cellrowborder" valign="top" width="21.41%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0240__en-us_topic_0000001610213713_p1634911321431">1.5.38</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.74%" headers="mcps1.3.6.2.2.4.1.2 "><p id="cce_10_0240__en-us_topic_0000001610213713_p17349632144316">v1.27</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p7349432124310">v1.28</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p17350832154320">v1.29</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p9350163217438">v1.30</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p5350173224320">v1.31</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p93501325435">v1.32</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p0350132184311">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="42.85%" headers="mcps1.3.6.2.2.4.1.3 "><p id="cce_10_0240__en-us_topic_0000001610213713_p10932253123112">CCE clusters v1.33 are supported.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0240__en-us_topic_0000001610213713_row115915492012"><td class="cellrowborder" valign="top" width="21.41%" headers="mcps1.3.6.2.2.4.1.1 "><p id="cce_10_0240__en-us_topic_0000001610213713_p716034918015">1.5.32</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.74%" headers="mcps1.3.6.2.2.4.1.2 "><p id="cce_10_0240__en-us_topic_0000001610213713_p31009533017">v1.25</p>
|
||||
<p id="cce_10_0240__en-us_topic_0000001610213713_p181009531209">v1.27</p>
|
||||
|
||||
@ -117,7 +117,22 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0404__en-us_topic_0000001559375002_row17714195496"><td class="cellrowborder" valign="top" width="19.781978197819786%" headers="mcps1.3.9.2.2.5.1.1 "><p id="cce_10_0404__en-us_topic_0000001559375002_p16715551192">1.6.80</p>
|
||||
<tbody><tr id="cce_10_0404__en-us_topic_0000001559375002_row1418214245488"><td class="cellrowborder" valign="top" width="19.781978197819786%" headers="mcps1.3.9.2.2.5.1.1 "><p id="cce_10_0404__en-us_topic_0000001559375002_p998711407481">1.7.2</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20.342034203420344%" headers="mcps1.3.9.2.2.5.1.2 "><p id="cce_10_0404__en-us_topic_0000001559375002_p1977973110487">v1.27</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p277983114817">v1.28</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p077914317481">v1.29</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p19780103118483">v1.30</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p5780931114820">v1.31</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p578033164810">v1.32</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p078083110481">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="40.994099409941%" headers="mcps1.3.9.2.2.5.1.3 "><p id="cce_10_0404__en-us_topic_0000001559375002_p815711477487">Upgraded the community version to 1.26.0.</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="18.88188818881888%" headers="mcps1.3.9.2.2.5.1.4 "><p id="cce_10_0404__en-us_topic_0000001559375002_p1181871114920">1.26.0</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0404__en-us_topic_0000001559375002_row17714195496"><td class="cellrowborder" valign="top" width="19.781978197819786%" headers="mcps1.3.9.2.2.5.1.1 "><p id="cce_10_0404__en-us_topic_0000001559375002_p16715551192">1.6.80</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="20.342034203420344%" headers="mcps1.3.9.2.2.5.1.2 "><p id="cce_10_0404__en-us_topic_0000001559375002_p3312171213914">v1.25</p>
|
||||
<p id="cce_10_0404__en-us_topic_0000001559375002_p43121121794">v1.27</p>
|
||||
|
||||
@ -207,7 +207,25 @@ custom-metrics-apiserver-d4f556ff9-l2j2m 38m 44Mi
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0406__en-us_topic_0000001559534266_row526916486421"><td class="cellrowborder" valign="top" width="16.31%" headers="mcps1.3.9.2.2.5.1.1 "><p id="cce_10_0406__en-us_topic_0000001559534266_p152771834184311">3.12.1</p>
|
||||
<tbody><tr id="cce_10_0406__en-us_topic_0000001559534266_row934413271416"><td class="cellrowborder" valign="top" width="16.31%" headers="mcps1.3.9.2.2.5.1.1 "><p id="cce_10_0406__en-us_topic_0000001559534266_p1860419376415">3.12.2</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="21.349999999999998%" headers="mcps1.3.9.2.2.5.1.2 "><p id="cce_10_0406__en-us_topic_0000001559534266_p2604137745">v1.21</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p360419371042">v1.23</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p116047371410">v1.25</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p1260411379417">v1.27</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p36042378413">v1.28</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p14604143710417">v1.29</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p20604137547">v1.30</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p560410371347">v1.31</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p560414371345">v1.32</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p23131542843">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="38.9%" headers="mcps1.3.9.2.2.5.1.3 "><p id="cce_10_0406__en-us_topic_0000001559534266_p1660413718419">CCE clusters v1.33 are supported.</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.44%" headers="mcps1.3.9.2.2.5.1.4 "><p id="cce_10_0406__en-us_topic_0000001559534266_p14604837740"><a href="https://github.com/prometheus/prometheus/releases/tag/v2.53.2" target="_blank" rel="noopener noreferrer">2.53.2</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0406__en-us_topic_0000001559534266_row526916486421"><td class="cellrowborder" valign="top" width="16.31%" headers="mcps1.3.9.2.2.5.1.1 "><p id="cce_10_0406__en-us_topic_0000001559534266_p152771834184311">3.12.1</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="21.349999999999998%" headers="mcps1.3.9.2.2.5.1.2 "><p id="cce_10_0406__en-us_topic_0000001559534266_p186644054314">v1.21</p>
|
||||
<p id="cce_10_0406__en-us_topic_0000001559534266_p46674074320">v1.23</p>
|
||||
|
||||
@ -237,7 +237,23 @@
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0416__en-us_topic_0000001559693894_row1115214184415"><td class="cellrowborder" valign="top" width="19.36%" headers="mcps1.3.9.2.2.4.1.1 "><p id="cce_10_0416__en-us_topic_0000001559693894_p14698811154414">1.7.3</p>
|
||||
<tbody><tr id="cce_10_0416__en-us_topic_0000001559693894_row175257117316"><td class="cellrowborder" valign="top" width="19.36%" headers="mcps1.3.9.2.2.4.1.1 "><p id="cce_10_0416__en-us_topic_0000001559693894_p952510118316">1.7.6</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.29%" headers="mcps1.3.9.2.2.4.1.2 "><p id="cce_10_0416__en-us_topic_0000001559693894_p25341057934">v1.21</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p4535257931">v1.23</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p3535257732">v1.25</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p65351857234">v1.27</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p17535135713318">v1.28</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p1753545712312">v1.29</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p1353519571333">v1.30</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p1453517571335">v1.31</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p165352571338">v1.32</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p10736416418">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="57.35%" headers="mcps1.3.9.2.2.4.1.3 "><ul id="cce_10_0416__en-us_topic_0000001559693894_ul233154713314"><li id="cce_10_0416__en-us_topic_0000001559693894_li43314714318">CCE clusters v1.33 are supported.</li><li id="cce_10_0416__en-us_topic_0000001559693894_li63374712314">Optimized the memory consumption of event collection.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0416__en-us_topic_0000001559693894_row1115214184415"><td class="cellrowborder" valign="top" width="19.36%" headers="mcps1.3.9.2.2.4.1.1 "><p id="cce_10_0416__en-us_topic_0000001559693894_p14698811154414">1.7.3</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.29%" headers="mcps1.3.9.2.2.4.1.2 "><p id="cce_10_0416__en-us_topic_0000001559693894_p669861118445">v1.21</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p669812118449">v1.23</p>
|
||||
@ -266,19 +282,6 @@
|
||||
<td class="cellrowborder" valign="top" width="57.35%" headers="mcps1.3.9.2.2.4.1.3 "><p id="cce_10_0416__en-us_topic_0000001559693894_p14245193744913">Logs can be compressed in gzip format and sent to LTS.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0416__en-us_topic_0000001559693894_row1611416106185"><td class="cellrowborder" valign="top" width="19.36%" headers="mcps1.3.9.2.2.4.1.1 "><p id="cce_10_0416__en-us_topic_0000001559693894_p1988814131814">1.6.0</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="23.29%" headers="mcps1.3.9.2.2.4.1.2 "><p id="cce_10_0416__en-us_topic_0000001559693894_p12881614141811">v1.21</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p1088161417181">v1.23</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p1188121417186">v1.25</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p178817141189">v1.27</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p48851491814">v1.28</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p1088514201814">v1.29</p>
|
||||
<p id="cce_10_0416__en-us_topic_0000001559693894_p15333927161818">v1.30</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="57.35%" headers="mcps1.3.9.2.2.4.1.3 "><ul id="cce_10_0416__en-us_topic_0000001559693894_ul18126140111811"><li id="cce_10_0416__en-us_topic_0000001559693894_li91261640151819">Clusters v1.30 are supported.</li><li id="cce_10_0416__en-us_topic_0000001559693894_li131261040151820">Security hardening: The permissions of the add-on for accessing secrets are limited to the <strong id="cce_10_0416__en-us_topic_0000001559693894_b1099315244316">monitoring</strong> namespace.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@ -118,7 +118,25 @@ spec:
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><tr id="cce_10_0828__en-us_topic_0000001768148540_row871862414420"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.5.2.2.4.1.1 "><p id="cce_10_0828__en-us_topic_0000001768148540_p1348413111445">1.3.2</p>
|
||||
<tbody><tr id="cce_10_0828__en-us_topic_0000001768148540_row674410441231"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.5.2.2.4.1.1 "><p id="cce_10_0828__en-us_topic_0000001768148540_p6440847162315">1.3.3</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.71357135713571%" headers="mcps1.3.5.2.2.4.1.2 "><p id="cce_10_0828__en-us_topic_0000001768148540_p244014479231">v1.17</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p544064714236">v1.19</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p94408473238">v1.21</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p1544034762310">v1.23</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p1344004718234">v1.25</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p8441134792318">v1.27</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p10441154712311">v1.28</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p744154742310">v1.29</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p84411547142319">v1.30</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p744114472232">v1.31</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p1744117471236">v1.32</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p359615632418">v1.33</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="42.85428542854286%" headers="mcps1.3.5.2.2.4.1.3 "><ul id="cce_10_0828__en-us_topic_0000001768148540_ul12980130192411"><li id="cce_10_0828__en-us_topic_0000001768148540_li1498040192411">Clusters v1.33 are supported.</li><li id="cce_10_0828__en-us_topic_0000001768148540_li49818017248">Upgraded the Grafana version to v10.4.18+security-01.</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="cce_10_0828__en-us_topic_0000001768148540_row871862414420"><td class="cellrowborder" valign="top" width="21.432143214321435%" headers="mcps1.3.5.2.2.4.1.1 "><p id="cce_10_0828__en-us_topic_0000001768148540_p1348413111445">1.3.2</p>
|
||||
</td>
|
||||
<td class="cellrowborder" valign="top" width="35.71357135713571%" headers="mcps1.3.5.2.2.4.1.2 "><p id="cce_10_0828__en-us_topic_0000001768148540_p12484123112443">v1.17</p>
|
||||
<p id="cce_10_0828__en-us_topic_0000001768148540_p19484193110445">v1.19</p>
|
||||
|
||||
@ -6,11 +6,11 @@
|
||||
</li><li id="cce_10_0847__cce_10_0141_li113881456468">When installing a GPU driver on Ubuntu and CentOS, pay attention to the OS version. For details, see <a href="cce_10_0141.html#cce_10_0141__table6519152112818">Table 3</a>. For more information, see <a href="https://docs.nvidia.com/datacenter/tesla/" target="_blank" rel="noopener noreferrer">NVIDIA Driver Documentation</a>.</li></ul>
|
||||
</div></div>
|
||||
|
||||
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="cce_10_0847__table518491523814" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Supported GPU drivers</caption><thead align="left"><tr id="cce_10_0847__cce_10_0141_row17564102864016"><th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.2.3.2.7.1.1"><p id="cce_10_0847__cce_10_0141_p65641928114011"><strong id="cce_10_0847__cce_10_0141_b1807133721">GPU Model</strong></p>
|
||||
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="cce_10_0847__table518491523814" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Supported GPU drivers</caption><thead align="left"><tr id="cce_10_0847__cce_10_0141_row17564102864016"><th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.2.3.2.7.1.1"><p id="cce_10_0847__cce_10_0141_p65641928114011"><strong id="cce_10_0847__cce_10_0141_b101043949">GPU Model</strong></p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.2.3.2.7.1.2"><p id="cce_10_0847__cce_10_0141_p8564192814016"><strong id="cce_10_0847__cce_10_0141_b1262368121">Supported Cluster Type</strong></p>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.2.3.2.7.1.2"><p id="cce_10_0847__cce_10_0141_p8564192814016"><strong id="cce_10_0847__cce_10_0141_b1558601204">Supported Cluster Type</strong></p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.2.3.2.7.1.3"><p id="cce_10_0847__cce_10_0141_p45641228164018"><strong id="cce_10_0847__cce_10_0141_b1563295180">Specification</strong></p>
|
||||
<th align="left" class="cellrowborder" rowspan="2" valign="top" width="16.966037735849053%" id="mcps1.3.2.3.2.7.1.3"><p id="cce_10_0847__cce_10_0141_p45641228164018"><strong id="cce_10_0847__cce_10_0141_b1945810092">Specification</strong></p>
|
||||
</th>
|
||||
<th align="left" class="cellrowborder" valign="top" width="16.93584905660377%" id="mcps1.3.2.3.2.7.1.4"><p id="cce_10_0847__cce_10_0141_p456402811407">OS</p>
|
||||
</th>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<h1 class="topictitle1">Solution Overview</h1>
|
||||
<div id="body0000001217183655"><div class="section" id="cce_bestpractice_0307__section14709747163418"><h4 class="sectiontitle">Application Scenarios</h4><p id="cce_bestpractice_0307__p17455125113810">Containers are growing in popularity and Kubernetes simplifies containerized deployment. Many companies choose to build their own Kubernetes clusters. However, the O&M workload of on-premises clusters is heavy, and O&M personnel need to configure the management systems and monitoring solutions by themselves. This increases the labor costs while decreasing the efficiency.</p>
|
||||
<p id="cce_bestpractice_0307__p31141322163118">In terms of performance, an on-premises cluster has poor scalability due to its fixed specifications. Auto scaling cannot be implemented in case of traffic surges, which may easily result in the insufficient or waste of cluster resources. In addition, disaster recovery risks are not considered for deploying an on-premises cluster, leading to poor reliability. Once a fault occurs, the entire cluster may fail, resulting in serious production incidents.</p>
|
||||
<p id="cce_bestpractice_0307__p516932813291">Now you can address the preceding challenges by using CCE, a service that allows easy cluster management and flexible scaling, integrated with application service mesh and Helm charts to simplify cluster O&M and reduce operations costs. CCE is easy to use and delivers high performance, security, reliability, openness, and compatibility. This section describes the solution and procedure for migrating on-premises clusters to CCE.</p>
|
||||
<p id="cce_bestpractice_0307__p516932813291">Now you can address the preceding challenges by using CCE, a service that allows easy cluster management and flexible scaling, integrated with Helm charts to simplify cluster O&M and reduce operations costs. CCE is easy to use and delivers high performance, security, reliability, openness, and compatibility. This section describes the solution and procedure for migrating on-premises clusters to CCE.</p>
|
||||
</div>
|
||||
<div class="section" id="cce_bestpractice_0307__section96147345128"><a name="cce_bestpractice_0307__section96147345128"></a><a name="section96147345128"></a><h4 class="sectiontitle">Migration Solution</h4><p id="cce_bestpractice_0307__p68174413595">This section describes a cluster migration solution, which applies to the following types of clusters:</p>
|
||||
<ul id="cce_bestpractice_0307__ul1166104675910"><li id="cce_bestpractice_0307__li16159248145914">Kubernetes clusters built in local IDCs</li><li id="cce_bestpractice_0307__li1695203308">On-premises clusters built using multiple ECSs</li><li id="cce_bestpractice_0307__li489193516016">Cluster services provided by other cloud service providers</li><li id="cce_bestpractice_0307__li1822263117616">CCE clusters that are no longer maintained and cannot be upgraded in place</li></ul>
|
||||
|
||||
BIN
docs/cce/umn/en-us_image_0000001696678850.png
Normal file
BIN
docs/cce/umn/en-us_image_0000001696678850.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 565 B |
BIN
docs/cce/umn/en-us_image_0000001744598325.png
Normal file
BIN
docs/cce/umn/en-us_image_0000001744598325.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/cce/umn/en-us_image_0000001744678489.jpg
Normal file
BIN
docs/cce/umn/en-us_image_0000001744678489.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 744 B |
BIN
docs/cce/umn/en-us_image_0000001758618249.png
Normal file
BIN
docs/cce/umn/en-us_image_0000001758618249.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
docs/cce/umn/en-us_image_0000001942942816.png
Normal file
BIN
docs/cce/umn/en-us_image_0000001942942816.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
BIN
docs/cce/umn/en-us_image_0000002359774578.png
Normal file
BIN
docs/cce/umn/en-us_image_0000002359774578.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 180 B |
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user