36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: postgres-operator
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: postgres-operator
|
|
spec:
|
|
serviceAccountName: zalando-postgres-operator
|
|
containers:
|
|
- name: postgres-operator
|
|
image: registry.opensource.zalan.do/acid/smoke-tested-postgres-operator:v1.0.0-37-g2422d72
|
|
imagePullPolicy: IfNotPresent
|
|
resources:
|
|
requests:
|
|
cpu: 500m
|
|
memory: 250Mi
|
|
limits:
|
|
cpu: 2000m
|
|
memory: 500Mi
|
|
securityContext:
|
|
runAsUser: 1000
|
|
runAsNonRoot: true
|
|
readOnlyRootFilesystem: true
|
|
env:
|
|
# provided additional ENV vars can overwrite individual config map entries
|
|
- name: CONFIG_MAP_NAME
|
|
value: "postgres-operator"
|
|
# In order to use the CRD OperatorConfiguration instead, uncomment these lines and comment out the two lines above
|
|
# - name: POSTGRES_OPERATOR_CONFIGURATION_OBJECT
|
|
# value: postgresql-operator-default-configuration
|
|
|