-
Notifications
You must be signed in to change notification settings - Fork 255
feat: add new TLS configuration options #133
New issue
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
Conversation
fbd7a2d
to
514ebad
Compare
Ping. Any feedback on this that I can address? |
* ``tls_key`` - (Optional) Client TLS key file to use to authenticate to the Grafana server. May alternatively be set via the ``GRAFANA_TLS_KEY`` environment variable. * ``tls_cert`` - (Optional) Client TLS certificate file to use to authenticate to the Grafana server. May alternatively be set via the ``GRAFANA_TLS_CERT`` environment variable. * ``ca_cert`` - (Optional) Certificate CA bundle to use to verify the Grafana server's certifiate.. May alternatively be set via the ``GRAFANA_CA_CERT`` environment variable. * ``insecure_skip_verify`` - (Optional) Bool. Disable verification of the Grafana Server's certificate. May alternatively be set via the ``GRAFANA_INSECURE_SKIP_VERIFY`` environment variable.
1fe35dc
to
87a9916
Compare
87a9916
to
a9316e9
Compare
Updated to resolve conflicts with the current main branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@joemiller this is great. There's now a docker-compose.yml
file in master
though. Could we rename your's to docker-compose.tls.yml
and target it with -f
flag in the test-serve-tls
target?
@trotttrotttrott Hi, Thanks for picking this up. I'd be happy to rename the file but it looks like you already took care of that. Anything else I can do to help? |
@joemiller no prob! I was just going to comment. I think it's ready to go. I was going to merge it as soon as CI passes. Thanks! |
tls_key
- (Optional) Client TLS key file to use to authenticate to theGrafana server. May alternatively be set via the
GRAFANA_TLS_KEY
environment variable.
tls_cert
- (Optional) Client TLS certificate file to use to authenticateto the Grafana server. May alternatively be set via the
GRAFANA_TLS_CERT
environment variable.
ca_cert
- (Optional) Certificate CA bundle to use to verify theGrafana server's certifiate.. May alternatively be set via the
GRAFANA_CA_CERT
environment variable.insecure_skip_verify
- (Optional) Bool. Disable verification of theGrafana Server's certificate. May alternatively be set via the
GRAFANA_INSECURE_SKIP_VERIFY
environment variable.closes #107
closes #53