Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carvel-dev/kapp
kapp is a simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label
https://github.com/carvel-dev/kapp
carvel cli continious-delivery deployment devops gitops go hacktoberfest hacktoberfest2021 k8s kubernetes kubernetes-deployment
Last synced: 8 days ago
JSON representation
kapp is a simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label
- Host: GitHub
- URL: https://github.com/carvel-dev/kapp
- Owner: carvel-dev
- License: apache-2.0
- Created: 2019-03-15T21:49:25.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-10-28T19:00:09.000Z (11 days ago)
- Last Synced: 2024-10-30T18:09:28.526Z (9 days ago)
- Topics: carvel, cli, continious-delivery, deployment, devops, gitops, go, hacktoberfest, hacktoberfest2021, k8s, kubernetes, kubernetes-deployment
- Language: Go
- Homepage: https://carvel.dev/kapp
- Size: 41.2 MB
- Stars: 921
- Watchers: 24
- Forks: 110
- Open Issues: 117
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Governance: GOVERNANCE.md
- Roadmap: ROADMAP.md
Awesome Lists containing this project
- stars - carvel-dev/kapp
- awesome-repositories - carvel-dev/kapp - kapp is a simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label (Go)
- awesome-cloud-native - kapp - kapp is a simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label. (Application Delivery)
- awesome-starred - carvel-dev/kapp - kapp is a simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label (kubernetes)
README
![logo](docs/CarvelLogo.png)
[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7746/badge)](https://bestpractices.coreinfrastructure.org/projects/7746)
# kapp
- Website: https://carvel.dev/kapp
- Slack: [#carvel in Kubernetes slack](https://slack.kubernetes.io)
- [Docs](docs/README.md) with topics about diff, apply, gitops, config, _blog posts and talks_ etc.
- Install: grab prebuilt binaries from the [Releases page](https://github.com/carvel-dev/kapp/releases) or [Homebrew Carvel tap](https://github.com/carvel-dev/homebrew).
- Backlog: [See what we're up to](https://github.com/orgs/carvel-dev/projects/1/views/1?filterQuery=repo:%22carvel-dev/kapp%22).`kapp` (pronounced: `kap`) CLI encourages Kubernetes users to manage resources in bulk by working with "Kubernetes applications" (sets of resources with the same label). It focuses on resource diffing, labeling, deployment and deletion. Unlike tools like Helm, `kapp` considers YAML templating and management of packages outside of its scope, though it works great with tools that generate Kubernetes configuration.
![](docs/kapp-deploy-screenshot.png)
See [https://carvel.dev/kapp](https://carvel.dev/kapp) for detailed example workflow.
Features:
- Works with standard Kubernetes YAMLs
- Focuses exclusively on deployment workflow, not packaging or templating
- but plays well with tools (such as [ytt](https://get-ytt.io)) that produce Kubernetes configuration
- Converges application resources (creates, updates and/or deletes resources) in each deploy
- based on comparison between provided files and live objects in the cluster
- Separates calculation of changes ([diff stage](docs/diff.md)) from application of changes ([apply stage](docs/apply.md))
- [Waits for resources](docs/apply-waiting.md) to be "ready"
- Creates CRDs and Namespaces first and supports [custom change ordering](docs/apply-ordering.md)
- Works [without admin privileges](docs/rbac.md) and does not use custom CRDs
- making it possible to use kapp as a regular user in a single namespace
- Records application deployment history
- Opt-in resource version management
- for example, to trigger Deployment rollout when ConfigMap changes
- Optionally streams Pod logs during deploy
- Works with any group of labeled resources (`kapp -a label:tier=web inspect -t`)
- Works without server side components
- GitOps friendly (`kapp app-group deploy -g all-apps --directory .`)### Join the Community and Make Carvel Better
Carvel is better because of our contributors and maintainers. It is because of you that we can bring great software to the community.
Please join us during our online community meetings. Details can be found on our [Carvel website](https://carvel.dev/community/).You can chat with us on Kubernetes Slack in the #carvel channel and follow us on Twitter at @carvel_dev.
Check out which organizations are using and contributing to Carvel: [Adopter's list](https://github.com/carvel-dev/carvel/blob/master/ADOPTERS.md)
## Development
Consult [docs/dev.md](docs/dev.md) for build instructions, code structure details.