2018-09-13 12:33:13 +03:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: hasura
|
|
|
|
hasuraService: custom
|
|
|
|
name: hasura
|
|
|
|
namespace: default
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: hasura
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
creationTimestamp: null
|
|
|
|
labels:
|
|
|
|
app: hasura
|
|
|
|
spec:
|
|
|
|
containers:
|
2020-11-17 14:19:34 +03:00
|
|
|
- image: hasura/graphql-engine:v1.3.3
|
2018-09-13 12:33:13 +03:00
|
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
name: hasura
|
|
|
|
env:
|
|
|
|
- name: HASURA_GRAPHQL_DATABASE_URL
|
|
|
|
value: postgres://username:password@hostname:port/dbname
|
2020-06-03 12:55:47 +03:00
|
|
|
## enable the console served by server
|
2018-11-23 12:17:31 +03:00
|
|
|
- name: HASURA_GRAPHQL_ENABLE_CONSOLE
|
|
|
|
value: "true"
|
2020-06-03 12:55:47 +03:00
|
|
|
## enable debugging mode. It is recommended to disable this in production
|
|
|
|
- name: HASURA_GRAPHQL_DEV_MODE
|
|
|
|
value: "true"
|
2018-09-13 12:33:13 +03:00
|
|
|
ports:
|
|
|
|
- containerPort: 8080
|
|
|
|
protocol: TCP
|
|
|
|
resources: {}
|