You must structure your git repository based on the following guidelines, for your applications to be processed properly by Kommander so that they can be deployed.
Git repository directory structure
Use the following basic directory structure for your git repository:
├── helm-repositories
│ ├── <helm repository 1>
│ │ ├── kustomization.yaml
│ │ └── <helm repository name>.yaml
│ └── <helm repository 2>
│ ├── kustomization.yaml
│ └── <helm repository name>.yaml
└── services
├── <app name>
│ ├── <app version1> # semantic version of the app helm chart. e.g., 1.2.3
│ │ ├── defaults
│ │ │ ├── cm.yaml
│ │ │ └── kustomization.yaml
│ │ ├── <app name>.yaml
│ │ └── kustomization.yaml
│ ├── <app version2> # another semantic version of the app helm chart. e.g., 2.3.4
│ │ ├── defaults
│ │ │ ├── cm.yaml
│ │ │ └── kustomization.yaml
│ │ ├── <app name>.yaml
│ │ └── kustomization.yaml
│ └── metadata.yaml
└── <another app name>
...
-
Define applications in the
services/
directory. -
You can define multiple versions of an application, under different directories nested under the
services/<app name>/
directory. -
Define application manifests, such as a HelmRelease, under each versioned directory
services/<app name>/<version>/
in<app name>.yaml
which is listed in thekustomization.yaml
Kubernetes Kustomization file. For more information, see the Kubernetes Kustomization docs. -
Define the default values ConfigMap for
HelmReleases
in theservices/<app name>/<version>/defaults
directory, accompanied by akustomization.yaml
Kubernetes Kustomization file pointing to theConfigMap
file. -
Define the
metadata.yaml
of each application under theservices/<app name>/
directory. For more information, see the Application Metadata docs.
See the DKP Catalog repository for an example of how to structure custom catalog Git repositories.
Helm Repositories
You must include the HelmRepository
that is referenced in each HelmRelease
's Chart
spec.
Each services/<app name>/<version>/kustomization.yaml
must include the path of the yaml file that defines the HelmRepository
. For example:
# services/<app name>/<version>/kustomization.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- <app name>.yaml
- ../../../helm-repositories/<helm repository 1>
For more information, see the flux documentation about HelmRepositories.
Substitution variables
Some substitution variables are provided.
${releaseName}
: For each App deployment, this variable is set to theAppDeployment
name. Use this variable to prefix the names of any resources that are defined in the application directory in the Git repository so that multiple instances of the same application can be deployed. If you create resources without using thereleaseName
prefix (or suffix) in the name field, there can be conflicts if the same named resource is created in that same namespace.${releaseNamespace}
: The namespace of the Workspace.${workspaceNamespace}
: The namespace of the Workspace that the Workspace belongs to.