27 lines
583 B
YAML
27 lines
583 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- cm-trade-deploy.yaml
|
|
- postgres/service.yaml
|
|
- postgres/statefulset.yaml
|
|
- hasura/service.yaml
|
|
- hasura/deployment.yaml
|
|
- hasura/job-bootstrap.yaml
|
|
- api/service.yaml
|
|
- api/deployment.yaml
|
|
- ingestor/deployment.yaml
|
|
- frontend/service.yaml
|
|
- frontend/deployment.yaml
|
|
|
|
configMapGenerator:
|
|
- name: postgres-initdb
|
|
files:
|
|
- initdb/001_init.sql
|
|
- name: hasura-bootstrap-script
|
|
files:
|
|
- hasura/hasura-bootstrap.mjs
|
|
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|