Compare commits
3 Commits
64700cfd37
...
5e6e421466
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e6e421466 | |||
| 05bc272c26 | |||
| 39f97065db |
@@ -78,6 +78,7 @@
|
||||
pkgs.uv
|
||||
pkgs.pyright
|
||||
pkgs.file
|
||||
pkgs.kubernetes-helm
|
||||
];
|
||||
env = {
|
||||
UV_NO_SYNC = "1";
|
||||
|
||||
4
ops/chart/templates/common.tpl
Normal file
4
ops/chart/templates/common.tpl
Normal file
@@ -0,0 +1,4 @@
|
||||
{{/*
|
||||
Render all resources provided by the common library
|
||||
*/}}
|
||||
{{- include "bjw-s.common.loader.all" . -}}
|
||||
@@ -12,17 +12,17 @@ controllers:
|
||||
LOG_LEVEL: info
|
||||
PORT: "8082"
|
||||
S3_ENDPOINT:
|
||||
value: "http://minio:9000"
|
||||
value: "https://dev.s3.corredorconect.com/"
|
||||
S3_ACCESS_KEY:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: '{{ include "bjw-s.common.lib.chart.names.fullname" $ }}-secrets'
|
||||
key: s3AccessKey
|
||||
name: 'document-service-s3-credentials'
|
||||
key: rootAccessKey
|
||||
S3_SECRET_KEY:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: '{{ include "bjw.common.lib.chart.names.fullname $ }}-secrets'
|
||||
key: s3SecretKey
|
||||
name: 'document-service-s3-credentials'
|
||||
key: rootSecretAccessKey
|
||||
S3_BUCKET:
|
||||
value: "document-bucket"
|
||||
S3_REGION:
|
||||
@@ -30,22 +30,29 @@ controllers:
|
||||
probes:
|
||||
liveness:
|
||||
enabled: true
|
||||
custom: true
|
||||
spec:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8082
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 10
|
||||
custom: true
|
||||
spec:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8082
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
readiness:
|
||||
enabled: true
|
||||
custom: true
|
||||
custom: true
|
||||
spec:
|
||||
httpGet:
|
||||
path: /health/ready
|
||||
port: 8082
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 5
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 5
|
||||
resources:
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 256Mi
|
||||
limits:
|
||||
cpu: 500m
|
||||
memory: 512Mi
|
||||
|
||||
service:
|
||||
main:
|
||||
|
||||
Reference in New Issue
Block a user