Files
katenary/examples/basic/README.md
Patrice Ferlet 418a0a8029 Use compose-go + improvements (#9)
Use compose-go https://github.com/compose-spec/compose-go  to make Katenary parsing compose file the official way.
Add labels:
- `volume-from` (with `same-pod`) to avoid volume repetition
- `ignore` to ignore a service
- `mapenv` (replaces the `env-to-service`) to map environment to helm variable (as a template string)
- `secret-vars` declares variables as secret values

More:
- Now, environment (as secret vars) are set in values.yaml
- Ingress has got annotations in values.yaml
- Probes (liveness probe) are improved
- fixed code to optimize
- many others fixes about path, bad volume check, refactorisation, tests...
2022-05-08 09:55:25 +02:00

512 B

Basic example

This is a basic example of what can do Katenary with standard docker-compose file.

In this example:

  • depends_on yield a initContainer in the webapp ddeployment to wait for database
  • so we need to declare the listened port inside database container as we don't use it with docker-compose- also, we needed to declare that DB_HOST is actually a service name using mapenv label

Take a look on chart/basic directory to see what katenary convert command has generated.