MQL5-Google-Onedrive/boat-house/kompose/test/statistics-service-db-deployment.yaml

26 lines
611 B
YAML
Raw Permalink Normal View History

apiVersion: apps/v1
kind: Deployment
metadata:
name: statistics-service-db-deployment
namespace: boathouse-test
spec:
replicas: 1
selector:
matchLabels:
app: statistics-service-db
strategy:
type: Recreate
template:
metadata:
labels:
app: statistics-service-db
spec:
containers:
- image: docker.pkg.github.com/#{BOATHOUSE_ORG_NAME}#/boat-house/postgres:9.4
name: statistics-service-db
env:
- name: POSTGRES_HOST_AUTH_METHOD
value: trust
imagePullSecrets:
- name: regcred
restartPolicy: Always