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
59149a82
Commit
59149a82
authored
Jul 15, 2020
by
João Alexandre Cunha
Committed by
Michael Kozono
Jul 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Managed Apps Helm version to 2.16.9
parent
d4182274
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
changelogs/unreleased/jcunha-update-helm-version-to-2-16-9.yml
...elogs/unreleased/jcunha-update-helm-version-to-2-16-9.yml
+5
-0
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/jcunha-update-helm-version-to-2-16-9.yml
0 → 100644
View file @
59149a82
---
title
:
Updates Helm version to 2.16.9 which has some fixes
merge_request
:
36746
author
:
type
:
fixed
lib/gitlab/kubernetes/helm.rb
View file @
59149a82
...
...
@@ -3,7 +3,7 @@
module
Gitlab
module
Kubernetes
module
Helm
HELM_VERSION
=
'2.16.
7
'
HELM_VERSION
=
'2.16.
9
'
KUBECTL_VERSION
=
'1.13.12'
NAMESPACE
=
'gitlab-managed-apps'
NAMESPACE_LABELS
=
{
'app.gitlab.com/managed_by'
=>
:gitlab
}.
freeze
...
...
spec/lib/gitlab/kubernetes/helm/pod_spec.rb
View file @
59149a82
...
...
@@ -32,7 +32,7 @@ RSpec.describe Gitlab::Kubernetes::Helm::Pod do
it
'generates 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.16.
7
-kube-1.13.12'
)
expect
(
container
.
image
).
to
eq
(
'registry.gitlab.com/gitlab-org/cluster-integration/helm-install-image/releases/2.16.
9
-kube-1.13.12'
)
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