debian-mirror-gitlab/spec/factories/clusters/platforms/kubernetes.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
750 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
FactoryBot.define do
2020-03-13 15:44:24 +05:30
factory :cluster_platform_kubernetes, class: 'Clusters::Platforms::Kubernetes' do
2019-12-26 22:10:19 +05:30
association :cluster, platform_type: :kubernetes, provider_type: :user
2019-12-21 20:55:43 +05:30
namespace { nil }
api_url { 'https://kubernetes.example.com' }
2018-12-05 23:21:45 +05:30
token { 'a' * 40 }
2018-03-17 18:26:18 +05:30
trait :configured do
2019-12-21 20:55:43 +05:30
api_url { 'https://kubernetes.example.com' }
username { 'xxxxxx' }
password { 'xxxxxx' }
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
before(:create) do |platform_kubernetes, evaluator|
2018-03-17 18:26:18 +05:30
pem_file = File.expand_path(Rails.root.join('spec/fixtures/clusters/sample_cert.pem'))
platform_kubernetes.ca_cert = File.read(pem_file)
end
end
2018-11-20 20:47:30 +05:30
2019-02-15 15:39:39 +05:30
trait :rbac_disabled do
2019-12-21 20:55:43 +05:30
authorization_type { :abac }
2018-11-20 20:47:30 +05:30
end
2018-03-17 18:26:18 +05:30
end
end