Unverified Commit 5f666720 authored by David McKay's avatar David McKay Committed by GitHub

chore: remove verbose curl logging (#155)

* chore: remove verbose curl logging * chore: add debugging comment to values.yaml
parent 3713878b
apiVersion: v2 apiVersion: v2
version: 0.1.5 version: 0.1.6
appVersion: 1.8.0 appVersion: 1.8.0
engine: gotpl engine: gotpl
......
...@@ -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) {
......
...@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment