-
Notifications
You must be signed in to change notification settings - Fork 346
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
Add storage secrets to es-index-cleaner cronjob #197
Add storage secrets to es-index-cleaner cronjob #197
Conversation
Signed-off-by: Greg Franklin <gregoryfranklin@rentalcars.com>
Codecov Report
@@ Coverage Diff @@
## master #197 +/- ##
========================================
- Coverage 96.7% 95.2% -1.5%
========================================
Files 32 35 +3
Lines 1639 1858 +219
========================================
+ Hits 1585 1769 +184
- Misses 41 75 +34
- Partials 13 14 +1
Continue to review full report at Codecov.
|
envFromSource = append(envFromSource, v1.EnvFromSource{ | ||
SecretRef: &v1.SecretEnvSource{ | ||
LocalObjectReference: v1.LocalObjectReference{ | ||
Name: jaeger.Spec.Storage.SecretName, |
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.
@jpkrohling I am a bit outdatted with represents secretName in the storage spec?
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.
@pavolloffay , @gregoryfranklin , what's the status of this PR? |
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.
LGTM, a test verifying that envs are added would be nice
Adding a yaml with a secret I have used. apiVersion: v1
kind: Secret
metadata:
name: database-secrets
type: Opaque
data:
ES_USERNAME: cGFzc3dvcmQK //base64
ES_PASSWORD: cGFzc3dvcmQK |
Signed-off-by: Greg Franklin <gregoryfranklin@rentalcars.com>
thanks @gregoryfranklin |
Resolves #196
Related to jaegertracing/jaeger#1318 which has been merged and released as
jaegertracing/jaeger-es-index-cleaner:latest
. We're just adding some additional environment variables so its also fine to use with older versions of the jaeger-es-index-cleaner image.