Skip to content

Commit

Permalink
docs: add truenas values
Browse files Browse the repository at this point in the history
  • Loading branch information
reinthal committed Dec 8, 2024
1 parent 381700e commit db331ff
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions helm-values/truenas-csp-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
---
# Default values for truenas-csp.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

# VERY verbose
logDebug: false

# Tunes the CSP backend API requests
optimizeFor: "Default"

# Pull policy
imagePullPolicy: IfNotPresent

images:
trueNasCSP: quay.io/datamattsson/truenas-csp:v2.5.1

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

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 gene'd using the fullname template
name: ""

podAnnotations: {}

podSecurityContext: {}
# fsGroup: 2000

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000

service:
type: ClusterIP
port: 8080

ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

resources:
limits:
cpu: 1000m
memory: 1Gi
requests:
cpu: 100m
memory: 256Mi

nodeSelector: {}

tolerations:
- effect: NoExecute
key: node.kubernetes.io/not-ready
operator: Exists
tolerationSeconds: 30
- effect: NoExecute
key: node.kubernetes.io/unreachable
operator: Exists
tolerationSeconds: 30

affinity: {}

# Dependencies
hpe-csi-driver:
disable:
nimble: true
primera: true
alletra6000: true
alletra9000: true
alletraStorageMP: true

0 comments on commit db331ff

Please sign in to comment.