-
Notifications
You must be signed in to change notification settings - Fork 663
Helm chart improvements #1802
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
base: main
Are you sure you want to change the base?
Helm chart improvements #1802
Changes from all commits
a21d53b
3f1bca1
e5923d4
e6d19b3
6363cd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,222 @@ | ||
| { | ||
| "$schema": "https://json-schema.org/draft/2020-12/schema", | ||
| "type": "object", | ||
| "properties": { | ||
| "affinity": { | ||
| "description": "Affinity", | ||
| "type": "object" | ||
| }, | ||
| "config": { | ||
| "type": "object", | ||
| "properties": { | ||
| "existingSecret": { | ||
| "description": "Garnet secret (if you want to use an existing secret). This secret must contains a key called 'garnet.conf'.", | ||
| "type": "string" | ||
| }, | ||
| "garnetConf": { | ||
| "description": "The garnet.conf data content.", | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "containers": { | ||
| "type": "object", | ||
| "properties": { | ||
| "args": { | ||
| "description": "Containers args", | ||
| "type": "array" | ||
| }, | ||
| "port": { | ||
| "description": "Containers port", | ||
| "type": "integer" | ||
| } | ||
| } | ||
| }, | ||
| "dnsConfig": { | ||
| "description": "DNS config", | ||
| "type": "object" | ||
| }, | ||
| "dnsPolicy": { | ||
| "description": "DNS policy", | ||
| "type": "string" | ||
| }, | ||
| "extraVolumeMounts": { | ||
| "description": "Extra Volume Mounts", | ||
| "type": "array" | ||
| }, | ||
| "extraVolumes": { | ||
| "description": "Extra Volumes", | ||
| "type": "array" | ||
| }, | ||
| "fullnameOverride": { | ||
| "description": "Chart full name override", | ||
| "type": "string" | ||
| }, | ||
| "image": { | ||
| "type": "object", | ||
| "properties": { | ||
| "pullPolicy": { | ||
| "description": "Image pull policy", | ||
| "type": "string" | ||
| }, | ||
| "registry": { | ||
| "description": "Image registry", | ||
| "type": "string" | ||
| }, | ||
| "repository": { | ||
| "description": "Image repository", | ||
| "type": "string" | ||
| }, | ||
| "tag": { | ||
| "description": "Overrides the image tag whose default is the chart appVersion.", | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "imagePullSecrets": { | ||
| "description": "Image pull secrets", | ||
| "type": "array" | ||
| }, | ||
| "initContainers": { | ||
| "description": "Init containers", | ||
| "type": "array" | ||
| }, | ||
| "livenessProbe": { | ||
| "description": "Containers livenessProbe", | ||
| "type": "object" | ||
| }, | ||
| "nameOverride": { | ||
| "description": "Chart name override", | ||
| "type": "string" | ||
| }, | ||
| "nodeSelector": { | ||
| "description": "Node Selector labels", | ||
| "type": "object" | ||
| }, | ||
| "persistence": { | ||
| "type": "object", | ||
| "properties": { | ||
| "enabled": { | ||
| "description": "persistence enabled", | ||
| "type": "boolean" | ||
| }, | ||
| "storageDir": { | ||
| "description": "The Storage directory for tiered records (hybrid log), if storage tiering (--storage-tier) is enabled. Default: \"/data\"", | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "podAnnotations": { | ||
| "description": "Pod annotations", | ||
| "type": "object" | ||
| }, | ||
| "podSecurityContext": { | ||
| "description": "Pod Security Context", | ||
| "type": "object" | ||
| }, | ||
| "readinessProbe": { | ||
| "description": "Containers livenessProbe", | ||
| "type": "object" | ||
| }, | ||
| "resources": { | ||
| "description": "Resources", | ||
| "type": "object" | ||
| }, | ||
| "securityContext": { | ||
| "description": "Security Context", | ||
| "type": "object" | ||
| }, | ||
| "service": { | ||
| "type": "object", | ||
| "properties": { | ||
| "annotations": { | ||
| "description": "Service annotations", | ||
| "type": "object" | ||
| }, | ||
| "ipFamilies": { | ||
| "description": "Service ipFamilies", | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "ipFamilyPolicy": { | ||
| "description": "Service ipFamilyPolicy SingleStack|PreferDualStack|RequireDualStack", | ||
| "type": "string" | ||
| }, | ||
| "port": { | ||
| "description": "Service port", | ||
| "type": "integer" | ||
| }, | ||
| "type": { | ||
| "description": "Service type", | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "serviceAccount": { | ||
| "type": "object", | ||
| "properties": { | ||
| "annotations": { | ||
| "description": "Annotations to add to the service account", | ||
| "type": "object" | ||
| }, | ||
| "automount": { | ||
| "description": "Automatically mount the service account token", | ||
| "type": "boolean" | ||
| }, | ||
| "create": { | ||
| "description": "Specifies whether a service account should be created", | ||
| "type": "boolean" | ||
| }, | ||
| "name": { | ||
| "description": "The name of the service account to use. If not set and create is true, a name is generated using the fullname template", | ||
| "type": "string" | ||
| } | ||
| } | ||
| }, | ||
| "statefulSet": { | ||
| "type": "object", | ||
| "properties": { | ||
| "annotations": { | ||
| "description": "StatefulSet annotations", | ||
| "type": "object" | ||
| }, | ||
| "replicas": { | ||
| "description": "StatefulSet replicas", | ||
| "type": "integer" | ||
| }, | ||
| "revisionHistoryLimit": { | ||
| "description": "StatefulSet revisionHistoryLimit", | ||
| "type": "integer" | ||
| }, | ||
| "updateStrategy": { | ||
| "type": "object", | ||
| "properties": { | ||
| "type": { | ||
| "description": "StatefulSet updateStrategy type", | ||
| "type": "string" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "tolerations": { | ||
| "description": "Tolerations", | ||
| "type": "array" | ||
| }, | ||
| "volumeClaimTemplates": { | ||
| "type": "object", | ||
| "properties": { | ||
| "requestsStorage": { | ||
| "description": "Volume Claim Templates Requests Storage", | ||
| "type": "string" | ||
| }, | ||
| "storageClassName": { | ||
| "description": "Volume Claim Templates Storage Class Name", | ||
| "type": "string" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,8 +36,8 @@ serviceAccount: | |
| # -- The name of the service account to use. | ||
| # If not set and create is true, a name is generated using the fullname template | ||
| name: "" | ||
| # -- Creates the token object | ||
| token: false | ||
| # -- Automatically mount the service account token | ||
| automount: false | ||
|
Comment on lines
+39
to
+40
Contributor
Author
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. The README.md will be updated & commited by the helm-chart github workflow.
Comment on lines
+39
to
+40
Contributor
Author
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. Fixed by e6d19b3 |
||
|
|
||
| config: | ||
| # -- Garnet secret (if you want to use an existing secret). | ||
|
|
@@ -58,10 +58,12 @@ containers: | |
| args: [] | ||
| # -- Containers port | ||
| port: 6379 | ||
| # -- Containers livenessProbe | ||
| livenessProbe: {} | ||
| # -- Containers livenessProbe | ||
| readinessProbe: {} | ||
|
|
||
| # -- Containers livenessProbe | ||
| livenessProbe: {} | ||
|
|
||
| # -- Containers livenessProbe | ||
| readinessProbe: {} | ||
|
|
||
| # -- Init containers | ||
| initContainers: [] | ||
|
|
@@ -113,6 +115,11 @@ service: | |
| type: ClusterIP | ||
| # -- Service port | ||
| port: 6379 | ||
| # -- Service ipFamilies | ||
| ipFamilies: | ||
| - IPv4 | ||
| # -- Service ipFamilyPolicy SingleStack|PreferDualStack|RequireDualStack | ||
| ipFamilyPolicy: SingleStack | ||
|
Comment on lines
+118
to
+122
Contributor
Author
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. The new default is the kubernetes default behavior. |
||
|
|
||
| # -- Resources | ||
| resources: {} | ||
|
|
||
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.
Fixed by 6363cd2