-
Notifications
You must be signed in to change notification settings - Fork 38
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
Issue 280: Read InfluxDB credentials from a secret #563
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
027ace3
Adding support for configuring influxdb secret
anishakj bce4b6b
passing influxdb secret mount path as an env variable
anishakj 83f5d75
incorporating review comments
anishakj 97e9627
Fixing the unit tests
anishakj 28f2880
updating crd for end to end tests
anishakj 36f6608
Merge branch 'master' of https://github.com/pravega/pravega-operator …
anishakj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Enable InfluxDB Authentication | ||
|
||
Operator supports passing influxdb credentials as secret. It is the recommended approach rather than passing username/password as part of Pravega options. | ||
|
||
Steps to configure influxdb authentication are as follows: | ||
|
||
1. Create a secret for basic authentication. Below is the sample yaml file | ||
|
||
``` | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: secret-basic-auth | ||
type: kubernetes.io/basic-auth | ||
stringData: | ||
username: admin | ||
password: t0p-Secret | ||
``` | ||
2. Modify the Pravega manifest to include the secret name for influxdb | ||
|
||
``` | ||
influxDBSecret: "secret-basic-auth" | ||
``` | ||
3. Once Pravega is deployed, secret will be mounted in `/etc/influxdb-secret-volume` for controller and segment store pods. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,6 +253,7 @@ func makeControllerPodSpec(p *api.PravegaCluster) *corev1.PodSpec { | |
configureControllerTLSSecrets(podSpec, p) | ||
configureAuthSecrets(podSpec, p) | ||
configureControllerAuthSecrets(podSpec, p) | ||
configureControllerInfluxDBSecrets(podSpec, p) | ||
return podSpec | ||
} | ||
|
||
|
@@ -276,6 +277,20 @@ func configureControllerAuthSecrets(podSpec *corev1.PodSpec, p *api.PravegaClust | |
} | ||
} | ||
|
||
func configureControllerInfluxDBSecrets(podSpec *corev1.PodSpec, p *api.PravegaCluster) { | ||
if p.Spec.Pravega.InfluxDBSecret != "" { | ||
addSecretVolumeWithMount(podSpec, p, influxDBSecretVolumeName, p.Spec.Pravega.InfluxDBSecret, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could we consider accepting the mount path as a property from the user instead of hardcoding its value in a constant? |
||
influxDBSecretVolumeName, influxDBSecretMountDir) | ||
|
||
podSpec.Containers[0].Env = []corev1.EnvVar{ | ||
{ | ||
Name: "INFLUX_DB_SECRET_MOUNT_PATH", | ||
Value: influxDBSecretMountDir, | ||
}, | ||
} | ||
} | ||
} | ||
|
||
func addSecretVolumeWithMount(podSpec *corev1.PodSpec, p *api.PravegaCluster, | ||
volumeName string, secretName string, | ||
mountName string, mountDir string) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
description should specify that this secret is specific to the influxdb credentials