2016-09-30 17:21:03 +00:00
---
title: Partners
2018-05-05 16:00:51 +00:00
bigheader: Kubernetes Partners
abstract: Growing the Kubernetes ecosystem.
2016-12-15 20:13:46 +00:00
class: gridPage
2016-12-15 20:35:33 +00:00
cid: partners
2016-09-30 17:21:03 +00:00
---
< section id = "users" >
2017-03-23 01:13:14 +00:00
< main >
2017-09-11 17:01:43 +00:00
< h5 > Kubernetes works with partners to create a strong, vibrant codebase that supports a spectrum of complementary platforms.< / h5 >
2017-11-13 16:30:47 +00:00
< div class = "col-container" >
2018-11-29 13:28:01 +00:00
< div class = "col-nav" >
< center >
< h5 >
< b > Kubernetes Certified Service Providers< / b >
< / h5 >
< br > Vetted service providers with deep experience helping enterprises successfully adopt Kubernetes.
< br > < br > < br >
< button id = "kcsp" class = "button" onClick = "updateSrc(this.id)" > See KCSP Partners< / button >
< br > < br > Interested in becoming a < a href = "https://www.cncf.io/certification/kcsp/" > KCSP< / a > ?
< / center >
< / div >
< div class = "col-nav" >
< center >
< h5 >
< b > Certified Kubernetes Distributions, Hosted Platforms, and Installers< / b >
< / h5 > Software conformance ensures that every vendor’ s version of Kubernetes supports the required APIs.
< br > < br > < br >
< button id = "conformance" class = "button" onClick = "updateSrc(this.id)" > See Conformance Partners< / button >
2019-05-16 12:05:46 +00:00
< br > < br > Interested in becoming < a href = "https://www.cncf.io/certification/software-conformance/" > Kubernetes Certified< / a > ?
2018-11-29 13:28:01 +00:00
< / center >
< / div >
< div class = "col-nav" >
< center >
< h5 > < b > Kubernetes Training Partners< / b > < / h5 >
< br > Vetted training providers who have deep experience in cloud native technology training.
< br > < br > < br > < br >
< button id = "ktp" class = "button" onClick = "updateSrc(this.id)" > See KTP Partners< / button >
< br > < br > Interested in becoming a < a href = "https://www.cncf.io/certification/training/" > KTP< / a > ?
< / center >
< / div >
2017-11-02 15:55:15 +00:00
< / div >
2018-06-15 17:12:28 +00:00
< script src = "https://code.jquery.com/jquery-3.3.1.min.js" integrity = "sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin = "anonymous" > < / script >
< script type = "text/javascript" >
2019-01-28 22:53:19 +00:00
var defaultLink = "https://landscape.cncf.io/category=kubernetes-certified-service-provider&format=card-mode&grouping=category&embed=yes";
var firstLink = "https://landscape.cncf.io/category=certified-kubernetes-distribution,certified-kubernetes-hosted,certified-kubernetes-installer&format=card-mode&grouping=category&embed=yes";
var secondLink = "https://landscape.cncf.io/category=kubernetes-training-partner&format=card-mode&grouping=category&embed=yes";
2018-06-15 17:12:28 +00:00
function updateSrc(buttonId) {
2018-07-18 23:35:43 +00:00
if (buttonId == "kcsp") {
2018-06-15 17:12:28 +00:00
$("#landscape").attr("src",defaultLink);
2018-07-18 23:35:43 +00:00
window.location.hash = "#kcsp";
2018-06-15 17:12:28 +00:00
}
2018-07-18 23:35:43 +00:00
if (buttonId == "conformance") {
2018-06-15 17:12:28 +00:00
$("#landscape").attr("src",firstLink);
2018-07-18 23:35:43 +00:00
window.location.hash = "#conformance";
2018-06-15 17:12:28 +00:00
}
2018-07-18 23:35:43 +00:00
if (buttonId == "ktp") {
2018-06-15 17:12:28 +00:00
$("#landscape").attr("src",secondLink);
2018-07-18 23:35:43 +00:00
window.location.hash = "#ktp";
2018-06-15 17:12:28 +00:00
}
}
2018-07-18 23:35:43 +00:00
// Automatically load the correct iframe based on the URL fragment
document.addEventListener('DOMContentLoaded', function() {
var showContent = "kcsp";
if (window.location.hash) {
console.log('hash is:', window.location.hash.substring(1));
showContent = window.location.hash.substring(1);
}
updateSrc(showContent);
});
2018-06-15 17:12:28 +00:00
< / script >
< body >
< div id = "frameHolder" >
2019-10-06 05:23:09 +00:00
< iframe id = "landscape" title = "CNCF Landscape" frameBorder = "0" scrolling = "no" style = "width: 1px; min-width: 100%" src = "" > < / iframe >
2019-02-06 16:35:02 +00:00
< script src = "https://landscape.cncf.io/iframeResizer.js" > < / script >
2018-06-15 17:12:28 +00:00
< / div >
< / body >
2017-03-23 01:13:14 +00:00
< / main >
2016-09-30 17:21:03 +00:00
< / section >
2016-10-20 23:19:21 +00:00
< style >
2018-05-05 16:00:51 +00:00
{{< include " partner-style . css " > }}
2016-10-20 23:19:21 +00:00
< / style >
< script >
2018-05-05 16:00:51 +00:00
{{< include " partner-script . js " > }}
2017-11-18 02:36:59 +00:00
< / script >