Skip to content

Development

Setup a local Kubernetes cluster and deploy the Helm charts.

Requirements

Setup the required tools:

Clone the repository:

bash
git clone git@github.com:Mint-System/Kubernetes-Build.git
cd Kubernetes-Build

Start Kubernetes cluster

Start cluster with kind.

bash
task start-kind

Prepeare cluster

Add Helm chart repos.

bash
task add-repos

Setup the local hostnames.

bash
task setup-hosts

Install the CloudNativePG chart:

bash
task install-chart cnpg test/knd.local.yaml

Install ingress-nginx in the current cluster.

bash
task install-chart ingress-nginx test/knd.local.yaml

Install k8up in the current cluster.

bash
task install-chart k8up test/knd.local.yaml

Deploy Odoo chart

Load the local image into the cluster.

bash
task load-image mintsystem/odoo:18.0.20251008

Setup secrets according to the Odoo chart readme.

Install the Odoo chart:

bash
task install-chart odoo test/odoo.knd.local.yaml

The Odoo database will be initialized automatically.

Forward the ingress-nginx port.

bash
task forward ingress-nginx

Deploy Nextcloud chart

Load the local image into the cluster.

bash
task load-image nextcloud:32-apache

Setup secrets according to the Nextcloud chart readme.

Install the Nextcloud chart:

bash
task install-chart nextcloud test/nextcloud.knd.local.yaml

The Odoo database will be initialized automatically.

Forward the ingress-nginx port.

bash
task forward ingress-nginx