goldilocks VS kube-score

Compare goldilocks vs kube-score 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)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
goldilocks kube-score
14 8
2,281 2,568
2.3% -
6.3 8.0
28 days ago 11 days ago
Go Go
Apache License 2.0 MIT License
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.

goldilocks

Posts with mentions or reviews of goldilocks. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-27.
  • How do I stop my apps from being killed in k8s?
    3 projects | /r/sre | 27 Jan 2023
    There's also tools like Goldilocks that can help with resource request planning.
  • Performance testing an application running on kubernetes
    2 projects | /r/kubernetes | 25 Oct 2022
    While not directly what you're asking, a tool like Goldilocks combined with Kubernetes' Vertical Pod Autoscaler can give you an idea of the real CPU and memory consumption of your applications over a period of time. It's mainly used for cloud cost control, but could be useful.
  • For the love of god, stop using CPU limits on Kubernetes (updated version)
    4 projects | /r/kubernetes | 5 Aug 2022
    https://github.com/openshift/cluster-kube-descheduler-operator https://github.com/FairwindsOps/goldilocks
  • How do you prevent overprovisioning
    2 projects | /r/kubernetes | 1 Jul 2022
  • Top 200 Kubernetes Tools for DevOps Engineer Like You
    84 projects | dev.to | 15 Jan 2022
    kops - Production Grade K8s Installation, Upgrades, and Management silver-surfer - Check ApiVersion compatibility and provide Migration path for Kubernetes objects when upgrading Kubernetes to latest versions Kube-ops-view - Kubernetes Operational View - read-only system dashboard for multiple K8s clusters kubeprompt - Kubernetes prompt info Metalk8s - An opinionated Kubernetes distribution with a focus on long-term on-prem deployments kind - Kubernetes IN Docker - local clusters for testing Kubernetes Clusterman - Cluster Autoscaler for Kubernetes and Mesos Cert-manager - Automatically provision and manage TLS certificates Goldilocks - Get your resource requests "Just Right" katafygio - Dump, or continuously backup Kubernetes objets as yaml files in git Rancher - Complete container management platform Sealed Secrets - A Kubernetes controller and tool for one-way encrypted Secrets OpenKruise/Kruise - Automate application workloads management on Kubernetes https://openkruise.io kubectl snapshot - Take Cluster Snapshots kapp - simple deployment tool focused on the concept of "Kubernetes application" — a set of resources with the same label https://get-kapp.io keda - Event-driven autoscaler for Kubernetes Octant - To better understand the complexity of Kubernetes clusters Portainer - Portainer inside a Kubernetes environment Gardener - Deliver fully-managed clusters at scale everywhere with your own Kubernetes-as-a-Service Kubed - Kubernetes Cluster Operator Daemon Kubestack - Kubestack is the free and open-source GitOps framework to codify your custom platform stack using Terraform.
  • Monthly: Who is hiring?
    2 projects | /r/kubernetes | 3 Jan 2022
    Come help us build great open source and commercial software for Kubernetes! You may know us from projects like Polaris and Goldilocks. We're building an inclusive, learning-driven, remote-first culture and are looking to grow our team.
  • Best way to determine pod resources ?
    2 projects | /r/kubernetes | 21 Apr 2021
    I’d check out Goldilocks. Deploy your workload and Goldilocks and let it run. Goldilocks will use the VPA in recommendation mode to help you derive reasonable resource request. https://github.com/FairwindsOps/goldilocks
  • Top 20 useful k8s tools
    13 projects | dev.to | 20 Feb 2021
    Link : https://github.com/FairwindsOps/goldilocks
  • Easy and Fast Adjustment of Kubernetes CPU and Memory
    4 projects | dev.to | 17 Feb 2021
    Goldilocks scans pods for resource limits and creates reports with recommended resources.

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.
  • 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).
  • 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

What are some alternatives?

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

polaris - Validation of best practices in your Kubernetes clusters

popeye - 👀 A Kubernetes cluster resource sanitizer

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

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

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

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

reviewdog - 🐶 Automated code review tool integrated with any code analysis tools regardless of programming language

stern - ⎈ Multi pod and container log tailing for Kubernetes

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

argo-cd - Declarative Continuous Deployment for Kubernetes

ktunnel - A cli that exposes your local resources to kubernetes

keda - KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes