2017-10-29 14:48:45 -04:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :platform_kubernetes, class: Clusters::Platforms::Kubernetes do
|
|
|
|
cluster
|
|
|
|
namespace nil
|
2017-11-03 06:05:42 -04:00
|
|
|
api_url 'https://kubernetes.example.com'
|
|
|
|
token 'a' * 40
|
2017-10-29 14:48:45 -04:00
|
|
|
|
2017-10-30 08:55:18 -04:00
|
|
|
trait :configured do
|
|
|
|
api_url 'https://kubernetes.example.com'
|
|
|
|
token 'a' * 40
|
|
|
|
username 'xxxxxx'
|
|
|
|
password 'xxxxxx'
|
2017-10-31 04:47:48 -04:00
|
|
|
|
|
|
|
after(:create) do |platform_kubernetes, evaluator|
|
|
|
|
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
|
2017-10-29 14:48:45 -04:00
|
|
|
end
|
|
|
|
end
|