-
Notifications
You must be signed in to change notification settings - Fork 664
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 4 commits
a21d53b
3f1bca1
e5923d4
e6d19b3
6363cd2
0ef71fb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,8 +9,5 @@ metadata: | |
| annotations: | ||
| {{- toYaml . | nindent 4 }} | ||
| {{- end }} | ||
| {{- if and .Values.serviceAccount.token (semverCompare ">=1.24-0" .Capabilities.KubeVersion.GitVersion) }} | ||
| secrets: | ||
| - name: {{ include "garnet.serviceAccountName" . }}-token | ||
| {{- end }} | ||
| automountServiceAccountToken: {{ .Values.serviceAccount.automount | default false }} | ||
| {{- end }} | ||
|
Comment on lines
+12
to
13
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. This behavior is intentional and follows Helm’s standard object model for ServiceAccounts. The |
||
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" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.