You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: This release comes with a new config version, `v2beta25`. To upgrade your skaffold.yaml, use `skaffold fix`. If you choose not to upgrade, skaffold will auto-upgrade as best as it can.
15
+
16
+
Highlights:
17
+
*`skaffold deploy`, `skaffold render` and `skaffold test` now support the `--images` flag for providing a list of images to run against.
18
+
* The `--images` flag now supports `NAME=TAG` pairs.
19
+
20
+
New Features and Additions:
21
+
* feat: trap SIGUSR1 to dump current stacktrace [#6751](https://github.com/GoogleContainerTools/skaffold/pull/6751)
22
+
* feat: skaffold lint core logic, CLI command+flags, and MVP skaffold.yaml support [#6715](https://github.com/GoogleContainerTools/skaffold/pull/6715)
23
+
24
+
Fixes:
25
+
* fix: fix non-determinism in skaffoldyamls_test.go [#6757](https://github.com/GoogleContainerTools/skaffold/pull/6757)
26
+
* fix: use new stringslice lib [#6752](https://github.com/GoogleContainerTools/skaffold/pull/6752)
27
+
* fix: correctly rewrite debug container entrypoint and bind host port [#6682](https://github.com/GoogleContainerTools/skaffold/pull/6682)
28
+
* Fix new version generation [#6616](https://github.com/GoogleContainerTools/skaffold/pull/6616)
29
+
* fix: panic caused by multiple channel closes [#6714](https://github.com/GoogleContainerTools/skaffold/pull/6714)
Copy file name to clipboardExpand all lines: examples/custom/README.md
+31-23
Original file line number
Diff line number
Diff line change
@@ -20,38 +20,45 @@ This tutorial will demonstrate how Skaffold can build a simple Hello World Go ap
20
20
21
21
First, clone the Skaffold [repo](https://github.com/GoogleContainerTools/skaffold) and navigate to the [custom example](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/custom) for sample code:
For more information about how this works, see the Skaffold custom builder [documentation](https://skaffold.dev/docs/how-tos/builders/#custom-build-script-run-locally).
84
92
85
93
Now, use Skaffold to deploy this application to your Kubernetes cluster:
86
94
87
-
```shell
88
-
$ skaffold run --tail --default-repo <your repo>
95
+
```sh
96
+
skaffold run --tail --default-repo <your repo>
89
97
```
90
98
91
99
With this command, Skaffold will build the `github.com/googlecontainertools/skaffold/examples/custom` artifact with ko and deploy the application to Kubernetes.
@@ -95,6 +103,6 @@ You should be able to see *Hello, World!* printed every second in the Skaffold l
0 commit comments