mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
e41be0a2d3
Blocker: Data connector still needs to be published PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9775 GitOrigin-RevId: 93ec6478932f016a3a1c10b656218fecb00fb864
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
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:
|
|
- image: hasura/graphql-engine:v2.29.0
|
|
imagePullPolicy: IfNotPresent
|
|
name: hasura
|
|
env:
|
|
- name: HASURA_GRAPHQL_DATABASE_URL
|
|
value: postgres://username:password@hostname:port/dbname
|
|
## enable the console served by server
|
|
- name: HASURA_GRAPHQL_ENABLE_CONSOLE
|
|
value: "true"
|
|
## enable debugging mode. It is recommended to disable this in production
|
|
- name: HASURA_GRAPHQL_DEV_MODE
|
|
value: "true"
|
|
ports:
|
|
- name: http
|
|
containerPort: 8080
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: http
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: http
|
|
resources: {}
|