Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
user-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
user-manager
Commits
0936ab65
Commit
0936ab65
authored
1 year ago
by
OZGCloud
Browse files
Options
Downloads
Patches
Plain Diff
increase startup probe time
parent
7bf310bd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/helm/templates/deployment.yaml
+2
-2
2 additions, 2 deletions
src/main/helm/templates/deployment.yaml
src/test/helm/deployment_probes_test.yaml
+31
-0
31 additions, 0 deletions
src/test/helm/deployment_probes_test.yaml
with
33 additions
and
2 deletions
src/main/helm/templates/deployment.yaml
+
2
−
2
View file @
0936ab65
...
...
@@ -152,8 +152,8 @@ spec:
path
:
/q/health/started
port
:
8080
scheme
:
HTTP
initialDelaySeconds
:
15
periodSeconds
:
5
initialDelaySeconds
:
30
periodSeconds
:
10
successThreshold
:
1
timeoutSeconds
:
5
{{
- if .Values.enableLivenessProbe
}}
...
...
This diff is collapsed.
Click to expand it.
src/test/helm/deployment_
liveness_
probe_test.yaml
→
src/test/helm/deployment_probe
s
_test.yaml
+
31
−
0
View file @
0936ab65
...
...
@@ -60,3 +60,34 @@ tests:
periodSeconds
:
5
successThreshold
:
1
timeoutSeconds
:
5
-
it
:
should have readiness probe
template
:
deployment.yaml
asserts
:
-
isSubset
:
path
:
spec.template.spec.containers[0].readinessProbe
content
:
failureThreshold
:
3
httpGet
:
path
:
/q/health/ready
port
:
8080
scheme
:
HTTP
periodSeconds
:
10
successThreshold
:
1
timeoutSeconds
:
3
-
it
:
should have startup probe
template
:
deployment.yaml
asserts
:
-
isSubset
:
path
:
spec.template.spec.containers[0].startupProbe
content
:
failureThreshold
:
10
httpGet
:
path
:
/q/health/started
port
:
8080
scheme
:
HTTP
initialDelaySeconds
:
30
periodSeconds
:
10
successThreshold
:
1
timeoutSeconds
:
5
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment