fix yaml indentation
ci / build (push) Successful in 9s
Details
ci / build (push) Successful in 9s
Details
This commit is contained in:
parent
6ffeff1543
commit
816877462a
|
@ -4,7 +4,7 @@ metadata:
|
||||||
name: windmill
|
name: windmill
|
||||||
namespace: argocd
|
namespace: argocd
|
||||||
finalizers:
|
finalizers:
|
||||||
- resources-finalizer.argocd.argoproj.io
|
- resources-finalizer.argocd.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
destination:
|
destination:
|
||||||
namespace: windmill
|
namespace: windmill
|
||||||
|
@ -30,98 +30,79 @@ spec:
|
||||||
workerGroups:
|
workerGroups:
|
||||||
# The default worker group is the one that will execute jobs with any taggs except the native ones. Windmill has a default worker group configuration for it
|
# The default worker group is the one that will execute jobs with any taggs except the native ones. Windmill has a default worker group configuration for it
|
||||||
- name: "default"
|
- name: "default"
|
||||||
replicas: 3
|
replicas: 3
|
||||||
# -- Annotations to apply to the pods
|
# -- Annotations to apply to the pods
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
# -- Labels to apply to the pods
|
||||||
# -- Labels to apply to the pods
|
labels: {}
|
||||||
labels: {}
|
# -- Node selector to use for scheduling the pods
|
||||||
|
nodeSelector: {}
|
||||||
# -- Node selector to use for scheduling the pods
|
# -- Tolerations to apply to the pods
|
||||||
nodeSelector: {}
|
tolerations: []
|
||||||
|
# -- Affinity rules to apply to the pods
|
||||||
# -- Tolerations to apply to the pods
|
affinity: {}
|
||||||
tolerations: []
|
# -- Resource limits and requests for the pods
|
||||||
|
resources:
|
||||||
# -- Affinity rules to apply to the pods
|
requests:
|
||||||
affinity: {}
|
memory: "1028Mi"
|
||||||
|
cpu: "500m"
|
||||||
# -- Resource limits and requests for the pods
|
limits:
|
||||||
resources:
|
memory: "2048Mi"
|
||||||
requests:
|
cpu: "1000m"
|
||||||
memory: "1028Mi"
|
# -- Extra environment variables to apply to the pods
|
||||||
cpu: "500m"
|
extraEnv: []
|
||||||
limits:
|
# -- Extra sidecar containers
|
||||||
memory: "2048Mi"
|
extraContainers: []
|
||||||
cpu: "1000m"
|
# -- Mode for workers, defaults to "worker" - alternative "agent" requires Enterprise license
|
||||||
|
mode: "worker"
|
||||||
# -- Extra environment variables to apply to the pods
|
|
||||||
extraEnv: []
|
|
||||||
|
|
||||||
# -- Extra sidecar containers
|
|
||||||
extraContainers: []
|
|
||||||
|
|
||||||
# -- Mode for workers, defaults to "worker" - alternative "agent" requires Enterprise license
|
|
||||||
mode: "worker"
|
|
||||||
|
|
||||||
# Thenative worker group will only execute native jobs. Windmill has a default worker group configuration for it
|
# Thenative worker group will only execute native jobs. Windmill has a default worker group configuration for it
|
||||||
- name: "native"
|
- name: "native"
|
||||||
replicas: 4
|
replicas: 4
|
||||||
# -- Resource limits and requests for the pods
|
# -- Resource limits and requests for the pods
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: "128Mi"
|
memory: "128Mi"
|
||||||
cpu: "100m"
|
cpu: "100m"
|
||||||
limits:
|
limits:
|
||||||
memory: "256Mi"
|
memory: "256Mi"
|
||||||
cpu: "200m"
|
cpu: "200m"
|
||||||
|
# -- Extra environment variables to apply to the pods
|
||||||
# -- Extra environment variables to apply to the pods
|
extraEnv: []
|
||||||
extraEnv: []
|
# -- Extra sidecar containers
|
||||||
|
extraContainers: []
|
||||||
# -- Extra sidecar containers
|
# -- Mode for workers, defaults to "worker" - alternative "agent" requires Enterprise license
|
||||||
extraContainers: []
|
mode: "worker"
|
||||||
|
|
||||||
# -- Mode for workers, defaults to "worker" - alternative "agent" requires Enterprise license
|
|
||||||
mode: "worker"
|
|
||||||
|
|
||||||
- name: "gpu"
|
- name: "gpu"
|
||||||
replicas: 0
|
replicas: 0
|
||||||
|
|
||||||
# Use those to override the tag or image used for the app and worker containers. Windmill uses the same image for both.
|
# Use those to override the tag or image used for the app and worker containers. Windmill uses the same image for both.
|
||||||
# By default, if enterprise is enable, the image is set to ghcr.io/windmill-labs/windmill-ee, otherwise the image is set to ghcr.io/windmill-labs/windmill
|
# By default, if enterprise is enable, the image is set to ghcr.io/windmill-labs/windmill-ee, otherwise the image is set to ghcr.io/windmill-labs/windmill
|
||||||
#tag: "mytag"
|
#tag: "mytag"
|
||||||
#image: "ghcr.io/windmill-labs/windmill"
|
#image: "ghcr.io/windmill-labs/windmill"
|
||||||
|
|
||||||
# enable postgres (bitnami) on kubernetes
|
# enable postgres (bitnami) on kubernetes
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
# enable minio (bitnami) on kubernetes
|
# enable minio (bitnami) on kubernetes
|
||||||
minio:
|
minio:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# Configure Ingress
|
# Configure Ingress
|
||||||
ingress:
|
ingress:
|
||||||
className: "nginx"
|
className: "nginx"
|
||||||
|
|
||||||
# enable enterprise features
|
# enable enterprise features
|
||||||
enterprise:
|
enterprise:
|
||||||
# -- enable windmill enterprise, requires license key.
|
# -- enable windmill enterprise, requires license key.
|
||||||
enabled: false
|
enabled: false
|
||||||
enterprise:
|
enterprise:
|
||||||
enable: false
|
enable: false
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
path: /
|
path: /
|
||||||
hosts:
|
|
||||||
- windmill2.sbtp.xyz
|
|
||||||
annotations:
|
|
||||||
kubernetes.io/ingress.class: nginx
|
|
||||||
kubernetes.io/tls-acme: "true"
|
|
||||||
labels: {}
|
|
||||||
tls:
|
|
||||||
- secretName: windmill-tls
|
|
||||||
hosts:
|
hosts:
|
||||||
- windmill2.sbtp.xyz
|
- windmill2.sbtp.xyz
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
kubernetes.io/tls-acme: "true"
|
||||||
|
labels: {}
|
||||||
|
tls:
|
||||||
|
- secretName: windmill-tls
|
||||||
|
hosts:
|
||||||
|
- windmill2.sbtp.xyz
|
||||||
|
|
Loading…
Reference in New Issue