gitlab-org--gitlab-foss/spec/lib/gitlab/kubernetes/helm/init_command_spec.rb

11 lines
461 B
Ruby
Raw Normal View History

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