fix: cleanup worker manifest and remove brittle overrides
This commit is contained in:
parent
47a890c45b
commit
66cf21ca5d
|
|
@ -19,9 +19,7 @@ spec:
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
env:
|
env:
|
||||||
- name: REDIS_HOST
|
- name: REDIS_HOST
|
||||||
value: "redis.geocrop.svc.cluster.local"
|
value: redis.geocrop.svc.cluster.local
|
||||||
- name: MINIO_ENDPOINT
|
|
||||||
value: "minio.geocrop.svc.cluster.local:9000"
|
|
||||||
- name: MINIO_ACCESS_KEY
|
- name: MINIO_ACCESS_KEY
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
|
@ -32,10 +30,18 @@ spec:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: geocrop-secrets
|
name: geocrop-secrets
|
||||||
key: minio-secret-key
|
key: minio-secret-key
|
||||||
- name: DB_URL
|
- name: AWS_ACCESS_KEY_ID
|
||||||
value: "postgresql://postgres:$(DB_PASSWORD)@geocrop-db:5433/geocrop_gis"
|
|
||||||
- name: DB_PASSWORD
|
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: geocrop-db-secret
|
name: geocrop-secrets
|
||||||
key: password
|
key: minio-access-key
|
||||||
|
- name: AWS_SECRET_ACCESS_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: geocrop-secrets
|
||||||
|
key: minio-secret-key
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: "2Gi"
|
||||||
|
requests:
|
||||||
|
memory: "1Gi"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue