121 lines
2.9 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
2024-02-28 20:41:00 -05:00
ui:
baseUrl: "http://localhost:3000"
postgres:
host: "acid-minimal-cluster"
port : 5432
user: "postgres"
password: "tbXeXzpmPK8l5e3DW6S3IXxzIO9CYCx0d5Ow0q50jgLyx0USEselZuC9JIuJi8Oo"
database: comissionsapp
auth:
audience: "https://api.artplatform.com"
clientId: "19GWUL7fWFQWEpdFFtlgv2x3kqfSa0ES"
clientSecret: "VX5LKeGHeaqKsgNz8Kn1gQ7MSHmwrXJdC2DMjVY82_YHjiRqdPrVNpFFkXBZy8yh"
domain: "https://dev-12mb5yq82dow1twh.us.auth0.com/"
stripe:
apiKey: "sk_test_51OdJ1SLooS0IZqYkx2IdNoLcscm6BisgaUyYVIc5jM1RMmarww2e9hLLQS3Atn6TQi00p9YQkCLGQPhAI2gf9ZSY00HmbQYCvP"
webhookSecret: "whsec_WTxw2seQHaJjSbLiRr1q8fs1wh8vGdGn"
novu:
apiKey: "287ad99d1cbeba7f96a7d2637b022e6f"
2024-02-07 23:03:10 -05:00
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:12:28 -05:00
className: "nginx"
2024-02-08 22:45:35 -05:00
annotations: {}
2024-02-09 01:12:28 -05:00
kubernetes.io/ingress.class: nginx
2024-02-07 23:03:10 -05:00
# 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
2024-02-10 20:53:39 -05:00
maxReplicas: 2
2024-02-07 23:03:10 -05:00
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: {}