Skip to content

Commit e8b4f5b

Browse files
committed
Regenerate hugo site
1 parent 9ae7e3d commit e8b4f5b

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

docs/develop/develop-quickstart/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
cd kpt-functions-sdk/ts/hello-world Install all dependencies:" />
2929
<meta property="og:type" content="article" />
3030
<meta property="og:url" content="https://googlecontainertools.github.io/kpt-functions-sdk/develop/develop-quickstart/" />
31-
<meta property="article:modified_time" content="2020-03-26T19:13:13-07:00" /><meta property="og:site_name" content="Kpt Functions SDK" />
31+
<meta property="article:modified_time" content="2020-03-26T19:18:35-07:00" /><meta property="og:site_name" content="Kpt Functions SDK" />
3232
<meta itemprop="name" content="Quickstart">
3333
<meta itemprop="description" content="This quickstart will get you started developing a KPT Function with the TypeScript SDK, using an existing Hello World package.
3434
Prerequisites System Requirements Currently supported platforms: amd64 Linux/Mac
3535
Setting Up Your Local Environment Install node Install docker Install kpt and add it to $PATH Hello World Package Get the hello-world package:
3636
git clone --depth 1 https://github.com/GoogleContainerTools/kpt-functions-sdk.git All subsequent commands are run from the hello-world directory:
3737
cd kpt-functions-sdk/ts/hello-world Install all dependencies:">
38-
<meta itemprop="dateModified" content="2020-03-26T19:13:13-07:00" />
38+
<meta itemprop="dateModified" content="2020-03-26T19:18:35-07:00" />
3939
<meta itemprop="wordCount" content="188">
4040

4141

@@ -299,7 +299,7 @@ <h2 id="hello-world-package">Hello World Package</h2>
299299
<li>
300300
<p>Try modifying the function in <code>src/label_namespace.ts</code> to perform other operations
301301
on <code>example-configs</code>, then repeat step 4.</p>
302-
<p>The function should implement the <code>KptFunc</code> interface <a href="https://googlecontainertools.github.io/kpt-functions-sdk/docs/api/interfaces/_types_.kptfunc.html">documented here</a>.</p>
302+
<p>The function should implement the <code>KptFunc</code> interface <a href="https://googlecontainertools.github.io/kpt-functions-sdk/api/interfaces/_types_.kptfunc.html">documented here</a>.</p>
303303
<p>Take a look at <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/tree/master/ts/demo-functions/src">these example functions</a> to better understand how to use
304304
the <code>kpt-functions</code> SDK.</p>
305305
</li>
@@ -312,7 +312,7 @@ <h2 id="next-steps">Next Steps</h2>
312312

313313

314314

315-
<div class="text-muted mt-5 pt-3 border-top">Last modified March 26, 2020: <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/commit/27293fab8445bb7c706516f58d5b7117ec651000">Fix links (27293fa)</a>
315+
<div class="text-muted mt-5 pt-3 border-top">Last modified March 26, 2020: <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/commit/da23d25ce2cc8a2f9886e26ab76168f6124e7993">Minor doc sites changes. (#129) (da23d25)</a>
316316
</div>
317317
</div>
318318

docs/develop/develop/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
Setting Up Your Local Environment Install node The SDK requires npm version 6 or higher. If installing node from binaries (i.e. without a package manager), follow these installation instructions. Install docker Your Kubernetes Cluster For the type generation functionality to work, you need a Kubernetes cluster with the CRD OpenAPI Publishing feature which is beta with Kubernetes 1." />
2727
<meta property="og:type" content="article" />
2828
<meta property="og:url" content="https://googlecontainertools.github.io/kpt-functions-sdk/develop/develop/" />
29-
<meta property="article:modified_time" content="2020-03-26T19:10:44-07:00" /><meta property="og:site_name" content="Kpt Functions SDK" />
29+
<meta property="article:modified_time" content="2020-03-26T19:18:35-07:00" /><meta property="og:site_name" content="Kpt Functions SDK" />
3030
<meta itemprop="name" content="Complete User Guide">
3131
<meta itemprop="description" content="This guide will walk you through developing a KPT function using the Typescript SDK.
3232
Setup System Requirements Currently supported platforms: amd64 Linux/Mac
3333
Setting Up Your Local Environment Install node The SDK requires npm version 6 or higher. If installing node from binaries (i.e. without a package manager), follow these installation instructions. Install docker Your Kubernetes Cluster For the type generation functionality to work, you need a Kubernetes cluster with the CRD OpenAPI Publishing feature which is beta with Kubernetes 1.">
34-
<meta itemprop="dateModified" content="2020-03-26T19:10:44-07:00" />
34+
<meta itemprop="dateModified" content="2020-03-26T19:18:35-07:00" />
3535
<meta itemprop="wordCount" content="785">
3636

3737

@@ -360,7 +360,7 @@ <h4 id="using-a-gke-cluster">Using a GKE cluster</h4>
360360
<h2 id="implement-the-function">Implement the function</h2>
361361
<p>You can now start implementing the function using your favorite IDE, e.g. <a href="https://code.visualstudio.com/">VSCode</a>:</p>
362362
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">code .
363-
</code></pre></div><p>In <code>src/my_func.ts</code>, implement the <code>KptFunc</code> interface <a href="https://googlecontainertools.github.io/kpt-functions-sdk/docs/api/interfaces/_types_.kptfunc.html">documented here</a>.</p>
363+
</code></pre></div><p>In <code>src/my_func.ts</code>, implement the <code>KptFunc</code> interface <a href="https://googlecontainertools.github.io/kpt-functions-sdk/api/interfaces/_types_.kptfunc.html">documented here</a>.</p>
364364
<p>Take a look at <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/tree/master/ts/demo-functions/src">these example functions</a> to better understand how to use
365365
<code>kpt-functions</code> library. These functions are available as container images documented in the <a href="https://googlecontainertools.github.io/kpt-functions-catalog/">catalog</a>.</p>
366366
<p>Once you&rsquo;ve written some code, build the package with:</p>
@@ -409,7 +409,7 @@ <h2 id="implement-the-function">Implement the function</h2>
409409

410410

411411

412-
<div class="text-muted mt-5 pt-3 border-top">Last modified March 26, 2020: <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/commit/433f3f4a9c6d2c31074fe48ecb574b3be3554d98">Minor doc sites changes. (433f3f4)</a>
412+
<div class="text-muted mt-5 pt-3 border-top">Last modified March 26, 2020: <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/commit/da23d25ce2cc8a2f9886e26ab76168f6124e7993">Minor doc sites changes. (#129) (da23d25)</a>
413413
</div>
414414
</div>
415415

docs/run/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ <h2 id="next-steps">Next Steps</h2>
429429

430430

431431

432-
<div class="text-muted mt-5 pt-3 border-top">Last modified March 26, 2020: <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/commit/27293fab8445bb7c706516f58d5b7117ec651000">Fix links (27293fa)</a>
432+
<div class="text-muted mt-5 pt-3 border-top">Last modified March 26, 2020: <a href="https://github.com/GoogleContainerTools/kpt-functions-sdk/commit/da23d25ce2cc8a2f9886e26ab76168f6124e7993">Minor doc sites changes. (#129) (da23d25)</a>
433433
</div>
434434
</div>
435435

docs/sitemap.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99

1010
<url>
1111
<loc>https://googlecontainertools.github.io/kpt-functions-sdk/develop/develop-quickstart/</loc>
12-
<lastmod>2020-03-26T19:13:13-07:00</lastmod>
12+
<lastmod>2020-03-26T19:18:35-07:00</lastmod>
1313
</url>
1414

1515
<url>
1616
<loc>https://googlecontainertools.github.io/kpt-functions-sdk/develop/develop/</loc>
17-
<lastmod>2020-03-26T19:10:44-07:00</lastmod>
17+
<lastmod>2020-03-26T19:18:35-07:00</lastmod>
1818
</url>
1919

2020
<url>
@@ -29,7 +29,7 @@
2929

3030
<url>
3131
<loc>https://googlecontainertools.github.io/kpt-functions-sdk/run/</loc>
32-
<lastmod>2020-03-26T19:13:13-07:00</lastmod>
32+
<lastmod>2020-03-26T19:18:35-07:00</lastmod>
3333
</url>
3434

3535
<url>

site/content/en/develop/develop-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ Currently supported platforms: amd64 Linux/Mac
8080
[install-docker]: https://docs.docker.com/v17.09/engine/installation
8181
[download-kpt]: https://googlecontainertools.github.io/kpt/installation/
8282
[demo-funcs]: https://github.com/GoogleContainerTools/kpt-functions-sdk/tree/master/ts/demo-functions/src
83-
[api-kptfunc]: https://googlecontainertools.github.io/kpt-functions-sdk/docs/api/interfaces/_types_.kptfunc.html
83+
[api-kptfunc]: https://googlecontainertools.github.io/kpt-functions-sdk/api/interfaces/_types_.kptfunc.html

site/content/en/develop/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ npm run kpt:docker-build -- --tag=latest
236236
[demo-funcs]: https://github.com/GoogleContainerTools/kpt-functions-sdk/tree/master/ts/demo-functions/src
237237
[label-namespace]: https://github.com/GoogleContainerTools/kpt-functions-sdk/tree/master/ts/demo-functions/src/label_namespace.ts
238238
[catalog]: https://googlecontainertools.github.io/kpt-functions-catalog/
239-
[api-kptfunc]: https://googlecontainertools.github.io/kpt-functions-sdk/docs/api/interfaces/_types_.kptfunc.html
239+
[api-kptfunc]: https://googlecontainertools.github.io/kpt-functions-sdk/api/interfaces/_types_.kptfunc.html
240240
[vscode]: https://code.visualstudio.com/
241241
[npm-packages]: https://github.com/GoogleContainerTools/kpt-functions-sdk/packages
242242
[download-node]: https://nodejs.org/en/download/

0 commit comments

Comments
 (0)