Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
influxdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
influxdb
Commits
d9a33d3b
Commit
d9a33d3b
authored
Mar 16, 2020
by
songrgg
Committed by
David McKay
Mar 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add scheme to healthcheck to serve HTTPS
parent
e74a6324
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
statefulset.yaml
charts/influxdb/templates/statefulset.yaml
+3
-0
values.yaml
charts/influxdb/values.yaml
+3
-0
No files found.
charts/influxdb/templates/statefulset.yaml
View file @
d9a33d3b
...
...
@@ -88,12 +88,14 @@ spec:
httpGet
:
path
:
/ping
port
:
api
scheme
:
{{
.Values.livenessProbe.scheme | default "HTTP"
}}
initialDelaySeconds
:
{{
.Values.livenessProbe.initialDelaySeconds | default 30
}}
timeoutSeconds
:
{{
.Values.livenessProbe.timeoutSeconds | default 5
}}
readinessProbe
:
httpGet
:
path
:
/ping
port
:
api
scheme
:
{{
.Values.readinessProbe.scheme | default "HTTP"
}}
initialDelaySeconds
:
{{
.Values.readinessProbe.initialDelaySeconds | default 5
}}
timeoutSeconds
:
{{
.Values.readinessProbe.timeoutSeconds | default 1
}}
{{
- if .Values.startupProbe.enabled
}}
...
...
@@ -101,6 +103,7 @@ spec:
httpGet
:
path
:
/ping
port
:
api
scheme
:
{{
.Values.startupProbe.scheme | default "HTTP"
}}
failureThreshold
:
{{
.Values.startupProbe.failureThreshold | default 6
}}
periodSeconds
:
{{
.Values.startupProbe.periodSeconds | default 5
}}
{{
- end
}}
...
...
charts/influxdb/values.yaml
View file @
d9a33d3b
...
...
@@ -21,15 +21,18 @@ serviceAccount:
livenessProbe
:
{}
# initialDelaySeconds: 30
# timeoutSeconds: 5
# scheme: HTTP
readinessProbe
:
{}
# initialDelaySeconds: 5
# timeoutSeconds: 1
# scheme: HTTP
startupProbe
:
enabled
:
false
# failureThreshold: 6
# periodSeconds: 5
# scheme: HTTP
## Specify a service type
## NodePort is default
...
...
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