Skip to content

Commit 62f20a1

Browse files
committed
fix: remove argo-workflows executor ephemeral-storage limits
1 parent 1ae464a commit 62f20a1

File tree

1 file changed

+33
-31
lines changed

1 file changed

+33
-31
lines changed

charts/gitops-runtime/values.yaml

+33-31
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ global:
2424
# -- Whether to create the secret.
2525
create: false
2626
# -- The secret key that holds the ca bundle
27-
key: 'ca-bundle.crt'
27+
key: "ca-bundle.crt"
2828
# Annotations
2929
annotations: {}
3030
# Certificate content
@@ -38,7 +38,8 @@ global:
3838
workflowPipelinesGitWebhooks:
3939
# Annotations on the secret resource
4040
annotatins: {}
41-
certificates: {}
41+
certificates:
42+
{}
4243
# server.example.com: |
4344
# -----BEGIN CERTIFICATE-----
4445
# ...
@@ -81,10 +82,10 @@ global:
8182
# -- secretKeyReference for Git credentials password. Provide name and key fields.
8283
secretKeyRef: {}
8384

84-
# -- Runtime eventbus
85+
# -- Runtime eventbus
8586
eventBus:
86-
# -- Eventbus name
87-
name: 'codefresh-eventbus'
87+
# -- Eventbus name
88+
name: "codefresh-eventbus"
8889
# -- Annotations on EventBus resource
8990
annotations: {}
9091
# -- Pod disruption budget for the eventbus
@@ -127,9 +128,9 @@ sealed-secrets:
127128
fullnameOverride: sealed-secrets-controller
128129
keyrenewperiod: "720h"
129130
image:
130-
registry: 'quay.io'
131-
repository: 'codefresh/sealed-secrets-controller'
132-
tag: '0.27.1'
131+
registry: "quay.io"
132+
repository: "codefresh/sealed-secrets-controller"
133+
tag: "0.27.1"
133134
resources:
134135
limits:
135136
cpu: 500m
@@ -153,7 +154,7 @@ argo-cd:
153154
application.resourceTrackingMethod: annotation+label
154155
params:
155156
server.insecure: true
156-
application.namespaces: 'cf-*'
157+
application.namespaces: "cf-*"
157158

158159
eventReporter:
159160
# -- Installs new event reporter component to cluster
@@ -201,7 +202,7 @@ argo-workflows:
201202
server:
202203
# -- auth-mode needs to be set to client to be able to see workflow logs from Codefresh UI
203204
authModes:
204-
- client
205+
- client
205206
# -- Do not change. Workflows UI is only accessed through internal router, changing this values will break routing to workflows native UI from Codefresh.
206207
baseHref: /workflows/
207208
crds:
@@ -210,8 +211,6 @@ argo-workflows:
210211
# executor controls how the init and wait container should be customized
211212
executor:
212213
resources:
213-
limits:
214-
ephemeral-storage: 50Mi
215214
requests:
216215
ephemeral-storage: 10Mi
217216
# mainContainer adds default config for main container that could be overriden in workflows template
@@ -320,7 +319,8 @@ internal-router:
320319
podLabels: {}
321320
podSecurityContext: {}
322321
# -- Environment variables - see values.yaml inside the chart for usage
323-
env: {}
322+
env:
323+
{}
324324
# NAMESPACE:
325325
# valueFrom:
326326
# fieldRef:
@@ -358,11 +358,11 @@ internal-router:
358358
# -- Internal routing settings. Do not change this unless you are absolutely certain - the values are determined by chart's logic.
359359
routing: {}
360360
# Example of values:
361-
# workflows:
362-
# enabled: true
363-
# internalUrl: "https://argo-server1:2746/"
364-
# app-proxy:
365-
# internalUrl: "http://cap-app-proxy:3017"
361+
# workflows:
362+
# enabled: true
363+
# internalUrl: "https://argo-server1:2746/"
364+
# app-proxy:
365+
# internalUrl: "http://cap-app-proxy:3017"
366366

367367
dnsService: kube-dns
368368
dnsNamespace: kube-system
@@ -410,11 +410,11 @@ app-proxy:
410410
# -- Configurations for image enrichment workflow
411411
config:
412412
# -- The name of the configmap to use as synchronization semaphore, see https://argoproj.github.io/argo-workflows/synchronization/
413-
concurrencyCmName: 'workflow-synchronization-semaphores'
413+
concurrencyCmName: "workflow-synchronization-semaphores"
414414
# -- The name of the key in the configmap to use as synchronization semaphore
415-
concurrencyCmKey: 'imageReportExecutor'
415+
concurrencyCmKey: "imageReportExecutor"
416416
# -- Pod grabage collection strategy. By default all pods will be deleted when the enrichment workflow completes.
417-
podGcStrategy: 'OnWorkflowCompletion'
417+
podGcStrategy: "OnWorkflowCompletion"
418418
# -- Number of seconds to live after completion
419419
ttlAfterCompletionInSeconds: 86400
420420
# -- Maximum allowed runtime for the enrichment workflow
@@ -458,10 +458,10 @@ app-proxy:
458458
resources:
459459
limits:
460460
memory: 512Mi
461-
cpu: '1'
461+
cpu: "1"
462462
requests:
463463
memory: 256Mi
464-
cpu: '0.2'
464+
cpu: "0.2"
465465

466466
# -- Extra volume mounts for init container
467467
extraVolumeMounts: []
@@ -495,7 +495,8 @@ app-proxy:
495495

496496
podLabels: {}
497497

498-
podSecurityContext: {}
498+
podSecurityContext:
499+
{}
499500
# fsGroup: 2000
500501

501502
securityContext:
@@ -531,13 +532,13 @@ app-proxy:
531532

532533
resources:
533534
requests:
534-
memory: '512Mi'
535-
ephemeral-storage: '2Gi'
536-
cpu: '100m'
535+
memory: "512Mi"
536+
ephemeral-storage: "2Gi"
537+
cpu: "100m"
537538
limits:
538-
memory: '1Gi'
539-
ephemeral-storage: '6Gi'
540-
cpu: '1500m'
539+
memory: "1Gi"
540+
ephemeral-storage: "6Gi"
541+
cpu: "1500m"
541542

542543
nodeSelector: {}
543544
tolerations: []
@@ -575,7 +576,8 @@ gitops-operator:
575576
additionalLabels: {}
576577

577578
env: {}
578-
image: {}
579+
image:
580+
{}
579581
# -- defaults
580582
# repository: quay.io/codefresh/codefresh-gitops-operator
581583
# tag: 'v{{ .Chart.AppVersion }}'

0 commit comments

Comments
 (0)