debian-mirror-gitlab/spec/lib/gitlab/kubernetes/helm/init_command_spec.rb
2018-11-18 11:00:15 +05:30

10 lines
461 B
Ruby

require 'spec_helper'
describe Gitlab::Kubernetes::Helm::InitCommand do
let(:application) { create(:clusters_applications_helm) }
let(:commands) { 'helm init --tiller-tls --tiller-tls-verify --tls-ca-cert /data/helm/helm/config/ca.pem --tiller-tls-cert /data/helm/helm/config/cert.pem --tiller-tls-key /data/helm/helm/config/key.pem >/dev/null' }
subject { described_class.new(name: application.name, files: {}) }
it_behaves_like 'helm commands'
end