Skip to content

Commit b13dc09

Browse files
authored
Adds doc vi/partners (#18203)
* Adds doc vi/partners Signed-off-by: Dao Cong Tien <[email protected]> * Update _index.html
1 parent 9339753 commit b13dc09

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed

content/vi/partners/_index.html

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
---
2+
title: Các đối tác
3+
bigheader: Các đối tác của Kubernetes
4+
abstract: Phát triển hệ sinh thái Kubernetes.
5+
class: gridPage
6+
cid: partners
7+
---
8+
9+
<section id="users">
10+
<main class="main-section">
11+
<h5>Kubernetes phối hợp làm việc với các đối tác để tạo ra một codebase mạnh mẽ hỗ trợ một loạt các nền tảng bổ sung.</h5>
12+
<div class="col-container">
13+
<div class="col-nav">
14+
<center>
15+
<h5>
16+
<b>Các nhà cung cấp dịch vụ được chứng nhận bởi Kubernetes (KCSP)</b>
17+
</h5>
18+
<br>Các nhà cung cấp dịch vụ được chứng nhận với bề dày kinh nghiệm sẽ trợ giúp các tổ chức kinh doanh, các công ty ứng dụng Kubernetes nhanh chóng.
19+
<br><br><br>
20+
<button id="kcsp" class="button" onClick="updateSrc(this.id)">Xem các đối tác KCSP</button>
21+
<br><br>Bạn muốn trở thành một <a href="https://www.cncf.io/certification/kcsp/">KCSP</a>?
22+
</center>
23+
</div>
24+
<div class="col-nav">
25+
<center>
26+
<h5>
27+
<b>Các nhà phân phối Kubernetes, dịch vụ hosting, dịch vụ cài đặt</b>
28+
</h5>Tiêu chuẩn tương thích về phần mềm bảo đảm rằng các phiên bản Kubernetes từ các nhà cung cấp sẽ hỗ trợ các bộ API được yêu cầu bởi khách hàng.
29+
<br><br><br>
30+
<button id="conformance" class="button" onClick="updateSrc(this.id)">Xem các đối tác Conformance</button>
31+
<br><br>Bạn muốn trở thành một <a href="https://www.cncf.io/certification/software-conformance/">Kubernetes Certified</a>?
32+
</center>
33+
</div>
34+
<div class="col-nav">
35+
<center>
36+
<h5><b>Các đối tác đào tạo Kubernetes (KTP)</b></h5>
37+
<br>Các đối tác đào tạo được chứng nhận đã và đang sở hữu bề dày kinh nghiệm trong lĩnh vực đám mây.
38+
<br><br><br><br>
39+
<button id="ktp" class="button" onClick="updateSrc(this.id)">Xem các đối tác KTP</button>
40+
<br><br>Bạn muốn trở thành một <a href="https://www.cncf.io/certification/training/">KTP</a>?
41+
</center>
42+
</div>
43+
</div>
44+
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
45+
<script type="text/javascript">
46+
47+
var defaultLink = "https://landscape.cncf.io/category=kubernetes-certified-service-provider&format=card-mode&grouping=category&embed=yes";
48+
var firstLink = "https://landscape.cncf.io/category=certified-kubernetes-distribution,certified-kubernetes-hosted,certified-kubernetes-installer&format=card-mode&grouping=category&embed=yes";
49+
var secondLink = "https://landscape.cncf.io/category=kubernetes-training-partner&format=card-mode&grouping=category&embed=yes";
50+
51+
function updateSrc(buttonId) {
52+
if (buttonId == "kcsp") {
53+
$("#landscape").attr("src",defaultLink);
54+
window.location.hash = "#kcsp";
55+
}
56+
if (buttonId == "conformance") {
57+
$("#landscape").attr("src",firstLink);
58+
window.location.hash = "#conformance";
59+
}
60+
if (buttonId == "ktp") {
61+
$("#landscape").attr("src",secondLink);
62+
window.location.hash = "#ktp";
63+
}
64+
}
65+
66+
// Automatically load the correct iframe based on the URL fragment
67+
document.addEventListener('DOMContentLoaded', function() {
68+
var showContent = "kcsp";
69+
if (window.location.hash) {
70+
console.log('hash is:', window.location.hash.substring(1));
71+
showContent = window.location.hash.substring(1);
72+
}
73+
updateSrc(showContent);
74+
});
75+
</script>
76+
<body>
77+
<div id="frameHolder">
78+
<iframe id="landscape" title="CNCF Landscape" frameBorder="0" scrolling="no" style="width: 1px; min-width: 100%" src=""></iframe>
79+
<script src="https://landscape.cncf.io/iframeResizer.js"></script>
80+
</div>
81+
</body>
82+
</main>
83+
</section>
84+
85+
<style>
86+
{{< include "partner-style.css" >}}
87+
</style>
88+
89+
<script>
90+
{{< include "partner-script.js" >}}
91+
</script>

0 commit comments

Comments
 (0)