25 lines
503 B
YAML
25 lines
503 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: neon-operator
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: neon-operator
|
||
|
strategy:
|
||
|
type: Recreate
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: neon-operator
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: neon-operator
|
||
|
image: melenion/neon-operator:latest
|
||
|
imagePullPolicy: Always
|
||
|
resources:
|
||
|
limits:
|
||
|
memory: "128Mi"
|
||
|
cpu: "500m"
|
||
|
serviceAccountName: neon-operator
|