kapp

kapp is a simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label (by carvel-dev)

Kapp Alternatives

Similar projects and alternatives to kapp

  1. ShellCheck

    498 kapp VS ShellCheck

    ShellCheck, a static analysis tool for shell scripts

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. Hasura

    234 kapp VS Hasura

    Blazing fast, instant realtime GraphQL APIs on all your data with fine grained access control, also trigger webhooks on database events.

  4. postgrest

    112 kapp VS postgrest

    REST API for any Postgres database

  5. hledger

    89 kapp VS hledger

    Robust, fast, intuitive plain text accounting tool with CLI, TUI and web interfaces.

  6. hoogle

    65 kapp VS hoogle

    Haskell API search engine

  7. hadolint

    28 kapp VS hadolint

    Dockerfile linter, validate inline bash, written in Haskell

  8. aur

    16 kapp VS aur

    A multilingual package manager for Arch Linux and the AUR.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. ytt

    14 kapp VS ytt

    YAML templating tool that works on YAML structure instead of text

  11. kapp-controller

    Continuous delivery and package management for Kubernetes.

  12. dhall

    11 kapp VS dhall

    Maintainable configuration files

  13. patat

    11 kapp VS patat

    Terminal-based presentations using Pandoc

  14. taskell

    10 kapp VS taskell

    Discontinued Command-line Kanban board/task manager with support for Trello boards and GitHub projects

  15. grafana-operator

    An operator for Grafana that installs and manages Grafana instances, Dashboards and Datasources through Kubernetes/OpenShift CRs

  16. Flux

    12 kapp VS Flux

    Discontinued Successor: https://github.com/fluxcd/flux2 (by fluxcd)

  17. carvel

    10 kapp VS carvel

    Carvel provides a set of reliable, single-purpose, composable tools that aid in your application building, configuration, and deployment to Kubernetes. This repo contains information regarding the Carvel open-source community.

  18. implicit

    6 kapp VS implicit

    A math-inspired CAD program in haskell. CSG, bevels, and shells; 2D & 3D geometry; 2D gcode generation...

  19. homebrew

    Provides tools from https://carvel.dev via Homebrew package. (by carvel-dev)

  20. grenade

    5 kapp VS grenade

    Deep Learning in Haskell

  21. Gifcurry

    5 kapp VS Gifcurry

    😎 The open-source, Haskell-built video editor for GIF makers.

  22. kubevela

    28 kapp VS kubevela

    The Modern Application Platform.

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better kapp alternative or higher similarity.

kapp discussion

Log in or Post with

kapp reviews and mentions

Posts with mentions or reviews of kapp. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-28.
  • HELM vs KUSTOMIZE
    8 projects | /r/kubernetes | 28 Jul 2022
  • How to handle the lifecycle of multiple COTS
    3 projects | /r/kubernetes | 27 Jul 2022
    If you want to take it one step further: you might be applying several resources at a time that are logically one "application". kapp (https://carvel.dev/kapp/) lets you group those together and give them a name, and provides a "terraform-like" experience where it shows you its execution plan before applying updates. So then you might do `ytt -f | kapp deploy -a name-of-thing` Or you could use helm's templating engine but then still pass the resulting yaml to kapp for its unification of the deployment step.
  • Dhall: A Gateway Drug to Haskell
    27 projects | news.ycombinator.com | 7 Jun 2022
    since you mentioned Kubernetes...

    > It would be nice if there was a separate state reconciliation system that one could adapt to use with Cue or Dhall or any other frontend

    this exactly was thinking behind https://carvel.dev/kapp for Kubernetes (i'm one of the maintainers). it makes a point to not know how you decided to generate your Kubernetes config -- just takes it as input.

    > In particular the ability to import other files as semantic hashes seems like a great feature.

    it's an interesting feature but seems like it should be unnecessary given that config can be easily checked into git (your own and its dependencies).

  • Terraform should have remained stateless
    6 projects | news.ycombinator.com | 27 May 2022
    i think kubernetes is not a great example in favor of more client state (like tf) since k8s has uniform resource structure (metadata.*) and first class labeling support. but as you point out kubectl doesnt use labels well (at least imho).

    when building https://carvel.dev/kapp (which i think of as "optimized terraform" for k8s) the goal was absolutely to take advantage of those k8s features. we ended up providing two capabilities: direct label (more advanced) and "app name" (more user friendly). from impl standpoint, difference is how much state is maintained.

    "kapp deploy -a label:x=y -f ..." allows user to specify label that is applied to all deployed resources and is also used for querying k8s to determine whats out there under given label. invocation is completely stateless since burden of keeping/providing state (in this case the label x=y) is shifted to the user. downside of course is that all apis within k8s need to be iterated over. (side note, fun features like "kapp delete -a label:!x" are free thanks to k8s querying).

    "kapp deploy -a my-app -f ..." gives user ability to associate name with uniquely auto-generated label. this case is more stateful than previous but again only label needs to be saved (we use ConfigMap to store that label). if this state is lost, one has to only recover generated label.

    imho k8s api structure enables focused tools like kapp to be much much simpler than more generic tool like terraform. as much as i'd like for terraform to keep less state, i totally appreciate its needs to support lowest common denominator feature set.

    common discussion topics:

  • Is there any CLI tool to sync between local yamls and current cluster namespace state?
    1 project | /r/kubernetes | 19 Jul 2021
    Take a look at kapp (https://github.com/vmware-tanzu/carvel-kapp).
  • Deploy Neo4J's APOC plugin with code thanks to CARVEL vendir
    21 projects | dev.to | 4 Jul 2021
    kapp - Install, upgrade, and delete multiple Kubernetes resources as one "application"
  • Open Application Model – An open standard for defining cloud native apps
    4 projects | news.ycombinator.com | 19 Mar 2021
    I really like this approach for simplifying Kubernetes. A few projects similar to OAM in that it provides a higher level "Application" CRD:

    https://github.com/vmware-tanzu/carvel-kapp

  • A note from our sponsor - CodeRabbit
    coderabbit.ai | 25 Mar 2025
    Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR. Learn more →

Stats

Basic kapp repo stats
7
974
7.8
4 days ago

carvel-dev/kapp is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of kapp is Go.


Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that Go is
the 4th most popular programming language
based on number of references?