Files
document-service/ops/chart/values.yaml
HaimKortovich 3bcc38b4ae
All checks were successful
Build and Publish / build-release (push) Successful in 43s
fix access_key_id name
2026-04-23 17:02:36 -05:00

59 lines
1.4 KiB
YAML

controllers:
main:
enabled: true
type: deployment
replicas: 1
containers:
main:
image:
repository: gitea.corredorconect.com/software-engineering/document-service
tag: '{{ $.Chart.AppVersion }}'
env:
LOG_LEVEL: info
PORT: "8082"
S3_ENDPOINT:
value: "https://dev.s3.corredorconect.com/"
S3_ACCESS_KEY_ID:
valueFrom:
secretKeyRef:
name: 'document-service-s3-credentials'
key: rootAccessKeyId
S3_SECRET_KEY:
valueFrom:
secretKeyRef:
name: 'document-service-s3-credentials'
key: rootSecretAccessKey
S3_BUCKET:
value: "document-bucket"
S3_REGION:
value: "us-east-1"
probes:
liveness:
enabled: true
custom: true
spec:
httpGet:
path: /health
port: 8082
initialDelaySeconds: 30
periodSeconds: 10
readiness:
enabled: true
custom: true
spec:
httpGet:
path: /health/ready
port: 8082
initialDelaySeconds: 5
periodSeconds: 5
service:
main:
controller: main
type: ClusterIP
ports:
http:
port: 8082
protocol: HTTP