Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9b9714d2
Commit
9b9714d2
authored
Jan 23, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
997ed787
e8f73aae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
changelogs/unreleased/56417-update-helm-to-2-12-2.yml
changelogs/unreleased/56417-update-helm-to-2-12-2.yml
+5
-0
lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
+1
-1
lib/gitlab/kubernetes/helm.rb
lib/gitlab/kubernetes/helm.rb
+1
-1
spec/lib/gitlab/kubernetes/helm/pod_spec.rb
spec/lib/gitlab/kubernetes/helm/pod_spec.rb
+1
-1
No files found.
changelogs/unreleased/56417-update-helm-to-2-12-2.yml
0 → 100644
View file @
9b9714d2
---
title
:
Update Helm to 2.12.2 to address Helm client vulnerability
merge_request
:
24418
author
:
Takuya Noguchi
type
:
security
lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
View file @
9b9714d2
...
...
@@ -50,7 +50,7 @@ variables:
POSTGRES_DB
:
$CI_ENVIRONMENT_SLUG
KUBERNETES_VERSION
:
1.11.6
HELM_VERSION
:
2.1
1.0
HELM_VERSION
:
2.1
2.2
DOCKER_DRIVER
:
overlay2
...
...
lib/gitlab/kubernetes/helm.rb
View file @
9b9714d2
...
...
@@ -3,7 +3,7 @@
module
Gitlab
module
Kubernetes
module
Helm
HELM_VERSION
=
'2.1
1.0
'
.
freeze
HELM_VERSION
=
'2.1
2.2
'
.
freeze
KUBECTL_VERSION
=
'1.11.0'
.
freeze
NAMESPACE
=
'gitlab-managed-apps'
.
freeze
SERVICE_ACCOUNT
=
'tiller'
.
freeze
...
...
spec/lib/gitlab/kubernetes/helm/pod_spec.rb
View file @
9b9714d2
...
...
@@ -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
(
'registry.gitlab.com/gitlab-org/cluster-integration/helm-install-image/releases/2.1
1.0
-kube-1.11.0'
)
expect
(
container
.
image
).
to
eq
(
'registry.gitlab.com/gitlab-org/cluster-integration/helm-install-image/releases/2.1
2.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"
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment