1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 19:02:09 +02:00
tldr/pages/common/skaffold.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

24 lines
481 B
Markdown

# skaffold
> Facilitate continuous development for Kubernetes applications.
> More information: <https://skaffold.dev>.
- 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}}`