mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
ba45d0454d
GitOrigin-RevId: e7ded3aaa7677e8baa5a30217625f32b68f7fb0b
37 lines
901 B
YAML
37 lines
901 B
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:v1.3.3
|
|
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:
|
|
- containerPort: 8080
|
|
protocol: TCP
|
|
resources: {}
|