Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 15:08:19 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 15:08:19 +0300
commitbae24262df90b1b16e012360d04a28d54a07be3f (patch)
treeab1dc4eba454832b1514d074de1e4a79624ad2c3 /spec/factories
parent589c0d68c188079dd5fd463e70d0c93631086998 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/clusters/clusters.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/factories/clusters/clusters.rb b/spec/factories/clusters/clusters.rb
index 843f87ef7d6..9e052f442e7 100644
--- a/spec/factories/clusters/clusters.rb
+++ b/spec/factories/clusters/clusters.rb
@@ -86,6 +86,19 @@ FactoryBot.define do
application_helm factory: %i(clusters_applications_helm installed)
end
+ trait :with_all_applications do
+ application_helm factory: %i(clusters_applications_helm installed)
+ application_ingress factory: %i(clusters_applications_ingress installed)
+ application_cert_manager factory: %i(clusters_applications_cert_manager installed)
+ application_crossplane factory: %i(clusters_applications_crossplane installed)
+ application_prometheus factory: %i(clusters_applications_prometheus installed)
+ application_runner factory: %i(clusters_applications_runner installed)
+ application_jupyter factory: %i(clusters_applications_jupyter installed)
+ application_knative factory: %i(clusters_applications_knative installed)
+ application_elastic_stack factory: %i(clusters_applications_elastic_stack installed)
+ application_fluentd factory: %i(clusters_applications_fluentd installed)
+ end
+
trait :with_domain do
domain { 'example.com' }
end