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
Copy file name to clipboardExpand all lines: docs/content/en/docs/_index.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,12 @@ Kubernetes cluster.
19
19
20
20
* Fast local Kubernetes Development
21
21
***optimized "Source to Kubernetes"** - Skaffold detects changes in your source code and handles the pipeline to
22
-
**build**, **push**, and **deploy** your application automatically with **policy-based image tagging** and **highly optimized, fast local workflows**
22
+
**build**, **push**, **test**and **deploy** your application automatically with **policy-based image tagging** and **highly optimized, fast local workflows**
***share with other developers** - Skaffold is the easiest way to **share your project** with the world: `git clone` and `skaffold run`
26
26
***context aware** - use Skaffold profiles, local user config, environment variables, and flags to easily incorporate differences across environments
27
-
***CI/CD building blocks** - use `skaffold build` and `skaffold deploy` as part of your CI/CD pipeline, or simply `skaffold run` end-to-end
27
+
***CI/CD building blocks** - use `skaffold build`, `skaffold test` and `skaffold deploy` as part of your CI/CD pipeline, or simply `skaffold run` end-to-end
28
28
***GitOps integration** - use `skaffold render` to build your images and render templated Kubernetes manifests for use in GitOps workflows
29
29
* skaffold.yaml - a single pluggable, declarative configuration for your project
30
30
***skaffold init** - Skaffold can discover your build and deployment configuration and generate a Skaffold config
@@ -47,7 +47,7 @@ stages into one simple command. Every time you run `skaffold dev`, the system
47
47
1. Collects and watches your source code for changes
48
48
1. Syncs files directly to pods if user marks them as syncable
49
49
1. Builds artifacts from the source code
50
-
1. Tests the built artifacts using [container-structure-tests](https://github.com/GoogleContainerTools/container-structure-test)
50
+
1. Tests the built artifacts using [container-structure-tests](https://github.com/GoogleContainerTools/container-structure-test) or custom scripts
51
51
1. Tags the artifacts
52
52
1. Pushes the artifacts
53
53
1. Deploys the artifacts
@@ -89,6 +89,7 @@ Skaffold supports the following tools:
0 commit comments