Skip to content

Commit

Permalink
Merge pull request #241 from vshn/redis_exporter_bugfix
Browse files Browse the repository at this point in the history
disable certificates verification in redis metrics exporter
  • Loading branch information
wejdross authored Oct 12, 2023
2 parents 8084c44 + d11e7c2 commit 7aea368
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions component/component/vshn_redis.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,16 @@ local composition =
values: {
metrics: {
enabled: true,
// before all Your warning lamps start blinking,
// this is internal communication on loopback interface
// full mTLS isn't necessary
extraEnvVars: [
{
name: 'REDIS_EXPORTER_SKIP_TLS_VERIFICATION',
value: 'true',

},
],
containerSecurityContext: {
enabled: securityContext,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,9 @@ spec:
containerSecurityContext:
enabled: true
enabled: true
extraEnvVars:
- name: REDIS_EXPORTER_SKIP_TLS_VERIFICATION
value: 'true'
serviceMonitor:
enabled: true
namespace: ''
Expand Down

0 comments on commit 7aea368

Please sign in to comment.