├── showcases ├── k8s-thanos │ ├── cue │ │ └── .gitkeep │ ├── go │ │ └── .gitkeep │ └── jsonnet │ │ └── .gitkeep └── guestbook │ ├── YAML │ ├── redis-slave-service.yaml │ ├── frontend-service.yaml │ ├── redis-master-service.yaml │ ├── redis-master-deployment.yaml │ ├── frontend-deployment.yaml │ └── redis-slave-deployment.yaml │ └── README.md ├── website ├── static │ ├── CNAME │ ├── settings-icon.png │ ├── main.css │ ├── syntax.css │ ├── settings-dark.svg │ └── settings-light.svg ├── archetypes │ └── docs.md ├── copied │ ├── showcases.md │ ├── comparison.md │ └── contributing.md ├── layouts │ ├── _default │ │ ├── single.html │ │ ├── list.html │ │ └── baseof.html │ ├── blog │ │ ├── single.html │ │ └── list.html │ └── index.html └── hugo.yaml ├── showcases.md ├── comparison.md ├── contributing.md ├── .gitignore ├── README.md ├── netlify.toml ├── Makefile ├── CODE_OF_CONDUCT.md └── LICENSE /showcases/k8s-thanos/cue/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /showcases/k8s-thanos/go/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /showcases/k8s-thanos/jsonnet/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | configuration.fyi -------------------------------------------------------------------------------- /website/archetypes/docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /showcases.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Showcases 3 | type: docs 4 | weight: 1 5 | slug: /showcases 6 | --- 7 | 8 | TBD Showcases -------------------------------------------------------------------------------- /comparison.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Comparison 3 | type: docs 4 | weight: 1 5 | slug: /comparison 6 | --- 7 | 8 | TBD Comparison -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contributing 3 | type: docs 4 | weight: 1 5 | slug: /contributing 6 | --- 7 | 8 | TBD Contributing -------------------------------------------------------------------------------- /website/copied/showcases.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Showcases 3 | type: docs 4 | weight: 1 5 | slug: /showcases 6 | --- 7 | 8 | TBD Showcases -------------------------------------------------------------------------------- /website/static/settings-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/configuration-fyi/configuration/HEAD/website/static/settings-icon.png -------------------------------------------------------------------------------- /website/copied/comparison.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Comparison 3 | type: docs 4 | weight: 1 5 | slug: /comparison 6 | --- 7 | 8 | TBD Comparison -------------------------------------------------------------------------------- /website/copied/contributing.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contributing 3 | type: docs 4 | weight: 1 5 | slug: /contributing 6 | --- 7 | 8 | TBD Contributing -------------------------------------------------------------------------------- /showcases/guestbook/YAML/redis-slave-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: redis-slave 5 | labels: 6 | app: redis 7 | role: slave 8 | tier: backend 9 | spec: 10 | ports: 11 | - port: 6379 12 | selector: 13 | app: redis 14 | role: slave 15 | tier: backend 16 | -------------------------------------------------------------------------------- /showcases/guestbook/YAML/frontend-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: frontend 5 | namespace: default 6 | labels: 7 | app: guestbook 8 | tier: frontend 9 | spec: 10 | type: NodePort 11 | ports: 12 | - port: 80 13 | selector: 14 | app: guestbook 15 | tier: frontend 16 | -------------------------------------------------------------------------------- /showcases/guestbook/YAML/redis-master-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: redis-master 5 | namespace: default 6 | labels: 7 | app: redis 8 | role: master 9 | tier: backend 10 | spec: 11 | ports: 12 | - port: 6379 13 | targetPort: 6379 14 | selector: 15 | app: redis 16 | role: master 17 | tier: backend 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | # vendor/ 16 | 17 | website/public/ 18 | website/resources/ -------------------------------------------------------------------------------- /website/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
3 |
4 | {{ $content := replace .Content "" "
" }} 5 | {{ $content = $content | replaceRE "()" `${1} # ${3}` }} 6 | {{ $content | safeHTML}} 7 | 8 | 9 | {{ end }} -------------------------------------------------------------------------------- /website/layouts/blog/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
3 |
4 |
5 |
6 |

{{ .Title }}

7 |

Written by {{ .Params.Author }} and published on {{ .Date.Format "Jan 02, 2006" }}

8 |
9 | {{ .Content }} 10 |
11 |
12 |
13 |
14 | {{ end }} -------------------------------------------------------------------------------- /showcases/guestbook/README.md: -------------------------------------------------------------------------------- 1 | # Guestbook Example 2 | 3 | This example is show as an official Kubernetes tutorial: 4 | https://kubernetes.io/docs/tutorials/stateless-application/guestbook/ 5 | 6 | Hence, we think it's a good candidate to make for a basic example. 7 | 8 | All implementations of the example should showcase the ability to: 9 | 10 | * change the namespace we deploy the application to 11 | * change the amount of replicas of Deployments 12 | * define labels per Deployment once (or even once in general) and pass them through the various occurances respectively 13 | -------------------------------------------------------------------------------- /website/hugo.yaml: -------------------------------------------------------------------------------- 1 | title: "Configuration.fyi" 2 | # This is controlled by makefile: baseURL 3 | languageCode: "en-us" 4 | 5 | enableGitInfo: true 6 | enableEmoji: true 7 | pygmentsCodeFences: true 8 | pygmentsUseClasses: true 9 | googleAnalytics: "UA-161996376-1" 10 | 11 | # NOTE: Hugo is expected to run from `website` 12 | contentDir: "copied" 13 | archetypeDir: "archetypes" 14 | layoutDir: "layouts" 15 | publishDir: "public" 16 | staticDir: "static" 17 | 18 | params: 19 | GithubUser: "configuration-fyi" 20 | GithubProject: "configuration" 21 | Description: "Comparison of modern open source languages, patterns and solutions for configuration management." 22 | -------------------------------------------------------------------------------- /website/layouts/blog/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
3 |
4 |
5 | {{ range .Paginator.Pages }} 6 |
7 |

{{ .Title }}

8 |

Written by {{ .Params.Author }} and published on {{ .Date.Format "Jan 02, 2006" }}

9 |
10 | {{ .Content }} 11 |
12 | {{ end}} 13 | {{ template "_internal/pagination.html" . }} 14 |
15 |
16 |
17 | {{ end }} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Configuration 2 | 3 | [![Netlify Status](https://api.netlify.com/api/v1/badges/717976bd-e491-47ca-82fd-fd534425fb12/deploy-status)](https://app.netlify.com/sites/configuration/deploys) 4 | 5 | Community driven comparison of modern open source configuration management languages, patterns and solutions. 6 | 7 | See our website: https://configuration.fyi 8 | 9 | ## Licence & Copyright 10 | 11 | * Apache 2 12 | * Logo: https://www.flaticon.com/free-icon/settings_660396 13 | 14 | ## Maintainers 15 | 16 | * [@brancz](https://brancz.com/) 17 | * [@bwplotka](https://bwplotka.dev) 18 | * [@miekg](http://miek.nl/) 19 | 20 | 21 | ## Initial Author 22 | 23 | [@bwplotka](https://bwplotka.dev) -------------------------------------------------------------------------------- /website/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
3 |
4 |

{{ .Title }}

5 |
    6 | 7 | {{ range .Pages }} 8 |
  • 9 |

    {{.Title}}

    10 |
  • 11 | {{ end }} 12 |
13 | {{ replace .Content "
" "
" | safeHTML }} 14 | 15 | 16 | {{ end }} 17 | -------------------------------------------------------------------------------- /showcases/guestbook/YAML/redis-master-deployment.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apps/v1 2 | kind: Deployment 3 | metadata: 4 | name: redis-master 5 | namespace: default 6 | labels: 7 | app: redis 8 | spec: 9 | selector: 10 | matchLabels: 11 | app: redis 12 | role: master 13 | tier: backend 14 | replicas: 1 15 | template: 16 | metadata: 17 | labels: 18 | app: redis 19 | role: master 20 | tier: backend 21 | spec: 22 | containers: 23 | - name: master 24 | image: k8s.gcr.io/redis:e2e 25 | resources: 26 | requests: 27 | cpu: 100m 28 | memory: 100Mi 29 | ports: 30 | - containerPort: 6379 31 | -------------------------------------------------------------------------------- /showcases/guestbook/YAML/frontend-deployment.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apps/v1 2 | kind: Deployment 3 | metadata: 4 | name: frontend 5 | namespace: default 6 | labels: 7 | app: guestbook 8 | spec: 9 | selector: 10 | matchLabels: 11 | app: guestbook 12 | tier: frontend 13 | replicas: 3 14 | template: 15 | metadata: 16 | labels: 17 | app: guestbook 18 | tier: frontend 19 | spec: 20 | containers: 21 | - name: php-redis 22 | image: gcr.io/google-samples/gb-frontend:v4 23 | resources: 24 | requests: 25 | cpu: 100m 26 | memory: 100Mi 27 | env: 28 | - name: GET_HOSTS_FROM 29 | value: dns 30 | ports: 31 | - containerPort: 80 32 | -------------------------------------------------------------------------------- /showcases/guestbook/YAML/redis-slave-deployment.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apps/v1 2 | kind: Deployment 3 | metadata: 4 | name: redis-slave 5 | namespace: default 6 | labels: 7 | app: redis 8 | spec: 9 | selector: 10 | matchLabels: 11 | app: redis 12 | role: slave 13 | tier: backend 14 | replicas: 2 15 | template: 16 | metadata: 17 | labels: 18 | app: redis 19 | role: slave 20 | tier: backend 21 | spec: 22 | containers: 23 | - name: slave 24 | image: gcr.io/google_samples/gb-redisslave:v3 25 | resources: 26 | requests: 27 | cpu: 100m 28 | memory: 100Mi 29 | env: 30 | - name: GET_HOSTS_FROM 31 | value: dns 32 | ports: 33 | - containerPort: 6379 34 | -------------------------------------------------------------------------------- /website/static/main.css: -------------------------------------------------------------------------------- 1 | .bg-blue { 2 | background-color: #428DFF; 3 | } 4 | 5 | .color-blue { 6 | color: #428DFF; 7 | } 8 | 9 | .img-config { 10 | max-width: 30%; 11 | max-height: 20%; 12 | } 13 | 14 | .color-blue-light { 15 | color: #A4C2F7; 16 | } 17 | .navbar-brand img { 18 | height: 32px; 19 | margin-right: 10px; 20 | max-width: 100%; 21 | } 22 | 23 | .navbar-dark .navbar-nav .nav-link { 24 | color: #fff; 25 | } 26 | 27 | .nav-link:hover { 28 | color: #A4C2F7 29 | } 30 | 31 | .btn-outline-secondary { 32 | color: #428DFF; 33 | border-color: #428DFF; 34 | } 35 | 36 | .btn-outline-secondary:hover, .btn-outline-secondary:active { 37 | color: #fff; 38 | background-color: #428DFF !important; 39 | border-color: #428DFF !important; 40 | } 41 | 42 | a { 43 | color: #428DFF; 44 | } 45 | 46 | pre { 47 | padding: 1rem; 48 | } 49 | 50 | .list-group-item-config { 51 | color: #428DFF; 52 | border: 0; 53 | padding: 0.5rem; 54 | background-color: transparent; 55 | text-indent: 1rem; 56 | } 57 | 58 | .list-group-item-config:hover { 59 | color: #428DFF; 60 | } 61 | 62 | .header-anchor { font-size: 100%; visibility: hidden;} 63 | h1:hover a, h2:hover a, h3:hover a, h4:hover a { visibility: visible} -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [Settings] 2 | 3 | # All netfliy options should be defined here. UI options should stay empty. 4 | 5 | [build] 6 | base = "" 7 | publish = "website/public" 8 | 9 | # Our Makefile builds Hugo, but it's faster if Netlify grabs the correct version on their own 10 | # via a simple cURL. 11 | environment = { HUGO_VERSION="0.55.3" } 12 | 13 | # NOTE: the sleep at the end is to make sure logs are not truncated on error. 14 | command = "(env && make web HUGO=$(which hugo)) || (sleep 30; false)" 15 | 16 | [context.deploy-preview] 17 | 18 | # NOTE: the sleep at the end is to make sure logs are not truncated on error. 19 | command = "(env && make web HUGO=$(which hugo) WEBSITE_BASE_URL=${DEPLOY_PRIME_URL}) || (sleep 30; false)" 20 | 21 | [[headers]] 22 | for = "/*" 23 | [headers.values] 24 | # We don't use iframes. Block them. 25 | X-Frame-Options = "DENY" 26 | # Don't allow Mime-sniffing. 27 | X-Content-Type-Options = "nosniff" 28 | # Add reflective XSS protection. 29 | X-XSS-Protection = "1; mode=block" 30 | # Force HTTPS only. 31 | Strict-Transport-Security = "max-age=31536000; includeSubDomains" 32 | # Load scripts only via HTTPS and from allowed domains. 33 | Content-Security-Policy = "default-src https: data: ; style-src https: 'self' 'unsafe-inline'; img-src https: 'self' data: ; script-src https: 'self' 'sha256-oU+PaCjPnzTPs1xK7UzMJThGMe9MQqUa+oy2tBLzRTo='; object-src 'self'" 34 | # Only send referred when HTTPS is used. 35 | Referrer-Policy = "strict-origin-when-cross-origin" 36 | # Disable certain magic features, lol. 37 | Feature-Policy = "vibrate none; usermedia *; sync-xhr self" 38 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | WEB_DIR ?= website 2 | WEBSITE_BASE_URL ?= https://confiuration.fyi 3 | 4 | # 0.55.3 5 | HUGO ?= $(shell which hugo) 6 | ME ?= $(shell whoami) 7 | 8 | .PHONY: all 9 | all: web 10 | 11 | define require_clean_work_tree 12 | @git update-index -q --ignore-submodules --refresh 13 | 14 | @if ! git diff-files --quiet --ignore-submodules --; then \ 15 | echo >&2 "cannot $1: you have unstaged changes."; \ 16 | git diff-files --name-status -r --ignore-submodules -- >&2; \ 17 | echo >&2 "Please commit or stash them."; \ 18 | exit 1; \ 19 | fi 20 | 21 | @if ! git diff-index --cached --quiet HEAD --ignore-submodules --; then \ 22 | echo >&2 "cannot $1: your index contains uncommitted changes."; \ 23 | git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2; \ 24 | echo >&2 "Please commit or stash them."; \ 25 | exit 1; \ 26 | fi 27 | 28 | endef 29 | 30 | web-pre-process: 31 | @rm -rf $(WEB_DIR)/copied > /dev/null 32 | @mkdir $(WEB_DIR)/copied 33 | @cp comparison.md $(WEB_DIR)/copied/ 34 | @cp showcases.md $(WEB_DIR)/copied/ 35 | @cp contributing.md $(WEB_DIR)/copied/ 36 | 37 | .PHONY: web 38 | web: $(HUGO) web-pre-process 39 | @echo ">> building documentation website" 40 | # TODO(bwplotka): Make it --gc 41 | @cd $(WEB_DIR) && HUGO_ENV=production $(HUGO) --minify -v --config hugo.yaml -b $(WEBSITE_BASE_URL) 42 | 43 | web-serve: $(HUGO) web-pre-process 44 | @echo ">> serving documentation website" 45 | @cd $(WEB_DIR) && $(HUGO) --config hugo.yaml -v server 46 | 47 | # non-phony targets 48 | 49 | $(HUGO): 50 | @echo "Install hugo, preferably in v0.54.0 version: https://gohugo.io/getting-started/installing/" 51 | 52 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to 6 | making participation in our project and our community a harassment-free experience for everyone, 7 | regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, 8 | nationality, personal appearance, race, religion, or sexual identity and orientation. 9 | 10 | ## Our Standards 11 | 12 | Examples of behavior that contributes to creating a positive environment include: 13 | 14 | * Using welcoming and inclusive language 15 | * Being respectful of differing viewpoints and experiences 16 | * Gracefully accepting constructive criticism 17 | * Focusing on what is best for the community 18 | * Showing empathy towards other community members 19 | 20 | Examples of unacceptable behavior by participants include: 21 | 22 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 23 | * Trolling, insulting/derogatory comments, and personal or political attacks 24 | * Public or private harassment 25 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 26 | * Other conduct which could reasonably be considered inappropriate in a professional setting 27 | 28 | ## Our Responsibilities 29 | 30 | Project maintainers are responsible for clarifying the standards of acceptable behavior and 31 | are expected to take appropriate and fair corrective action in response to any instances of 32 | unacceptable behavior. 33 | 34 | Project maintainers have the right and responsibility to remove, edit, or reject comments, 35 | commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, 36 | or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, 37 | threatening, offensive, or harmful. 38 | 39 | ## Scope 40 | 41 | This Code of Conduct applies both within project spaces and in public spaces when an individual 42 | is representing the project or its community. Examples of representing a project or community 43 | include using an official project e-mail address, posting via an official social media account, 44 | or acting as an appointed representative at an online or offline event. Representation of a project 45 | may be further defined and clarified by project maintainers. 46 | 47 | ## Enforcement 48 | 49 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting 50 | the project team members , who by the time of writing are [@bwplotka](https://github.com/bwplotka/), [@brancz](https://github.com/brancz/), [@metalmatze](https://github.com/metalmatze/), [@miekg](https://github.com/miekg/). 51 | The project team will review and investigate all complaints, 52 | and will respond in a way that it deems appropriate to the circumstances. 53 | The project team is obligated to maintain confidentiality with regard to the 54 | reporter of an incident. Further details of specific enforcement policies may be posted separately. 55 | 56 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may 57 | face temporary or permanent repercussions as determined by other members of the project's leadership. 58 | 59 | ## Attribution 60 | 61 | This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.4, available at [http://contributor-covenant.org/version/1/4](http://contributor-covenant.org/version/1/4/) 62 | -------------------------------------------------------------------------------- /website/static/syntax.css: -------------------------------------------------------------------------------- 1 | /* Background */ .chroma { background-color: #f8f8f8 } 2 | /* Error */ .chroma .err { } 3 | /* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } 4 | /* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; } 5 | /* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc } 6 | /* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; } 7 | /* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; } 8 | /* Keyword */ .chroma .k { color: #aa22ff; font-weight: bold } 9 | /* KeywordConstant */ .chroma .kc { color: #aa22ff; font-weight: bold } 10 | /* KeywordDeclaration */ .chroma .kd { color: #aa22ff; font-weight: bold } 11 | /* KeywordNamespace */ .chroma .kn { color: #aa22ff; font-weight: bold } 12 | /* KeywordPseudo */ .chroma .kp { color: #aa22ff } 13 | /* KeywordReserved */ .chroma .kr { color: #aa22ff; font-weight: bold } 14 | /* KeywordType */ .chroma .kt { color: #00bb00; font-weight: bold } 15 | /* NameAttribute */ .chroma .na { color: #bb4444 } 16 | /* NameBuiltin */ .chroma .nb { color: #aa22ff } 17 | /* NameClass */ .chroma .nc { color: #0000ff } 18 | /* NameConstant */ .chroma .no { color: #880000 } 19 | /* NameDecorator */ .chroma .nd { color: #aa22ff } 20 | /* NameEntity */ .chroma .ni { color: #999999; font-weight: bold } 21 | /* NameException */ .chroma .ne { color: #d2413a; font-weight: bold } 22 | /* NameFunction */ .chroma .nf { color: #00a000 } 23 | /* NameLabel */ .chroma .nl { color: #a0a000 } 24 | /* NameNamespace */ .chroma .nn { color: #0000ff; font-weight: bold } 25 | /* NameTag */ .chroma .nt { color: #008000; font-weight: bold } 26 | /* NameVariable */ .chroma .nv { color: #b8860b } 27 | /* LiteralString */ .chroma .s { color: #bb4444 } 28 | /* LiteralStringAffix */ .chroma .sa { color: #bb4444 } 29 | /* LiteralStringBacktick */ .chroma .sb { color: #bb4444 } 30 | /* LiteralStringChar */ .chroma .sc { color: #bb4444 } 31 | /* LiteralStringDelimiter */ .chroma .dl { color: #bb4444 } 32 | /* LiteralStringDoc */ .chroma .sd { color: #bb4444; font-style: italic } 33 | /* LiteralStringDouble */ .chroma .s2 { color: #bb4444 } 34 | /* LiteralStringEscape */ .chroma .se { color: #bb6622; font-weight: bold } 35 | /* LiteralStringHeredoc */ .chroma .sh { color: #bb4444 } 36 | /* LiteralStringInterpol */ .chroma .si { color: #bb6688; font-weight: bold } 37 | /* LiteralStringOther */ .chroma .sx { color: #008000 } 38 | /* LiteralStringRegex */ .chroma .sr { color: #bb6688 } 39 | /* LiteralStringSingle */ .chroma .s1 { color: #bb4444 } 40 | /* LiteralStringSymbol */ .chroma .ss { color: #b8860b } 41 | /* LiteralNumber */ .chroma .m { color: #666666 } 42 | /* LiteralNumberBin */ .chroma .mb { color: #666666 } 43 | /* LiteralNumberFloat */ .chroma .mf { color: #666666 } 44 | /* LiteralNumberHex */ .chroma .mh { color: #666666 } 45 | /* LiteralNumberInteger */ .chroma .mi { color: #666666 } 46 | /* LiteralNumberIntegerLong */ .chroma .il { color: #666666 } 47 | /* LiteralNumberOct */ .chroma .mo { color: #666666 } 48 | /* Operator */ .chroma .o { color: #666666 } 49 | /* OperatorWord */ .chroma .ow { color: #aa22ff; font-weight: bold } 50 | /* Comment */ .chroma .c { color: #008800; font-style: italic } 51 | /* CommentHashbang */ .chroma .ch { color: #008800; font-style: italic } 52 | /* CommentMultiline */ .chroma .cm { color: #008800; font-style: italic } 53 | /* CommentSingle */ .chroma .c1 { color: #008800; font-style: italic } 54 | /* CommentSpecial */ .chroma .cs { color: #008800; font-weight: bold } 55 | /* CommentPreproc */ .chroma .cp { color: #008800 } 56 | /* CommentPreprocFile */ .chroma .cpf { color: #008800 } 57 | /* GenericDeleted */ .chroma .gd { color: #a00000 } 58 | /* GenericEmph */ .chroma .ge { font-style: italic } 59 | /* GenericError */ .chroma .gr { color: #ff0000 } 60 | /* GenericHeading */ .chroma .gh { color: #000080; font-weight: bold } 61 | /* GenericInserted */ .chroma .gi { color: #00a000 } 62 | /* GenericOutput */ .chroma .go { color: #888888 } 63 | /* GenericPrompt */ .chroma .gp { color: #000080; font-weight: bold } 64 | /* GenericStrong */ .chroma .gs { font-weight: bold } 65 | /* GenericSubheading */ .chroma .gu { color: #800080; font-weight: bold } 66 | /* GenericTraceback */ .chroma .gt { color: #0044dd } 67 | /* GenericUnderline */ .chroma .gl { text-decoration: underline } 68 | /* TextWhitespace */ .chroma .w { color: #bbbbbb } 69 | -------------------------------------------------------------------------------- /website/layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
3 |
4 |
5 | Settings Logo 6 |
7 |
8 |
9 |
10 |

The community driven comparison of modern open source configuration management languages, patterns and solutions

11 |
Join our efforts: Contribute now!
12 | 39 |
40 |
41 |
42 |
43 |
44 |
45 | 46 |

Goal

47 |

The goal of this project is to allow everyone to explore and find open source solution for the configuration management that meets various requirements. 48 | Open source community does not have a clear solution yet and mistakes are overlooked. We want to fix it by providing overview of what we have now and 49 | what might be missing.

50 |
51 |
52 | 53 |

Cloud Native

54 |

We are aiming for the configuration languages and patterns that helps to operate a reliable production infrastructure on scale. 55 | We explored the mandatory and optional requirements. We want to provide factual comparison on each of solution helps to solve the same problems for a fair comparison. 56 | See comparision and showcases for details!

57 |
58 |
59 | 60 |

Open Source

61 |

We believe in open source and sharing. Everything in this project is free and open. It is mean to be community driven, so your help is wanted! We are all 62 | together seeking the best solution for our needs. This also means that the solution we are seeking for has to be open source as well. No hidden sales, or advertisement.

63 |
64 |
65 | 66 |

Authors

67 |

We are group of passionated people, experienced developers and SREs from different companies. We have different opinions, we maintain different cloud native open source projects like 68 | Kubernetes, CoreDNS and Thanos. However, we share the same goal. We are doing this free and for a good cause! Want to give feedback, help us or contribute? Reach us!

69 |
70 |
71 |
72 | {{ end }} 73 | -------------------------------------------------------------------------------- /website/layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 12 | 13 | 14 | 15 | {{ block "title" . }}{{ .Site.Title }}{{ end }} 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 48 | {{ block "main" . }}{{ end }} 49 | 82 | 84 | 86 | 88 | {{ if eq ( getenv "HUGO_ENV" ) "production" }} 89 | {{ template "_internal/google_analytics_async.html" . }} 90 | {{ end }} 91 | 92 | -------------------------------------------------------------------------------- /website/static/settings-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 10 | 12 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /website/static/settings-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 86 | 87 | 88 | 93 | 94 | 99 | 100 | 101 | 102 | 103 | 106 | 108 | 109 | 110 | 113 | 116 | 119 | 122 | 126 | 130 | 133 | 135 | 138 | 141 | 144 | 147 | 152 | 158 | 172 | 177 | 181 | 194 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | --------------------------------------------------------------------------------