Example

Commands to Run

This should be done after files are set up

  1. Install Helm chart (look in helm-commands.md)

  2. List the pods to check if they are healthy, if not, check logs (look in kubernetes-commands.md)

Tree Structure

.
└── Chart.yml
└── values.yml
├── volumes
│   └── volume.txt
├── templates
│   └──_helpers.tpl
│   ├── ingress
│       └── ingress.yaml
│   ├── example-service
│       └── example-service-config.yaml
│       └── example-service-deployment.yaml
│       └── example-service-service.yaml
│   ├── mariadb
│       └── mariadb-deployment.yaml
│       └── mariadb-pvc.yaml
│       └── mariadb-service.yaml
│   ├── secrets
│       └── mariadb-secrets.yaml

Files

Chart.yaml

values.yaml

_helpers.tpl

application-deployment.yaml

application-config.yaml

application-service.yaml

mariadb-deployment.yaml

mariadb-pvc.yaml

mariadb-service.yaml

mariadb-secrets.yaml

ingress.yaml

Last updated

Was this helpful?