# Default values for kube-ts-react-client
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 2

image:
  repository: kubejs/kube-ts-react-client
  tag: 1.7.0
  pullPolicy: Always
  containerPort: 80

livenessProbe:
  httpGet:
    path: /
    port: 80
  initialDelaySeconds: 60
  periodSeconds: 60

readinessProbe:
  httpGet:
    path: /
    port: 80
  initialDelaySeconds: 5
  periodSeconds: 10

resources:
  {}
  # 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

nameOverride: ''
fullnameOverride: ''

service:
  port: 80
  targetPort: 80

ingress:
  enabled: true
  annotations:
    kubernetes.io/ingress.class: nginx
  hosts:
    - client.mariuszrajczakowski.me
  path: /
  tls:
    - hosts:
        - client.mariuszrajczakowski.me

nodeSelector: {}

tolerations: []

affinity: {}

# Secret [remove "{}", uncomment and change the values below]
secret:
  {}
  # TEST_VAL: val1

# Configmap [remove "{}", uncomment and change the values below]
configMap:
  {}
  # REACT_APP_ASSETS_URL: https://localhost:3000
  # REACT_APP_API_URL: https://localhost:9000/api/v1
  # REACT_APP_SENTRY_DSN: https://yourSentryUrl@sentry.io/yourSentryNumber
  # REACT_APP_LOGGER_TYPE: sentry
  # REACT_APP_NODE_ENV: production
