├── 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 |