27 lines
622 B
YAML
27 lines
622 B
YAML
kind: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: hermione
|
|
namespace: olympus
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: hermione
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: hermione
|
|
spec:
|
|
containers:
|
|
- name: hermione
|
|
image: olympusreg.azurecr.io/hermione:a843dee4
|
|
envFrom:
|
|
- configMapRef:
|
|
name: olympus-db-shared-cfg
|
|
- configMapRef:
|
|
name: olympus-common-shared-cfg
|
|
- configMapRef:
|
|
name: olympus-ai-shared-cfg
|
|
resources: {}
|
|
imagePullPolicy: Always |