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
4e981682
Commit
4e981682
authored
Mar 02, 2020
by
Hordur Freyr Yngvason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update managed cert-manager chart to 0.10.1
parent
09233b18
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
app/models/clusters/applications/cert_manager.rb
app/models/clusters/applications/cert_manager.rb
+2
-2
changelogs/unreleased/update-cert-manager-to-0-10-1.yml
changelogs/unreleased/update-cert-manager-to-0-10-1.yml
+5
-0
spec/models/clusters/applications/cert_manager_spec.rb
spec/models/clusters/applications/cert_manager_spec.rb
+3
-3
No files found.
app/models/clusters/applications/cert_manager.rb
View file @
4e981682
...
...
@@ -3,8 +3,8 @@
module
Clusters
module
Applications
class
CertManager
<
ApplicationRecord
VERSION
=
'v0.
9
.1'
CRD_VERSION
=
'0.
9
'
VERSION
=
'v0.
10
.1'
CRD_VERSION
=
'0.
10
'
self
.
table_name
=
'clusters_applications_cert_managers'
...
...
changelogs/unreleased/update-cert-manager-to-0-10-1.yml
0 → 100644
View file @
4e981682
---
title
:
Use cert-manager 0.10 instead of 0.9 for new chart installations
merge_request
:
26345
author
:
type
:
changed
spec/models/clusters/applications/cert_manager_spec.rb
View file @
4e981682
...
...
@@ -46,11 +46,11 @@ describe Clusters::Applications::CertManager do
expect
(
subject
.
name
).
to
eq
(
'certmanager'
)
expect
(
subject
.
chart
).
to
eq
(
'certmanager/cert-manager'
)
expect
(
subject
.
repository
).
to
eq
(
'https://charts.jetstack.io'
)
expect
(
subject
.
version
).
to
eq
(
'v0.
9
.1'
)
expect
(
subject
.
version
).
to
eq
(
'v0.
10
.1'
)
expect
(
subject
).
to
be_rbac
expect
(
subject
.
files
).
to
eq
(
cert_manager
.
files
.
merge
(
cluster_issuer_file
))
expect
(
subject
.
preinstall
).
to
eq
([
'kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.
9
/deploy/manifests/00-crds.yaml'
,
'kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.
10
/deploy/manifests/00-crds.yaml'
,
'kubectl label --overwrite namespace gitlab-managed-apps certmanager.k8s.io/disable-validation=true'
])
expect
(
subject
.
postinstall
).
to
eq
([
...
...
@@ -82,7 +82,7 @@ describe Clusters::Applications::CertManager do
let
(
:cert_manager
)
{
create
(
:clusters_applications_cert_manager
,
:errored
,
version:
'0.0.1'
)
}
it
'is initialized with the locked version'
do
expect
(
subject
.
version
).
to
eq
(
'v0.
9
.1'
)
expect
(
subject
.
version
).
to
eq
(
'v0.
10
.1'
)
end
end
end
...
...
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