mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-03 18:27:49 +00:00
Dockerized raml2html and regenerated kubernetes.html.
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
<title>Kubernetes API documentation</title>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="generator" content="https://github.com/kevinrenskers/raml2html">
|
||||
|
||||
<script type="text/javascript">
|
||||
var protocol = ((document.location.protocol === 'https:') ? 'https:': 'http:');
|
||||
@@ -365,7 +366,7 @@ implemented, either.</p>
|
||||
|
||||
<h3>Body</h3>
|
||||
|
||||
<p><strong>Type: json/application</strong></p>
|
||||
<p><strong>Type: application/json</strong></p>
|
||||
|
||||
|
||||
<strong>Schema:</strong>
|
||||
@@ -373,7 +374,7 @@ implemented, either.</p>
|
||||
"<span class="hljs-attribute">$schema</span>": <span class="hljs-value"><span class="hljs-string">"http://json-schema.org/draft-03/schema"</span></span>,
|
||||
"<span class="hljs-attribute">type</span>": <span class="hljs-value"><span class="hljs-string">"object"</span></span>,
|
||||
"<span class="hljs-attribute">required</span>": <span class="hljs-value"><span class="hljs-literal">false</span></span>,
|
||||
"<span class="hljs-attribute">description</span>": <span class="hljs-value"><span class="hljs-string">"Pod resource. A pod corresponds to a colocated group of [Docker containers](http://docker.io)."</span></span>,
|
||||
"<span class="hljs-attribute">description</span>": <span class="hljs-value"><span class="hljs-string">"Pod resource. A pod corresponds to a co-located group of [Docker containers](http://docker.io)."</span></span>,
|
||||
"<span class="hljs-attribute">properties</span>": <span class="hljs-value">{
|
||||
"<span class="hljs-attribute">kind</span>": <span class="hljs-value">{
|
||||
"<span class="hljs-attribute">type</span>": <span class="hljs-value"><span class="hljs-string">"string"</span></span>,
|
||||
@@ -661,7 +662,7 @@ implemented, either.</p>
|
||||
|
||||
<h3>Body</h3>
|
||||
|
||||
<p><strong>Type: json/application</strong></p>
|
||||
<p><strong>Type: application/json</strong></p>
|
||||
|
||||
|
||||
<strong>Schema:</strong>
|
||||
@@ -669,7 +670,7 @@ implemented, either.</p>
|
||||
"<span class="hljs-attribute">$schema</span>": <span class="hljs-value"><span class="hljs-string">"http://json-schema.org/draft-03/schema"</span></span>,
|
||||
"<span class="hljs-attribute">type</span>": <span class="hljs-value"><span class="hljs-string">"object"</span></span>,
|
||||
"<span class="hljs-attribute">required</span>": <span class="hljs-value"><span class="hljs-literal">false</span></span>,
|
||||
"<span class="hljs-attribute">description</span>": <span class="hljs-value"><span class="hljs-string">"Pod resource. A pod corresponds to a colocated group of [Docker containers](http://docker.io)."</span></span>,
|
||||
"<span class="hljs-attribute">description</span>": <span class="hljs-value"><span class="hljs-string">"Pod resource. A pod corresponds to a co-located group of [Docker containers](http://docker.io)."</span></span>,
|
||||
"<span class="hljs-attribute">properties</span>": <span class="hljs-value">{
|
||||
"<span class="hljs-attribute">kind</span>": <span class="hljs-value">{
|
||||
"<span class="hljs-attribute">type</span>": <span class="hljs-value"><span class="hljs-string">"string"</span></span>,
|
||||
@@ -1037,7 +1038,7 @@ implemented, either.</p>
|
||||
|
||||
<h3>Body</h3>
|
||||
|
||||
<p><strong>Type: json/application</strong></p>
|
||||
<p><strong>Type: application/json</strong></p>
|
||||
|
||||
|
||||
<strong>Schema:</strong>
|
||||
@@ -1296,7 +1297,7 @@ implemented, either.</p>
|
||||
|
||||
<h3>Body</h3>
|
||||
|
||||
<p><strong>Type: json/application</strong></p>
|
||||
<p><strong>Type: application/json</strong></p>
|
||||
|
||||
|
||||
<strong>Schema:</strong>
|
||||
@@ -1625,7 +1626,7 @@ implemented, either.</p>
|
||||
|
||||
<h3>Body</h3>
|
||||
|
||||
<p><strong>Type: json/application</strong></p>
|
||||
<p><strong>Type: application/json</strong></p>
|
||||
|
||||
|
||||
<strong>Schema:</strong>
|
||||
@@ -1848,7 +1849,7 @@ implemented, either.</p>
|
||||
|
||||
<h3>Body</h3>
|
||||
|
||||
<p><strong>Type: json/application</strong></p>
|
||||
<p><strong>Type: application/json</strong></p>
|
||||
|
||||
|
||||
<strong>Schema:</strong>
|
||||
|
5
api/raml2html.dockerfile
Normal file
5
api/raml2html.dockerfile
Normal file
@@ -0,0 +1,5 @@
|
||||
FROM google/nodejs
|
||||
RUN npm i -g raml2html
|
||||
VOLUME ["/data"]
|
||||
CMD ["-i", "/data/kubernetes.raml", "-o", "/data/kubernetes.html"]
|
||||
ENTRYPOINT ["raml2html"]
|
Reference in New Issue
Block a user