use separate postgres
ci / build (push) Successful in 9s
Details
ci / build (push) Successful in 9s
Details
This commit is contained in:
parent
c0617aef05
commit
4dbcc47b63
|
@ -1,8 +1,50 @@
|
||||||
|
---
|
||||||
|
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||||
|
kind: HelmRepository
|
||||||
|
metadata:
|
||||||
|
name: bitnami
|
||||||
|
namespace: futureporn
|
||||||
|
spec:
|
||||||
|
interval: 24h
|
||||||
|
url: https://charts.bitnami.com/bitnami
|
||||||
|
---
|
||||||
|
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
||||||
|
kind: HelmRelease
|
||||||
|
metadata:
|
||||||
|
name: postgres
|
||||||
|
namespace: futureporn
|
||||||
|
spec:
|
||||||
|
interval: 24h
|
||||||
|
chart:
|
||||||
|
spec:
|
||||||
|
chart: postgres
|
||||||
|
version: "12.3.1"
|
||||||
|
sourceRef:
|
||||||
|
kind: HelmRepository
|
||||||
|
name: windmill
|
||||||
|
values:
|
||||||
|
postgresql:
|
||||||
|
fullnameOverride: windmill-postgresql-mine
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
storageClass: "vultr-block-storage"
|
||||||
|
size: 7Gi
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: "1"
|
||||||
|
memory: "2Gi"
|
||||||
|
requests:
|
||||||
|
cpu: "250m"
|
||||||
|
memory: "1024Mi"
|
||||||
|
auth:
|
||||||
|
postgresPassword: windmill
|
||||||
|
database: windmill
|
||||||
|
---
|
||||||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||||
kind: HelmRepository
|
kind: HelmRepository
|
||||||
metadata:
|
metadata:
|
||||||
name: windmill
|
name: windmill
|
||||||
namespace: default
|
namespace: futureporn
|
||||||
spec:
|
spec:
|
||||||
interval: 10m
|
interval: 10m
|
||||||
url: https://windmill-labs.github.io/windmill-helm-charts
|
url: https://windmill-labs.github.io/windmill-helm-charts
|
||||||
|
@ -11,7 +53,7 @@ apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
||||||
kind: HelmRelease
|
kind: HelmRelease
|
||||||
metadata:
|
metadata:
|
||||||
name: windmill
|
name: windmill
|
||||||
namespace: default
|
namespace: futureporn
|
||||||
spec:
|
spec:
|
||||||
interval: 60m
|
interval: 60m
|
||||||
chart:
|
chart:
|
||||||
|
@ -23,18 +65,13 @@ spec:
|
||||||
name: windmill
|
name: windmill
|
||||||
values:
|
values:
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: false
|
||||||
global:
|
|
||||||
primary:
|
|
||||||
persistence:
|
|
||||||
storageClass: "vultr-block-storage"
|
|
||||||
size: 7Gi
|
|
||||||
windmill:
|
windmill:
|
||||||
# domain as shown in browser, this is used together with `baseProtocol` as part of the BASE_URL environment variable in app and worker container and in the ingress resource, if enabled
|
# domain as shown in browser, this is used together with `baseProtocol` as part of the BASE_URL environment variable in app and worker container and in the ingress resource, if enabled
|
||||||
baseDomain: windmill2.sbtp.xyz
|
baseDomain: windmill2.sbtp.xyz
|
||||||
baseProtocol: https
|
baseProtocol: https
|
||||||
# postgres URI, pods will crashloop if database is unreachable, sets DATABASE_URL environment variable in app and worker container
|
# postgres URI, pods will crashloop if database is unreachable, sets DATABASE_URL environment variable in app and worker container
|
||||||
databaseUrl: postgres://postgres:windmill@windmill-postgresql/windmill?sslmode=disable
|
databaseUrl: valueFrom:postgres://postgres:windmill@windmill-postgresql/windmill?sslmode=disable
|
||||||
# replica for the application app
|
# replica for the application app
|
||||||
appReplicas: 2
|
appReplicas: 2
|
||||||
# replicas for the workers, jobs are executed on the workers
|
# replicas for the workers, jobs are executed on the workers
|
||||||
|
|
Loading…
Reference in New Issue