fix: rename env-values.yaml to values-env.yaml
This commit is contained in:
@@ -26,7 +26,7 @@ spec:
|
|||||||
helm:
|
helm:
|
||||||
valueFiles:
|
valueFiles:
|
||||||
- $values/charts/cerbos/values.yaml
|
- $values/charts/cerbos/values.yaml
|
||||||
- $values/charts/cerbos/{{ env }}-values.yaml
|
- $values/charts/cerbos/values-{{ env }}.yaml
|
||||||
- repoURL: https://gitlab.com/oceanbox/manifests.git
|
- repoURL: https://gitlab.com/oceanbox/manifests.git
|
||||||
targetRevision: dev
|
targetRevision: dev
|
||||||
ref: values
|
ref: values
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ spec:
|
|||||||
chart: rabbitmq
|
chart: rabbitmq
|
||||||
helm:
|
helm:
|
||||||
valueFiles:
|
valueFiles:
|
||||||
- $values/charts/rabbitmq/{{ env }}-values.yaml
|
- $values/charts/rabbitmq/values-{{ env }}.yaml
|
||||||
- repoURL: https://gitlab.com/oceanbox/manifests.git
|
- repoURL: https://gitlab.com/oceanbox/manifests.git
|
||||||
targetRevision: dev
|
targetRevision: dev
|
||||||
path: charts/rabbitmq/{{ env }}
|
path: charts/rabbitmq/{{ env }}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ fi
|
|||||||
|
|
||||||
[ -f chart/values.yaml ] && VALUES="-f chart/values.yaml"
|
[ -f chart/values.yaml ] && VALUES="-f chart/values.yaml"
|
||||||
[ -f values.yaml ] && VALUES="$VALUES -f values.yaml"
|
[ -f values.yaml ] && VALUES="$VALUES -f values.yaml"
|
||||||
[ -f $PARAM_ENV-values.yaml ] && VALUES="$VALUES -f $PARAM_ENV-values.yaml"
|
[ -f values-$PARAM_ENV.yaml ] && VALUES="$VALUES -f values-$PARAM_ENV.yaml"
|
||||||
VALUES="$VALUES -f parameters.yaml"
|
VALUES="$VALUES -f parameters.yaml"
|
||||||
|
|
||||||
mkdir -p base
|
mkdir -p base
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
fullnameOverride: archmeister
|
|
||||||
|
|
||||||
image:
|
|
||||||
tag: latest
|
|
||||||
|
|
||||||
ingress:
|
|
||||||
annotations:
|
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-staging
|
|
||||||
nginx.ingress.kubernetes.io/whitelist-source-range: 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
|
|
||||||
internal:
|
|
||||||
annotations: {}
|
|
||||||
# nginx.ingress.kubernetes.io/whitelist-source-range: 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
|
|
||||||
|
|
||||||
cluster:
|
|
||||||
backupEnabled: false
|
|
||||||
instances: 1
|
|
||||||
imageName: ghcr.io/cloudnative-pg/postgis:15-3.3
|
|
||||||
bootstrap:
|
|
||||||
initdb:
|
|
||||||
postInitTemplateSQL:
|
|
||||||
- CREATE EXTENSION postgis;
|
|
||||||
- CREATE EXTENSION postgis_topology;
|
|
||||||
- CREATE EXTENSION fuzzystrmatch;
|
|
||||||
- CREATE EXTENSION postgis_tiger_geocoder;
|
|
||||||
- ALTER USER app WITH SUPERUSER;
|
|
||||||
Reference in New Issue
Block a user