diff options
author | Tiger Watson <twatson@gitlab.com> | 2019-03-26 09:59:48 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2019-03-26 09:59:48 +0000 |
commit | 76d281881a945518fe4565e1dc71f6a3bc28c575 (patch) | |
tree | 3bece712d331a02e52ac9735fb4f85ac70b08ef5 /spec/services | |
parent | c77a1978cdadc9ae3fcfe7b1b31e535af80e61c9 (diff) | |
download | gitlab-ce-76d281881a945518fe4565e1dc71f6a3bc28c575.tar.gz |
Allow runners to be installed on group clusters
A runner installed on a cluster will now use the
cluster's `cluster_type` as its `runner_type`.
Diffstat (limited to 'spec/services')
-rw-r--r-- | spec/services/clusters/applications/create_service_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/clusters/applications/create_service_spec.rb b/spec/services/clusters/applications/create_service_spec.rb index cbdef008b07..20555873503 100644 --- a/spec/services/clusters/applications/create_service_spec.rb +++ b/spec/services/clusters/applications/create_service_spec.rb @@ -150,7 +150,7 @@ describe Clusters::Applications::CreateService do where(:application, :association, :allowed, :pre_create_helm) do 'helm' | :application_helm | true | false 'ingress' | :application_ingress | true | true - 'runner' | :application_runner | false | true + 'runner' | :application_runner | true | true 'jupyter' | :application_jupyter | false | true 'prometheus' | :application_prometheus | false | true end |