Welcome to mirror list, hosted at ThFree Co, Russian Federation.

init_command_spec.rb « helm « kubernetes « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcbc046cf001cec952de269f8d28b83533e2fefd (plain)
1
2
3
4
5
6
7
8
9
10
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