From 4e113b6a7fbc37bc46f05a834fa3d28ffaead5e6 Mon Sep 17 00:00:00 2001 From: Ivan Aracki Date: Mon, 15 Apr 2019 14:11:57 +0200 Subject: [PATCH] skaffold: add page (#2909) --- pages/common/skaffold.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/skaffold.md diff --git a/pages/common/skaffold.md b/pages/common/skaffold.md new file mode 100644 index 000000000..61b9d1c11 --- /dev/null +++ b/pages/common/skaffold.md @@ -0,0 +1,24 @@ +# skaffold + +> A tool that facilitates continuous development for Kubernetes applications. +> Homepage: . + +- Build the artifacts: + +`skaffold build -f {{skaffold.yaml}}` + +- Build and deploy your app every time your code changes: + +`skaffold dev -f {{skaffold.yaml}}` + +- Run a pipeline file: + +`skaffold run -f {{skaffold.yaml}}` + +- Run a diagnostic on Skaffold: + +`skaffold diagnose -f {{skaffold.yaml}}` + +- Deploy the artifacts: + +`skaffold deploy -f {{skaffold.yaml}}`