We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kapacitor doesn't split out cert and key as separate files
kapacitor/services/httpd/service.go
Lines 128 to 132 in 9ea0764
if s.https { cert, err := tls.LoadX509KeyPair(s.cert, s.cert) if err != nil { return err }
Telegraf, InfluxDB, and Chronograf have them as separate https-cert and https-key
InfluxDB: https://github.com/influxdata/influxdb/blob/e9cbc6da11435fd690561ff82e4a367ebdc62c79/services/httpd/service.go#L93-L97
if s.https { cert, err := tls.LoadX509KeyPair(s.cert, s.key) if err != nil { return err }
Either Kapacitor should switch to using the same convention of the rest of TICK, or TIC should change to Kapacitor's convention.
The text was updated successfully, but these errors were encountered:
@nathanielc thoughts on this issue?
Sorry, something went wrong.
@desa When did this change for InfluxDB? The Kapacitor TLS code was copied verbatim from InfluxDB.
I think having them split makes more sense. Can we split them now and still have backwards compatible config?
Looks like we just need to apply this patch to the Kapacitor code. influxdata/influxdb@5d9eae6
influxdata/influxdb@5d9eae61b0
👍
This will be very nice to have fixed.
aanthony1243
No branches or pull requests
Kapacitor doesn't split out cert and key as separate files
kapacitor/services/httpd/service.go
Lines 128 to 132 in 9ea0764
Telegraf, InfluxDB, and Chronograf have them as separate https-cert and https-key
InfluxDB:
https://github.com/influxdata/influxdb/blob/e9cbc6da11435fd690561ff82e4a367ebdc62c79/services/httpd/service.go#L93-L97
Either Kapacitor should switch to using the same convention of the rest of TICK, or TIC should change to Kapacitor's convention.
The text was updated successfully, but these errors were encountered: