k8s-pulse/helm-chart/values.yaml

69 lines
1.1 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: ""
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: {}