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
80ff3642
Commit
80ff3642
authored
Nov 04, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
c39da0df
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
app/models/clusters/applications/cert_manager.rb
app/models/clusters/applications/cert_manager.rb
+1
-1
changelogs/unreleased/increase-certmanager-install-timeout.yml
...elogs/unreleased/increase-certmanager-install-timeout.yml
+6
-0
spec/models/clusters/applications/cert_manager_spec.rb
spec/models/clusters/applications/cert_manager_spec.rb
+1
-1
No files found.
app/models/clusters/applications/cert_manager.rb
View file @
80ff3642
...
...
@@ -65,7 +65,7 @@ module Clusters
end
def
retry_command
(
command
)
"for i in $(seq 1
3
0); do
#{
command
}
&& s=0 && break || s=$?; sleep 1s; echo
\"
Retrying ($i)...
\"
; done; (exit $s)"
"for i in $(seq 1
9
0); do
#{
command
}
&& s=0 && break || s=$?; sleep 1s; echo
\"
Retrying ($i)...
\"
; done; (exit $s)"
end
def
post_delete_script
...
...
changelogs/unreleased/increase-certmanager-install-timeout.yml
0 → 100644
View file @
80ff3642
---
title
:
Increase the timeout for GitLab-managed cert-manager installation to 90 seconds
(was 30 seconds)
merge_request
:
19447
author
:
type
:
fixed
spec/models/clusters/applications/cert_manager_spec.rb
View file @
80ff3642
...
...
@@ -54,7 +54,7 @@ describe Clusters::Applications::CertManager do
'kubectl label --overwrite namespace gitlab-managed-apps certmanager.k8s.io/disable-validation=true'
])
expect
(
subject
.
postinstall
).
to
eq
([
"for i in $(seq 1
3
0); do kubectl apply -f /data/helm/certmanager/config/cluster_issuer.yaml && s=0 && break || s=$?; sleep 1s; echo
\"
Retrying ($i)...
\"
; done; (exit $s)"
"for i in $(seq 1
9
0); do kubectl apply -f /data/helm/certmanager/config/cluster_issuer.yaml && s=0 && break || s=$?; sleep 1s; echo
\"
Retrying ($i)...
\"
; done; (exit $s)"
])
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