summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2018-11-02 16:09:25 +0000
committerDylan Griffith <dyl.griffith@gmail.com>2018-11-02 17:46:33 +0000
commitd86f76320cab9297e0d278a29dd71af991cd2d23 (patch)
tree091e0afa2cc27bb43f1a5b8ce67183550acdcab0 /spec/lib/gitlab
parent45bc509352cf8d20fb15d6c638d6fe0335c20b62 (diff)
downloadgitlab-ce-d86f76320cab9297e0d278a29dd71af991cd2d23.tar.gz
Use our own docker image for helm install podsuse-our-own-docker-image-for-helm-install-pods
This will reduce dependencies and failure points during installation. It will also reduce security risks from untrusted dependencies being able to effect all our users
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/kubernetes/helm/pod_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/kubernetes/helm/pod_spec.rb b/spec/lib/gitlab/kubernetes/helm/pod_spec.rb
index b333b334f36..c92bc92c42d 100644
--- a/spec/lib/gitlab/kubernetes/helm/pod_spec.rb
+++ b/spec/lib/gitlab/kubernetes/helm/pod_spec.rb
@@ -30,7 +30,7 @@ describe Gitlab::Kubernetes::Helm::Pod do
it 'should generate the appropriate specifications for the container' do
container = subject.generate.spec.containers.first
expect(container.name).to eq('helm')
- expect(container.image).to eq('alpine:3.6')
+ expect(container.image).to eq('registry.gitlab.com/gitlab-org/cluster-integration/helm-install-image/releases/2.7.2-kube-1.11.0')
expect(container.env.count).to eq(3)
expect(container.env.map(&:name)).to match_array([:HELM_VERSION, :TILLER_NAMESPACE, :COMMAND_SCRIPT])
expect(container.command).to match_array(["/bin/sh"])