36 lines
728 B
YAML
36 lines
728 B
YAML
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||
|
kind: Kustomization
|
||
|
|
||
|
namespace: nocodb
|
||
|
|
||
|
images:
|
||
|
- name: nocodb
|
||
|
newName: docker.io/nocodb/nocodb
|
||
|
newTag: "0.202.5"
|
||
|
|
||
|
commonLabels:
|
||
|
app.kubernetes.io/instance: icb4dc0de
|
||
|
app.kubernetes.io/managed-by: kustomize
|
||
|
|
||
|
resources:
|
||
|
- "resources/namespace.yaml"
|
||
|
- "resources/pvc.yaml"
|
||
|
- "resources/deployment.yaml"
|
||
|
- "resources/service.yaml"
|
||
|
- "resources/ingress.yaml"
|
||
|
|
||
|
generators:
|
||
|
- ./secret-generator.yaml
|
||
|
|
||
|
secretGenerator:
|
||
|
- name: nocodb-base-config
|
||
|
envs:
|
||
|
- "config/base.env"
|
||
|
|
||
|
helmCharts:
|
||
|
- name: keydb
|
||
|
repo: https://enapter.github.io/charts/
|
||
|
releaseName: nocodb-keydb
|
||
|
namespace: nocodb
|
||
|
version: "0.48.0"
|
||
|
valuesFile: config/values.keydb.yaml
|