k8s-pulse/helm-chart/values.yaml

85 lines
1.7 KiB
YAML
Raw Normal View History

2026-07-24 11:17:10 +00:00
# Default values for k8s-pulse.
replicaCount: 1
2026-07-24 00:15:19 +00:00
image:
2026-07-24 11:17:10 +00:00
repository: k8s-pulse
2026-07-24 00:15:19 +00:00
pullPolicy: IfNotPresent
2026-07-24 11:17:10 +00:00
# Overrides the image tag whose default is the chart appVersion.
2026-07-24 00:15:19 +00:00
tag: "latest"
2026-07-24 11:17:10 +00:00
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
2026-07-24 12:01:49 +00:00
# Kubeconfig configuration & secret mounting
kubeconfig:
# Enable mounting kubeconfig Secret into the pod
enabled: true
# Name of existing secret containing kubeconfig.
# If empty and createSecret is true, defaults to "<fullname>-kubeconfig"
secretName: ""
# Set to true to create a Secret resource from 'content'
createSecret: false
# Content of the kubeconfig file when createSecret is true
content: ""
# Key name inside the secret containing kubeconfig data
secretKey: "config"
# Path inside container where kubeconfig is mounted
mountPath: "/root/.kube/config"
2026-07-24 11:17:10 +00:00
rbac:
create: true
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
2026-07-24 00:15:19 +00:00
service:
type: ClusterIP
port: 80
2026-07-24 11:17:10 +00:00
targetPort: 5000
annotations: {}
2026-07-24 00:15:19 +00:00
ingress:
2026-07-24 11:17:10 +00:00
enabled: false
className: ""
annotations: {}
2026-07-24 00:15:19 +00:00
hosts:
2026-07-24 11:17:10 +00:00
- host: k8s-pulse.local
2026-07-24 00:15:19 +00:00
paths:
- path: /
2026-07-24 11:17:10 +00:00
pathType: Prefix
tls: []
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
2026-07-24 00:15:19 +00:00
persistence:
2026-07-24 11:17:10 +00:00
enabled: false
2026-07-24 00:15:19 +00:00
size: 1Gi
2026-07-24 11:17:10 +00:00
accessMode: ReadWriteOnce
storageClassName: ""
nodeSelector: {}
tolerations: []
affinity: {}