-
steeve.chailloux authoredsteeve.chailloux authored
SPEC.md 1.50 KiB
Specification
Directory layout:
.
├── base
│ ├── odoo.yml
│ ├── postgres.yml
│ └── ytt
│ ├── patch.yml
│ ├── resources.yml
│ └── values.yml
├── beaver.yml
├── builds
│ ├── prod
│ │ ├── deployment.odoo.yml
│ │ └── statefulset.postgresql.yml
│ └── test
│ ├── deployment.odoo.yml
│ └── statefulset.postgresql.yml
├── environments
│ ├── prod
│ │ ├── odoo.yml
│ │ ├── postgres.yml
│ │ └── ytt
│ │ ├── patch.yml
│ │ └── values.yml
│ └── test
│ ├── beaver.yml
│ └── odoo.yml
└── vendir.yml
-
beaver.yml
: beaver.cloudcrane.io config file.- filename is mandatory, cannot use another name (must be uniq per project)
-
<other-files>.yml
: charts (static) values files
Command: beaver build <namespace>
Should build charts, exemple:
helm template postgresql vendor/helm/postgresql \
--namespace <namespace> \
-f /tmp/values-from-config.yaml \
-f base/postgres.yaml \
(if ./<namespace>/postgres.yaml then -f ./<namespace>/postgres.yaml fi) \
> /tmp/resources.yaml
if ./base/ytt then
TODO: exec ytt patches
fi
if .//beaver.yaml then
TODO: exec beaver build
fi
if .//ytt then
TODO: exec ytt patches
fi