99 lines
2.3 KiB
YAML
Raw Normal View History

2024-02-08 22:45:35 -05:00
# Default values for core-api.
2024-02-07 23:03:10 -05:00
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
2024-02-08 22:45:35 -05:00
repository: ghcr.io/comissions-app/core-api
2024-02-07 23:03:10 -05:00
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: ""
2024-02-08 22:45:35 -05:00
imagePullSecrets: ["comissions-app"]
2024-02-07 23:03:10 -05:00
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
2024-02-08 22:45:35 -05:00
# Automatically mount a ServiceAccount's API credentials?
automount: true
2024-02-07 23:03:10 -05:00
# 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: {}
2024-02-08 22:45:35 -05:00
podLabels: {}
2024-02-07 23:03:10 -05:00
2024-02-08 22:45:35 -05:00
podSecurityContext: {}
2024-02-07 23:03:10 -05:00
# fsGroup: 2000
2024-02-08 22:45:35 -05:00
securityContext: {}
2024-02-07 23:03:10 -05:00
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
2024-02-09 01:05:27 -05:00
port: 8080
2024-02-07 23:03:10 -05:00
ingress:
2024-02-08 22:45:35 -05:00
enabled: true
2024-02-09 01:02:07 -05:00
className: "ingress-nginx"
2024-02-08 22:45:35 -05:00
annotations: {}
2024-02-07 23:03:10 -05:00
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
2024-02-08 22:45:35 -05:00
- host: core-api.comissions.dev
2024-02-07 23:03:10 -05:00
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
2024-02-08 22:45:35 -05:00
resources: {}
2024-02-07 23:03:10 -05:00
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
2024-02-08 22:45:35 -05:00
# Additional volumes on the output Deployment definition.
volumes: []
# - name: foo
# secret:
# secretName: mysecret
# optional: false
# Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# - name: foo
# mountPath: "/etc/foo"
# readOnly: true
2024-02-07 23:03:10 -05:00
nodeSelector: {}
tolerations: []
2024-02-08 22:45:35 -05:00
affinity: {}