Skaffold (https://skaffold.dev/) is a very complete solution. It is very flexible, supports both local development and integration with CI/CD, and has excellent documentation. Here are some of the features of Skaffold:
- Detect code changes, build image, push, and deploy.
- Can sync source files to pods directly (just like Ksync).
- It has a sophisticated conceptual model with builders, testers, deployers, tag polices, and push strategies.
- You can customize every aspect.
- Integrate with your CI/CD pipeline by running Skaffold from end to end, or use specific stages as building blocks.
- Per-environment configuration via profiles, user-level config, environment variables, or command-line flags.
- It is a client-side tool – there is no need ...