2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
|
|
|
factory :cluster_platform_kubernetes, class: Clusters::Platforms::Kubernetes do
|
|
|
|
cluster
|
|
|
|
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
|
|
|
|
api_url 'https://kubernetes.example.com'
|
|
|
|
username 'xxxxxx'
|
|
|
|
password 'xxxxxx'
|
|
|
|
|
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
|
|
|
|
authorization_type :abac
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|