Merge pull request #1547 from ankurshukla/master
Updates to the ISV label and adding 2 new ISV partners
This commit is contained in:
@@ -126,6 +126,20 @@
|
|||||||
link: 'https://github.com/nuagenetworks/nuage-kubernetes',
|
link: 'https://github.com/nuagenetworks/nuage-kubernetes',
|
||||||
blurb: 'The Nuage SDN platform provides policy-based networking between Kubernetes Pods and non-Kubernetes environments with visibility and security monitoring.'
|
blurb: 'The Nuage SDN platform provides policy-based networking between Kubernetes Pods and non-Kubernetes environments with visibility and security monitoring.'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 0,
|
||||||
|
name: 'Sematext',
|
||||||
|
logo: 'sematext',
|
||||||
|
link: 'https://sematext.com/kubernetes/',
|
||||||
|
blurb: 'Logging & Monitoring: Automatic collection and processing of Metrics, Events and Logs for auto-discovered pods and Kubernetes nodes.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 0,
|
||||||
|
name: 'Diamanti',
|
||||||
|
logo: 'diamanti',
|
||||||
|
link: 'https://www.diamanti.com/products/',
|
||||||
|
blurb: 'Diamanti deploys containers with guaranteed performance using Kubernetes in the first hyperconverged appliance purpose built for containerized applications.'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: 1,
|
type: 1,
|
||||||
name: 'Apprenda',
|
name: 'Apprenda',
|
||||||
@@ -176,28 +190,28 @@
|
|||||||
blurb: 'Jetstack is an organisation focused entirely on Kubernetes. They will help you to get the most out of Kubernetes through expert professional services and open source tooling. Get in touch, and accelerate your project.'
|
blurb: 'Jetstack is an organisation focused entirely on Kubernetes. They will help you to get the most out of Kubernetes through expert professional services and open source tooling. Get in touch, and accelerate your project.'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
var isvContainer = document.getElementById('isvContainer')
|
var isvContainer = document.getElementById('isvContainer')
|
||||||
var servContainer = document.getElementById('servContainer')
|
var servContainer = document.getElementById('servContainer')
|
||||||
|
|
||||||
var sorted = partners.sort(function (a, b) {
|
var sorted = partners.sort(function (a, b) {
|
||||||
if (a.name > b.name) return 1
|
if (a.name > b.name) return 1
|
||||||
if (a.name < b.name) return -1
|
if (a.name < b.name) return -1
|
||||||
return 0
|
return 0
|
||||||
})
|
})
|
||||||
|
|
||||||
sorted.forEach(function (obj) {
|
sorted.forEach(function (obj) {
|
||||||
var box = document.createElement('div')
|
var box = document.createElement('div')
|
||||||
box.className = 'partner-box'
|
box.className = 'partner-box'
|
||||||
|
|
||||||
var img = document.createElement('img')
|
var img = document.createElement('img')
|
||||||
img.src = '/images/square-logos/' + obj.logo + '.png'
|
img.src = '/images/square-logos/' + obj.logo + '.png'
|
||||||
|
|
||||||
var div = document.createElement('div')
|
var div = document.createElement('div')
|
||||||
|
|
||||||
var p = document.createElement('p')
|
var p = document.createElement('p')
|
||||||
p.textContent = obj.blurb
|
p.textContent = obj.blurb
|
||||||
|
|
||||||
var link = document.createElement('a')
|
var link = document.createElement('a')
|
||||||
link.href = obj.link
|
link.href = obj.link
|
||||||
link.target = '_blank'
|
link.target = '_blank'
|
||||||
@@ -208,7 +222,7 @@
|
|||||||
|
|
||||||
box.appendChild(img)
|
box.appendChild(img)
|
||||||
box.appendChild(div)
|
box.appendChild(div)
|
||||||
|
|
||||||
var container = obj.type ? servContainer : isvContainer
|
var container = obj.type ? servContainer : isvContainer
|
||||||
container.appendChild(box)
|
container.appendChild(box)
|
||||||
})
|
})
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
+1
-1
@@ -15,7 +15,7 @@ title: Partners
|
|||||||
<section id="users">
|
<section id="users">
|
||||||
<main>
|
<main>
|
||||||
<h5>We are working with a broad group of partners who contribute to the Kubernetes core codebase, making it stronger and richer. There partners create a vibrant Kubernetes ecosystem supporting a spectrum of complementing platforms, from open source solutions to market-leading technologies.</h5>
|
<h5>We are working with a broad group of partners who contribute to the Kubernetes core codebase, making it stronger and richer. There partners create a vibrant Kubernetes ecosystem supporting a spectrum of complementing platforms, from open source solutions to market-leading technologies.</h5>
|
||||||
<h3>ISV Partners</h3>
|
<h3>Technology Partners</h3>
|
||||||
<div id="isvContainer"></div>
|
<div id="isvContainer"></div>
|
||||||
<h3>Services Partners</h3>
|
<h3>Services Partners</h3>
|
||||||
<div id="servContainer"></div>
|
<div id="servContainer"></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user