kube-score VS krew

Compare kube-score vs krew and see what are their differences.

kube-score

Kubernetes object analysis with recommendations for improved reliability and security. kube-score actively prevents downtime and bugs in your Kubernetes YAML and Charts. Static code analysis for Kubernetes. (by zegl)

krew

📦 Find and install kubectl plugins (by kubernetes-sigs)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
kube-score krew
8 23
2,568 6,104
- 1.2%
8.0 4.7
14 days ago about 1 month ago
Go Go
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

kube-score

Posts with mentions or reviews of kube-score. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-29.
  • GitHub - zegl/kube-score: Kubernetes object analysis with recommendations for improved reliability and security
    1 project | /r/u_Venehsoftw | 23 Dec 2022
    1 project | /r/u_Venehsoftw | 23 Nov 2022
  • What should readiness & liveness probe actually check for?
    2 projects | /r/kubernetes | 29 Jul 2022
    This is taken from: https://github.com/zegl/kube-score/blob/master/README_PROBES.md and I have read the same opinions elsewhere.
  • How do you take care of your manifests?
    4 projects | /r/kubernetes | 12 Apr 2022
    A developer's workflow should anyway deploy to a real, or close-to-production Kubernetes cluster before opening a merge request with the finished change. That means the developer definitely sees upfront if the manifest is super wrong. Tools like kube-score (which is quite opinionated), kubeval or OPA rules can help in addition to keep things consistent and secure. For such a developer workflow, I recommend Skaffold since it mostly just wraps Docker, kubectl and the templating tool you're using (e.g. kustomize/helm).
  • Kube-Score v1.14
    1 project | news.ycombinator.com | 17 Feb 2022
  • kube-score v1.14 – Kubernetes object analysis with recommendations for improved reliability and security
    1 project | /r/kubernetes | 17 Feb 2022
  • Securing Kubernetes Deployments
    4 projects | dev.to | 8 Nov 2021
    apps/v1/Deployment semaphore-demo-ruby-kubernetes 💥 [CRITICAL] Container Resources · semaphore-demo-ruby-kubernetes -> CPU limit is not set Resource limits are recommended to avoid resource DDOS. Set resources.limits.cpu · semaphore-demo-ruby-kubernetes -> Memory limit is not set Resource limits are recommended to avoid resource DDOS. Set resources.limits.memory · semaphore-demo-ruby-kubernetes -> CPU request is not set Resource requests are recommended to make sure that the application can start and run without crashing. Set resources.requests.cpu · semaphore-demo-ruby-kubernetes -> Memory request is not set Resource requests are recommended to make sure that the application can start and run without crashing. Set resources.requests.memory [CRITICAL] Container Image Pull Policy · semaphore-demo-ruby-kubernetes -> ImagePullPolicy is not set to Always It's recommended to always set the ImagePullPolicy to Always, to make sure that the imagePullSecrets are always correct, and to always get the image you want. [CRITICAL] Pod NetworkPolicy · The pod does not have a matching NetworkPolicy Create a NetworkPolicy that targets this pod to control who/what can communicate with this pod. Note, this feature needs to be supported by the CNI implementation used in the Kubernetes cluster to have an effect. [CRITICAL] Pod Probes · Container is missing a readinessProbe A readinessProbe should be used to indicate when the service is ready to receive traffic. Without it, the Pod is risking to receive traffic before it has booted. It's also used during rollouts, and can prevent downtime if a new version of the application is failing. More information: https://github.com/zegl/kube-score/blob/master/README_PROBES.md [CRITICAL] Container Security Context · semaphore-demo-ruby-kubernetes -> Container has no configured security context Set securityContext to run the container in a more secure context. v1/Service semaphore-demo-ruby-kubernetes-lb ✅
  • Top 20 useful k8s tools
    13 projects | dev.to | 20 Feb 2021
    Link : https://github.com/zegl/kube-score

krew

Posts with mentions or reviews of krew. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-09.
  • Giving Kyma a little spin ... a SpinKube
    6 projects | dev.to | 9 Apr 2024
    Authenticating with Kyma is a (in my opinion) unnecessary challenge as it leverages the OIDC-login plugin for kubectl. You find a description of the setup here. This works fine when on a Mac but can give you some headaches on a Windows and on Linux machine especially when combined with restrictive setups in corporate environments. For Windows I can only recommend installing krew via chocolatey and then install the OIDC plugin via kubectl krew install oidc-login. At least for me that was the only way to get this working on Windows.
  • Kubernetes Üzerinde Hyperledger Fabric Ağının Kurulumu
    1 project | dev.to | 2 Jan 2024
    ( set -x; cd "$(mktemp -d)" && OS="$(uname | tr '[:upper:]' '[:lower:]')" && ARCH="$(uname -m | sed -e 's/x86_64/amd64/' -e 's/\(arm\)\(64\)\?.*/\1\2/' -e 's/aarch64$/arm64/')" && KREW="krew-${OS}_${ARCH}" && curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz" && tar zxvf "${KREW}.tar.gz" && ./"${KREW}" install krew )
  • Krew: Package Manager for Kubectl Plugins
    1 project | news.ycombinator.com | 24 Nov 2023
  • Kubernetes For The Sysadmin - Enter KubeVirt
    2 projects | dev.to | 3 Oct 2023
    Krew is a way to manage plugins for Kubernetes. For more info, check out the following link: https://krew.sigs.k8s.io/
  • Lock your Kubernetes contexts!
    2 projects | /r/kubernetes | 15 Mar 2023
    I plan on getting it added as a krew plugin, so watch this space.
  • Deploying CLIs to developer machines
    3 projects | /r/devops | 9 Mar 2023
  • Getting started with kubectl plugins
    20 projects | dev.to | 18 Jan 2023
    Krew is a plugin manager maintained by the Kubernetes Special Interest Group (SIG) CLI community. Krew makes it easy to use kubectl plugins and helps you discover, install, and manage them on your machine. It is similar to tools like apt, dnf, or brew. Today, over 200 kubectl plugins are available on Krew - and that number is only increasing. Some projects are actively used and some get deprecated over time, but are still accessible via Krew.
  • Most Useful kubectl Plugins
    6 projects | dev.to | 14 Oct 2022
    kubectl plugins can be installed in numerous ways, the easiest way would be to install the official plugin manager called krew.
  • Introduction to Kubectl CLI Plugins ctx and ns
    2 projects | dev.to | 10 Oct 2022
    ( set -x; cd "$(mktemp -d)" && OS="$(uname | tr '[:upper:]' '[:lower:]')" && ARCH="$(uname -m | sed -e 's/x86_64/amd64/' -e 's/\(arm\)\(64\)\?.*/\1\2/' -e 's/aarch64$/arm64/')" && KREW="krew-${OS}_${ARCH}" && curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/${KREW}.tar.gz" && tar zxvf "${KREW}.tar.gz" && ./"${KREW}" install krew )
  • Introduction to Kubernetes extensibility
    2 projects | dev.to | 21 Sep 2022
    -- What is Krew?

What are some alternatives?

When comparing kube-score and krew you can also consider the following projects:

polaris - Validation of best practices in your Kubernetes clusters

helm - The Kubernetes Package Manager

popeye - 👀 A Kubernetes cluster resource sanitizer

k9s - 🐶 Kubernetes CLI To Manage Your Clusters In Style!

kubeconform - A FAST Kubernetes manifests validator, with support for Custom Resources!

kubectx - Faster way to switch between clusters and namespaces in kubectl

datree - Prevent Kubernetes misconfigurations from reaching production (again 😤 )! From code to cloud, Datree provides an E2E policy enforcement solution to run automatic checks for rule violations. See our docs: https://hub.datree.io

stern - ⎈ Multi pod and container log tailing for Kubernetes

kubeval - Validate your Kubernetes configuration files, supports multiple Kubernetes versions

kubectl-neat - Clean up Kubernetes yaml and json output to make it readable

polaris - Shopify’s design system to help us work together to build a great experience for all of our merchants.

kubectl-debug - This repository is no longer maintained, please checkout https://github.com/JamesTGrant/kubectl-debug.