Skip to content

Commit

Permalink
Revert change to default executor (from k8s to docker)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 committed Jan 8, 2025
1 parent e58dbbb commit 4cdeba1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ AWSBatch:
# Kubernetes describes the configuration for the Kubernetes compute backend.
Kubernetes:
# The executor used to execute tasks. Available executors: docker, kubernetes
Executor: "kubernetes"
Executor: "docker"
# Turn off task state reconciler. When enabled, Funnel communicates with Kubernetes
# to find tasks that are stuck in a queued state or errored and
# updates the task state accordingly.
Expand Down
2 changes: 1 addition & 1 deletion config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func DefaultConfig() Config {
executorTemplate := intern.MustAsset("config/kubernetes-executor-template.yaml")
pvTemplate := intern.MustAsset("config/kubernetes-pv.yaml")
pvcTemplate := intern.MustAsset("config/kubernetes-pvc.yaml")
c.Kubernetes.Executor = "kubernetes"
c.Kubernetes.Executor = "docker"
c.Kubernetes.Namespace = "default"
c.Kubernetes.ServiceAccount = "funnel-sa"
c.Kubernetes.Template = string(kubernetesTemplate)
Expand Down

0 comments on commit 4cdeba1

Please sign in to comment.