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
5f666720
Unverified
Commit
5f666720
authored
Aug 13, 2020
by
David McKay
Committed by
GitHub
Aug 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: remove verbose curl logging (#155)
* chore: remove verbose curl logging * chore: add debugging comment to values.yaml
parent
3713878b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
Chart.yaml
charts/influxdb-enterprise/Chart.yaml
+1
-1
data-configmap.yaml
charts/influxdb-enterprise/templates/data-configmap.yaml
+2
-1
values.yaml
charts/influxdb-enterprise/values.yaml
+6
-0
No files found.
charts/influxdb-enterprise/Chart.yaml
View file @
5f666720
apiVersion
:
v2
apiVersion
:
v2
version
:
0.1.
5
version
:
0.1.
6
appVersion
:
1.8.0
appVersion
:
1.8.0
engine
:
gotpl
engine
:
gotpl
...
...
charts/influxdb-enterprise/templates/data-configmap.yaml
View file @
5f666720
...
@@ -94,7 +94,8 @@ data:
...
@@ -94,7 +94,8 @@ data:
while (true) {
while (true) {
# There's no LWP/Simple available in our images, so forking out to curl 😥
# There's no LWP/Simple available in our images, so forking out to curl 😥
print "\n\n\nREGISTER WITH META SERVICE\n\n\n";
print "\n\n\nREGISTER WITH META SERVICE\n\n\n";
$exit_code = system('curl', {{ if .Values.meta.https.insecure }}'-k',{{ end }} '-XPOST', '-v', '--silent', '--fail', '--retry', '5', '--retry-delay', '0', "-Faddr=$ENV{INFLUXDB_HOSTNAME}:8088", "$protocol://$meta_service:8091/add-data");
$exit_code = system('curl', {{ if .Values.meta.https.insecure }}'-k',{{ end }} '-XPOST', '--silent', '--fail', '--retry', '5', '--retry-delay', '0', "-Faddr=$ENV{INFLUXDB_HOSTNAME}:8088", "$protocol://$meta_service:8091/add-data");
# $exit_code = system('curl', {{ if .Values.meta.https.insecure }}'-k',{{ end }} '-XPOST', '-v', '--silent', '--fail', '--retry', '5', '--retry-delay', '0', "-Faddr=$ENV{INFLUXDB_HOSTNAME}:8088", "$protocol://$meta_service:8091/add-data");
if ($exit_code == 0) {
if ($exit_code == 0) {
...
...
charts/influxdb-enterprise/values.yaml
View file @
5f666720
...
@@ -95,6 +95,9 @@ meta:
...
@@ -95,6 +95,9 @@ meta:
# maxUnavailable: 2
# maxUnavailable: 2
minAvailable
:
2
minAvailable
:
2
https
:
https
:
# If you need to debug the data nodes registration with the meta nodes, we recommend
# that you comment out the active curl command in the data-configmap and uncomment the following
# line, which has -v / debugging enabled.
enabled
:
true
enabled
:
true
# The `useCertManager` option, when set to true, will
# The `useCertManager` option, when set to true, will
# automatically create the certificate resources for you.
# automatically create the certificate resources for you.
...
@@ -147,6 +150,9 @@ data:
...
@@ -147,6 +150,9 @@ data:
# accessMode: ReadWriteOnce
# accessMode: ReadWriteOnce
# size: 8Gi
# size: 8Gi
https
:
https
:
# If you need to debug the data nodes registration with the meta nodes, we recommend
# that you comment out the active curl command in the data-configmap and uncomment the following
# line, which has -v / debugging enabled.
enabled
:
true
enabled
:
true
# The `useCertManager` option, when set to true, will
# The `useCertManager` option, when set to true, will
# automatically create the certificate resources for you.
# automatically create the certificate resources for you.
...
...
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