-
Notifications
You must be signed in to change notification settings - Fork 22
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
Added the option for a peristed config volume #87
base: master
Are you sure you want to change the base?
Conversation
@@ -232,6 +243,17 @@ curity: | |||
helm upgrade <release-name> curity/idsvr -f myValues.xml | |||
``` | |||
|
|||
## Enabling the peristed configuration volume | |||
|
|||
It is possible to set the `curity.config.persistentConfigVolume.enabled` which will create a `PersistedVolumeClaim` using the defined `StorageClass`, `AccessMode` and `size`. |
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.
I would tidy up this comment a little:
Title has a typo:
-Enabling the persistent configuration volume
Then, use persistentVolumeClaim and lower case:
- It is possible to set the
curity.config.persistentConfigVolume.enabled
which will create aPersistentVolumeClaim
using the definedstorageClass
,accessMode
andsize
.
@@ -0,0 +1,15 @@ | |||
{{- if and .Values.curity.config.persistentConfigVolume.enabled (not .Values.curity.config.persistentConfigVolume.existingClaim) }} |
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.
If the new persistentConfigVolume section is completely omitted .enabled setting is not configured in the customer's Helm chart. this seems to create a persistent volume anyway, though I don't understand why. The admin node then has problems.
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.
The curity.config.persistendConfigVolume.enabled
was true
by accident so that's why. I made it default false now.
No description provided.