mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
680 B
Plaintext
30 lines
680 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# skaffold
|
|
|
|
> Facilitate continuous development for Kubernetes applications.
|
|
> More information: <https://skaffold.dev/docs/references/cli/>.
|
|
|
|
- Build the artifacts:
|
|
|
|
`skaffold build {{[-f|--filename]}} {{skaffold.yaml}}`
|
|
|
|
- Build and deploy your app every time your code changes:
|
|
|
|
`skaffold dev {{[-f|--filename]}} {{skaffold.yaml}}`
|
|
|
|
- Run a pipeline file:
|
|
|
|
`skaffold run {{[-f|--filename]}} {{skaffold.yaml}}`
|
|
|
|
- Run a diagnostic on Skaffold:
|
|
|
|
`skaffold diagnose {{[-f|--filename]}} {{skaffold.yaml}}`
|
|
|
|
- Deploy the artifacts:
|
|
|
|
`skaffold deploy {{[-f|--filename]}} {{skaffold.yaml}}`
|