kubernetes-mixin VS skycfg

Compare kubernetes-mixin vs skycfg and see what are their differences.

kubernetes-mixin

A set of Grafana dashboards and Prometheus alerts for Kubernetes. (by kubernetes-monitoring)

skycfg

Skycfg is an extension library for the Starlark language that adds support for constructing Protocol Buffer messages. (by stripe)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
kubernetes-mixin skycfg
9 6
1,983 634
1.2% 0.5%
7.7 3.9
10 days ago 28 days ago
Jsonnet Go
Apache License 2.0 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.

kubernetes-mixin

Posts with mentions or reviews of kubernetes-mixin. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-11.

skycfg

Posts with mentions or reviews of skycfg. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-27.
  • Jsonnet – The Data Templating Language
    20 projects | news.ycombinator.com | 27 Mar 2023
    I can definitely sympathize here - in every context, just straight JSON/YAML configuration seems never expressive enough, but the tooling created in response always seems to come with sharp edges.

    Here are some of the things I appreciate about Jsonnet:

    - It evals to JSON, so even though the semantics of the language are confusing, it is reasonably easy to eval and iterate on some Jsonnet until it emits what one is expecting - and after that, it's easy to create some validation tests so that regressions don't occur.

    - It takes advantage of the fact that JSON is a lowest-common-denominator for many data serialization formats. YAML is technically a superset of JSON, so valid JSON is also valid YAML. Proto3 messages have a canonical JSON representation, so JSON can also adhere to protobuf schemas. This covers most "serialized data structure" use-cases I typically encounter (TOML and HCL are outliers, but many tools that accept those also accept equivalent JSON). This means that with a little bit of build-tool duct-taping, Jsonnet can be used to generate configurations for a wide variety of tooling.

    - Jsonnet is itself a superset of JSON - so those more willing to write verbose JSON than learn Jsonnet can still write JSON that someone else can import/use elsewhere. Using Jsonnet does not preclude falling back to JSON.

    - The tooling works well - installing the Jsonnet VSCode plugin brings in a code formatter that does an excellent job, and rules_jsonnet[0] provides good bazel integration, if that's your thing.

    I'm excited about Jsonnet because now as long as other tool authors decide to consume JSON, I can more easily abstract away their verbosity without writing a purpose-built tool (looking at you, Kubernetes) without resorting to text templating (ahem Helm). Jsonnet might just be my "one JSON-generation language to rule them all"!

    ---

    Though if Starlark is your thing, do checkout out skycfg[1]

    [0] - https://github.com/bazelbuild/rules_jsonnet

    [1] - https://github.com/stripe/skycfg

  • The Dhall Configuration Language
    21 projects | news.ycombinator.com | 14 Jul 2022
    Can you say more about what GCL does better than all of the open source ones?

    Anecdotally, I've heard a lot of GCL horror stories, and many Xooglers have chosen to create things like Jsonnet or Skycfg (https://github.com/stripe/skycfg) instead.

  • YAML: It's Time to Move On
    29 projects | news.ycombinator.com | 14 Nov 2021
  • Opinion-driven design
    3 projects | /r/programming | 23 Jun 2021
  • Migrating Millions of Concurrent WebSockets to Envoy
    2 projects | news.ycombinator.com | 17 Mar 2021
    If you’re looking at other solutions check out https://github.com/stripe/skycfg It works with Envoy and lots of other things that support protobuf configs
  • Yaml Is The Worst Thing Ever Created K8s Should
    1 project | /r/kubernetes | 28 Feb 2021
    This is good and there are several other options like https://github.com/stripe/skycfg#why-use-skycfg to add full language support (using Go or python for ex) to configurations.

What are some alternatives?

When comparing kubernetes-mixin and skycfg you can also consider the following projects:

charts - ⚠️(OBSOLETE) Curated applications for Kubernetes

jsonnet - Jsonnet - The data templating language

prometheus-operator - Prometheus Operator creates/configures/manages Prometheus clusters atop Kubernetes

isopod - An expressive DSL and framework for Kubernetes configuration without YAML

helm-charts - Prometheus community Helm charts

nestedtext - Human readable and writable data interchange format

prometheus - The Prometheus monitoring system and time series database.

ron - Rusty Object Notation

octoDNS - Tools for managing DNS across multiple providers

rules_jsonnet - Jsonnet rules for Bazel

jrsonnet - Rust implementation of Jsonnet language

starlark - Starlark Language