Skip to content

Commit d1c0a88

Browse files
committed
Revert change to default executor (from k8s to docker)
1 parent dbc5349 commit d1c0a88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/default-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ AWSBatch:
299299
# Kubernetes describes the configuration for the Kubernetes compute backend.
300300
Kubernetes:
301301
# The executor used to execute tasks. Available executors: docker, kubernetes
302-
Executor: "kubernetes"
302+
Executor: "docker"
303303
# Turn off task state reconciler. When enabled, Funnel communicates with Kubernetes
304304
# to find tasks that are stuck in a queued state or errored and
305305
# updates the task state accordingly.

config/default.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func DefaultConfig() Config {
166166
executorTemplate := intern.MustAsset("config/kubernetes-executor-template.yaml")
167167
pvTemplate := intern.MustAsset("config/kubernetes-pv.yaml")
168168
pvcTemplate := intern.MustAsset("config/kubernetes-pvc.yaml")
169-
c.Kubernetes.Executor = "kubernetes"
169+
c.Kubernetes.Executor = "docker"
170170
c.Kubernetes.Namespace = "default"
171171
c.Kubernetes.ServiceAccount = "funnel-sa"
172172
c.Kubernetes.Template = string(kubernetesTemplate)

0 commit comments

Comments
 (0)