graphql-engine/install-manifests/kubernetes/deployment.yaml
hasura-bot 53d5fc9cea add liveness and readiness kubernetes probes
GITHUB_PR_NUMBER: 9357
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9357

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7455
Co-authored-by: Antoine Pultier <45740+fungiboletus@users.noreply.github.com>
GitOrigin-RevId: 01f3a95fd607724ea29a83ebe85ae544045be17f
2023-02-15 15:13:26 +00:00

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.2.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: {}