Files
document-service/ops/chart/values.yaml
HaimKortovich 2018f5a5f6
All checks were successful
Build and Publish / build-release (push) Successful in 1m8s
add bucket info in values
2026-04-24 14:38:05 -05:00

78 lines
1.8 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"
COSI_BUCKET_INFO_PATH:
value: "/var/run/secrets/cosi/BucketInfo"
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
persistence:
cosi-bucket-info:
enabled: true
type: secret
name: document-service-s3-credentials
globalMounts:
- path: /var/run/secrets/cosi
readOnly: true
rawResources:
bucket:
enabled: true
apiVersion: objectstorage.k8s.io/v1alpha1
kind: BucketClaim
suffix: bucket
spec:
spec:
bucketClassName: seaweedfs
protocols:
- s3
bucket-access:
enabled: true
apiVersion: objectstorage.k8s.io/v1alpha1
kind: BucketAccess
suffix: bucket-access
spec:
spec:
bucketAccessClassName: seaweedfs
bucketClaimName: '{{ include "bjw-s.common.lib.chart.names.fullname" $ }}-bucket'
credentialsSecretName: document-service-s3-credentials
protocol: s3