79 lines
1.5 KiB
YAML
79 lines
1.5 KiB
YAML
# =============================================================================
|
|
# Global / common settings
|
|
# =============================================================================
|
|
namespace: gitdataai
|
|
releaseName: admin
|
|
|
|
image:
|
|
registry: harbor.gitdata.me/gta_team
|
|
pullPolicy: IfNotPresent
|
|
pullSecrets: [ ]
|
|
|
|
# =============================================================================
|
|
# Cert-Manager Configuration (集群已安装 cert-manager)
|
|
# =============================================================================
|
|
certManager:
|
|
enabled: true
|
|
clusterIssuerName: cloudflare-acme-cluster-issuer
|
|
|
|
externalSecrets:
|
|
storeName: vault-backend
|
|
storeKind: SecretStore
|
|
|
|
admin:
|
|
enabled: true
|
|
replicaCount: 2
|
|
|
|
image:
|
|
repository: admin
|
|
tag: latest
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
|
|
ingress:
|
|
enabled: false
|
|
hosts: [ ]
|
|
annotations: { }
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
|
|
livenessProbe:
|
|
path: /api/health
|
|
port: 3000
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
|
|
readinessProbe:
|
|
path: /api/health
|
|
port: 3000
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
|
|
config:
|
|
appUrl: ""
|
|
appDomain: ""
|
|
nodeEnv: production
|
|
|
|
secretKeys:
|
|
databaseUrl: APP_DATABASE_URL
|
|
redisUrl: APP_REDIS_URL
|
|
nextAuthSecret: APP_NEXTAUTH_SECRET
|
|
|
|
env: [ ]
|
|
|
|
nodeSelector: { }
|
|
tolerations: [ ]
|
|
affinity: { }
|
|
|
|
secrets:
|
|
enabled: false
|
|
databaseUrl: ""
|
|
redisUrl: ""
|
|
nextAuthSecret: ""
|
|
extra: { }
|