Argocd-test/bases/fleets/deployment.yaml

41 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2023-07-10 07:03:34 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: test-coopgo-fleets
spec:
2024-03-25 09:04:00 +00:00
replicas: 3
2023-07-10 07:03:34 +00:00
template:
spec:
containers:
- name: fleets
image: docker.io/library/fleets-v3:local
env:
- name: STORAGE_DB_MONGODB_URI
valueFrom:
secretKeyRef:
2024-03-21 14:03:47 +00:00
name: fleet-secret
2023-07-10 07:03:34 +00:00
key: storage_db_mongodb_uri
- name: STORAGE_DB_MONGODB_DB_NAME
valueFrom:
secretKeyRef:
2024-03-21 14:03:47 +00:00
name: fleet-secret
2023-07-10 07:03:34 +00:00
key: storage_db_mongodb_db_name
ports:
- name: http
containerPort: 8080
protocol: TCP
volumeMounts:
- name: fleets-config-volume
mountPath: /config.yaml
subPath: config.yaml
imagePullSecrets:
- name: regcred
volumes:
- name: fleets-config-volume
configMap:
name: test-fleets-config
items:
- key: config.yaml
path: config.yaml