feat: add Windmill deployment
This commit is contained in:
26
argocd/windmill-app.yaml
Normal file
26
argocd/windmill-app.yaml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: windmill
|
||||||
|
namespace: argocd
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
sources:
|
||||||
|
- repoURL: https://windmilleng.github.io/windmill-helm-charts
|
||||||
|
chart: windmill
|
||||||
|
targetRevision: "2.*"
|
||||||
|
helm:
|
||||||
|
valueFiles:
|
||||||
|
- $values/windmill/values.yaml
|
||||||
|
- repoURL: ssh://git@git-ssh.lunarfront.tech/ryan/lunarfront-charts.git
|
||||||
|
targetRevision: main
|
||||||
|
ref: values
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: windmill
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
47
windmill/values.yaml
Normal file
47
windmill/values.yaml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
windmill:
|
||||||
|
databaseUrlSecretName: windmill-db
|
||||||
|
databaseUrlSecretKey: url
|
||||||
|
baseUrl: https://windmill.lunarfront.tech
|
||||||
|
cookieDomain: lunarfront.tech
|
||||||
|
|
||||||
|
app:
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 1000m
|
||||||
|
memory: 512Mi
|
||||||
|
|
||||||
|
worker:
|
||||||
|
replicas: 1
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 2000m
|
||||||
|
memory: 2Gi
|
||||||
|
|
||||||
|
lsp:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
postgresql:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
className: nginx
|
||||||
|
annotations:
|
||||||
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
||||||
|
nginx.ingress.kubernetes.io/proxy-body-size: "0"
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
hosts:
|
||||||
|
- host: windmill.lunarfront.tech
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
tls:
|
||||||
|
- secretName: windmill-lunarfront-tech-tls
|
||||||
|
hosts:
|
||||||
|
- windmill.lunarfront.tech
|
||||||
Reference in New Issue
Block a user