2019-07-25 01:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2017-11-06 09:06:10 -05:00
|
|
|
factory :cluster_platform_kubernetes, class: Clusters::Platforms::Kubernetes do
|
2017-10-29 14:48:45 -04:00
|
|
|
cluster
|
2019-10-01 20:06:26 -04:00
|
|
|
namespace { nil }
|
|
|
|
api_url { 'https://kubernetes.example.com' }
|
2018-09-20 13:02:36 -04:00
|
|
|
token { 'a' * 40 }
|
2017-10-29 14:48:45 -04:00
|
|
|
|
2017-10-30 08:55:18 -04:00
|
|
|
trait :configured do
|
2019-10-01 20:06:26 -04:00
|
|
|
api_url { 'https://kubernetes.example.com' }
|
|
|
|
username { 'xxxxxx' }
|
|
|
|
password { 'xxxxxx' }
|
2017-10-31 04:47:48 -04:00
|
|
|
|
2018-11-06 03:55:10 -05:00
|
|
|
before(:create) do |platform_kubernetes, evaluator|
|
2017-10-31 04:47:48 -04:00
|
|
|
pem_file = File.expand_path(Rails.root.join('spec/fixtures/clusters/sample_cert.pem'))
|
|
|
|
platform_kubernetes.ca_cert = File.read(pem_file)
|
|
|
|
end
|
2017-10-30 08:55:18 -04:00
|
|
|
end
|
2018-09-06 06:03:38 -04:00
|
|
|
|
2018-12-13 10:39:44 -05:00
|
|
|
trait :rbac_disabled do
|
2019-10-01 20:06:26 -04:00
|
|
|
authorization_type { :abac }
|
2018-09-06 06:03:38 -04:00
|
|
|
end
|
2017-10-29 14:48:45 -04:00
|
|
|
end
|
|
|
|
end
|