-
Notifications
You must be signed in to change notification settings - Fork 696
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
Merged
Badrish Chandramouli (badrishc)
merged 11 commits into
microsoft:main
from
babykart:helm-chart
Jun 16, 2026
Merged
Helm chart improvements #1802
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a21d53b
fix(chart): remove token and add automountServiceAccountToken
babykart 3f1bca1
feat(chart): add keys to parametrize IPv4/IPv6 behavior
babykart e5923d4
style(chart): move livenessProbe & readinessProbe keys
babykart e6d19b3
feat(chart): add values.schema.json
babykart 6363cd2
fix(chart): add missing ipFamily keys to service-headless
babykart 0ef71fb
Merge branch 'main' into helm-chart
babykart e214e69
fix(chart): fix volumeMounts[].mountPath for config-volume
babykart d773e4c
Merge branch 'main' into helm-chart
babykart bbff86a
Merge branch 'main' into helm-chart
badrishc 5c66998
Merge branch 'main' into helm-chart
badrishc e51d536
Merge branch 'main' into helm-chart
badrishc 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,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" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.