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-03-06 05:52:56 +00:00
{% for override in site.data.overrides.overrides %}{% if page.path contains override.path %}{% assign notitle = "true" %}{% endif %}{% endfor %}
2016-02-24 23:32:45 +00:00
<!Doctype html>
< html id = "docs" >
2016-03-05 00:02:00 +00:00
{% include head-header.html %}
2016-02-24 23:32:45 +00:00
<!-- 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-03-06 05:52:56 +00:00
{% if notitle != "true" %}< h1 > {{ title }}< / h1 > {% endif %}
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
2016-03-05 00:02:00 +00:00
{% include footer.html %}
2016-02-24 23:32:45 +00:00
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-03-04 21:50:51 +00:00
< script >
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
2016-02-25 18:33:20 +00:00
2016-03-04 21:50:51 +00:00
ga('create', 'UA-36037335-10', 'auto');
ga('send', 'pageview');
< / script >
<!-- Start of AnswerDash script --> < script > var AnswerDash ; ! function ( e , t , n , s , a ) { if ( ! t . getElementById ( s ) ) { var i , r = t . createElement ( n ) , c = t . getElementsByTagName ( n ) [ 0 ] ; e [ a ] || ( i = e [ a ] = function ( ) { i . _ _oninit . push ( arguments ) } , i . _ _oninit = [ ] ) , r . type = "text/javascript" , r . async = ! 0 , r . src = "https://p1.answerdash.com/answerdash.min.js?siteid=756" , r . setAttribute ( "id" , s ) , c . parentNode . insertBefore ( r , c ) } } ( window , document , "script" , "answerdash-script" , "AnswerDash" ) ; < / script > <!-- End of AnswerDash script -->
2016-02-24 23:32:45 +00:00
< / body >
< / html >