2016-02-29 23:17:22 +00:00
{% for thistoc in site.data.globals.tocs %}{% if foundTOC %}{% break %}{% else %}{% assign tree = site.data[thistoc].toc %}{% include tocsearch.html %}{% endif %}{% endfor %}
2016-02-24 21:47:57 +00:00
{% if page.title %}{% assign title=page.title %}{% endif %}
2016-02-24 23:32:45 +00:00
<!Doctype html>
< html id = "docs" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2016-02-25 21:45:28 +00:00
< link rel = "shortcut icon" type = "image/png" href = "/images/favicon.png" >
2016-02-24 23:32:45 +00:00
< link href = 'https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' rel = 'stylesheet' type = 'text/css' >
< link href = 'https://fonts.googleapis.com/css?family=Roboto+Mono' rel = 'stylesheet' type = 'text/css' >
< link rel = "stylesheet" href = "/css/styles.css" / >
2016-02-25 00:13:45 +00:00
< script src = "/js/jquery-2.2.0.min.js" > < / script >
2016-02-24 23:32:45 +00:00
< script src = "/js/script.js" > < / script >
< title > Kubernetes - {{ title }}< / title >
< / head >
< body >
< div id = "cellophane" onclick = "kub.toggleMenu()" > < / div >
< header >
< a href = "/" class = "logo" > < / a >
< div class = "nav-buttons" data-auto-burger = "primary" >
<!-- <a href="/get - started" class="button" id="tryKubernetes">Try Kubernetes</a> -->
< button id = "hamburger" onclick = "kub.toggleMenu()" data-auto-burger-exclude > < div > < / div > < / button >
< / div >
< nav id = "mainNav" >
< main data-auto-burger = "primary" >
< div class = "nav-box" >
< h3 > < a href = "" > Get Started< / a > < / h3 >
< p > Built for a multi-cloud world, public, private or hybrid. Seamlessly roll out new features.< / p >
< / div >
< div class = "nav-box" >
< h3 > < a href = "" > Documentation< / a > < / h3 >
< p > Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. < / p >
< / div >
< div class = "nav-box" >
< h3 > < a href = "" > Community< / a > < / h3 >
< p > Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. < / p >
< / div >
< div class = "nav-box" >
< h3 > < a href = "" > Blog< / a > < / h3 >
< p > Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in. < / p >
< / div >
< / main >
< main data-auto-burger = "primary" >
< div class = "left" >
< h5 class = "github-invite" > Interested in hacking on the core Kubernetes code base?< / h5 >
< a href = "" class = "button" > View On Github< / a >
< / div >
< div class = "right" >
< h5 class = "github-invite" > Explore the community< / h5 >
< div class = "social" >
2016-03-02 20:42:09 +00:00
< a href = "https://twitter.com/kubernetesio" class = "twitter" > < span > twitter< / span > < / a >
2016-02-24 23:32:45 +00:00
< a href = "https://github.com/kubernetes/kubernetes" class = "github" > < span > Github< / span > < / a >
< a href = "http://slack.k8s.io/" class = "slack" > < span > Slack< / span > < / a >
< a href = "http://stackoverflow.com/questions/tagged/kubernetes" class = "stack-overflow" > < span > stackoverflow< / span > < / a >
< a href = "https://groups.google.com/forum/#!forum/google-containers" class = "mailing-list" > < span > Mailing List< / span > < / a >
< / div >
< / div >
< div class = "clear" style = "clear: both" > < / div >
< / main >
< / nav >
< / header >
<!-- HERO -->
2016-02-09 02:28:54 +00:00
< section id = "hero" class = "light-text" >
2016-02-29 23:17:22 +00:00
< h1 > {{ site.data[foundTOC].bigheader }}< / h1 >
< h5 > {{ site.data[foundTOC].abstract }}< / h5 >
2016-02-09 02:28:54 +00:00
< div id = "vendorStrip" class = "light-text" >
< ul >
2016-02-29 23:17:22 +00:00
< li > < a href = "/docs/" > GUIDES< / a > < / li >
< li > < a href = "/docs/reference" > REFERENCE< / a > < / li >
< li > < a href = "/docs/samples" > SAMPLES< / a > < / li >
< li > < a href = "/docs/troubleshooting/" > SUPPORT< / a > < / li >
2016-03-02 03:43:10 +00:00
< / ul > <!--
2016-02-09 20:18:14 +00:00
< div class = "dropdown" >
< div class = "readout" > < / div >
2016-02-24 23:32:45 +00:00
< a href = "/v1.1/" > Version 1.1< / a >
< a href = "/v1.2/" > Version 1.2< / a >
2016-03-02 03:43:10 +00:00
< / div > -->
2016-03-02 02:17:31 +00:00
< input type = "text" id = "search" placeholder = "Search" onkeydown = "if (event.keyCode==13) window.location.replace('/docs/search/?q=' + this.value)" >
2016-02-09 02:28:54 +00:00
< / div >
< / section >
2016-02-24 23:32:45 +00:00
< section id = "encyclopedia" >
2016-02-09 02:28:54 +00:00
< div id = "docsToc" >
2016-02-09 21:23:33 +00:00
< div class = "pi-accordion" >
2016-02-29 23:17:22 +00:00
{% assign tree = site.data[foundTOC].toc %}{% include tree.html %}
2016-02-09 21:23:33 +00:00
< / div > <!-- /pi - accordion -->
2016-02-24 23:32:45 +00:00
< / div > <!-- /docsToc -->
2016-03-02 07:45:06 +00:00
< div id = "docsContent" >
< p > < a href = "/docs/editdocs#{{ page.path }}" id = "editPageButton" > Edit This Page< / a > < / p >
2016-02-24 21:47:57 +00:00
< h1 > {{ title }}< / h1 >
2016-02-09 02:28:54 +00:00
{{ content }}
2016-02-11 10:15:49 +00:00
< p > < a href = "" > < img src = "https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/{{ page.path }}?pixel" alt = "Analytics" / > < / a >
2016-03-02 07:45:06 +00:00
< div id = "pd_rating_holder_8345992" > < / div >
< script type = "text/javascript" >
PDRTJS_settings_8345992 = {
"id" : "8345992",
"unique_id" : "{{page.url}}",
"title" : "{{title}}",
"permalink" : "http://kubernetes.github.io{{page.url}}"
};
(function(d,c,j){if(!document.getElementById(j)){var pd=d.createElement(c),s;pd.id=j;pd.src=('https:'==document.location.protocol)?'https://polldaddy.com/js/rating/rating.js':'http://i0.poll.fm/js/rating/rating.js';s=document.getElementsByTagName(c)[0];s.parentNode.insertBefore(pd,s);}}(document,'script','pd-rating-js'));
< / script >
2016-02-09 02:28:54 +00:00
< / div >
2016-02-09 17:29:27 +00:00
< / section >
2016-02-24 23:32:45 +00:00
< footer >
< main class = "light-text" >
< nav >
< a href = "/getting-started.html" > Getting Started< / a >
< a href = "/docs.html" > Documentation< / a >
< a href = "http://blog.kubernetes.io/" > Blog< / a >
< a href = "/foobang.html" > Community< / a >
< / nav >
< div class = "social" >
< a href = "https://twitter.com/kubernetesio" class = "twitter" > < span > twitter< / span > < / a >
< a href = "https://github.com/kubernetes/kubernetes" class = "github" > < span > Github< / span > < / a >
< a href = "http://slack.k8s.io/" class = "slack" > < span > Slack< / span > < / a >
< a href = "http://stackoverflow.com/questions/tagged/kubernetes" class = "stack-overflow" > < span > stackoverflow< / span > < / a >
< a href = "https://groups.google.com/forum/#!forum/google-containers" class = "mailing-list" > < span > Mailing List< / span > < / a >
2016-02-25 23:56:23 +00:00
< label for = "wishField" > I wish this page < input type = "text" id = "wishField" name = "wishField" placeholder = "enter your wish" > < / label >
2016-02-24 23:32:45 +00:00
< / div >
< div class = "center" > © 2016 Kubernetes< / div >
< / main >
< / footer >
2016-02-25 18:33:20 +00:00
< style >
.cse .gsc-control-cse, .gsc-control-cse {
padding: 0;
}
.gsc-above-wrapper-area {
border-bottom: 0;
}
< / style >
2016-02-24 23:32:45 +00:00
< / body >
< / html >