fix: correct Woodpecker CI v2 format (no pipeline wrapper, when blocks)
This commit is contained in:
@@ -0,0 +1,101 @@
|
||||
# Default values for dcos.
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
maxAge: 8h
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: ghcr.io/celesrenata/dcos
|
||||
pullPolicy: IfNotPresent
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: "1.1.0"
|
||||
|
||||
imagePullSecrets: []
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
serviceAccount:
|
||||
# Specifies whether a service account should be created
|
||||
create: true
|
||||
# Automatically mount a ServiceAccount's API credentials?
|
||||
automount: true
|
||||
# Annotations to add to the service account
|
||||
annotations: {}
|
||||
# The name of the service account to use.
|
||||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podAnnotations: {}
|
||||
podLabels: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext:
|
||||
runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
fsGroup: 1000
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 8080
|
||||
annotations:
|
||||
traefik.ingress.kubernetes.io/affinity: "true"
|
||||
traefik.ingress.kubernetes.io/service.sticky.cookie: "true"
|
||||
traefik.ingress.kubernetes.io/service.sticky.cookie.maxage: "28800"
|
||||
traefik.ingress.kubernetes.io/max-age: "28800"
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
annotations:
|
||||
traefik.ingress.kubernetes.io/max-age: "28800"
|
||||
traefik.ingress.kubernetes.io/router.middlewares: default-dcos-stripprefix@kubernetescrd
|
||||
hosts:
|
||||
- paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
name: dcos.celestium.life
|
||||
tls:
|
||||
- secretName: dcos-cert
|
||||
hosts:
|
||||
- dcos.celestium.life
|
||||
|
||||
resources:
|
||||
limits:
|
||||
cpu: "4"
|
||||
memory: "4Gi"
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: "1Gi"
|
||||
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: http
|
||||
|
||||
autoscaling:
|
||||
enabled: false
|
||||
minReplicas: 1
|
||||
maxReplicas: 10
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
tolerations: []
|
||||
|
||||
affinity: {}
|
||||
|
||||
# DCOS-specific configuration
|
||||
dcos:
|
||||
dataDir: /app/data/memory_store
|
||||
configDir: /app/config
|
||||
logLevel: INFO
|
||||
maxAgents: 100
|
||||
selfOrgEnabled: true
|
||||
decentralized: true
|
||||
Reference in New Issue
Block a user