Skip to content

Commit

Permalink
update manifests to v1.0.0-alpha30
Browse files Browse the repository at this point in the history
  • Loading branch information
shahidhk committed Nov 23, 2018
1 parent 45be696 commit 6cdffa8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion install-manifests/azure-resource-manager/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"firewallRuleName": "allow-all-azure-firewall-rule",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v1.0.0-alpha29"
"containerImage": "hasura/graphql-engine:v1.0.0-alpha30"
},
"resources": [
{
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/docker-compose-https/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-alpha29
image: hasura/graphql-engine:v1.0.0-alpha30
depends_on:
- "postgres"
restart: always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-alpha29
image: hasura/graphql-engine:v1.0.0-alpha30
ports:
- "8080:8080"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-alpha29
image: hasura/graphql-engine:v1.0.0-alpha30
ports:
- "8080:8080"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/docker-run/docker-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
docker run -d -p 8080:8080 \
-e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
hasura/graphql-engine:v1.0.0-alpha29
hasura/graphql-engine:v1.0.0-alpha30
2 changes: 1 addition & 1 deletion install-manifests/kubernetes/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v1.0.0-alpha29
- image: hasura/graphql-engine:v1.0.0-alpha30
imagePullPolicy: IfNotPresent
name: hasura
env:
Expand Down
2 changes: 1 addition & 1 deletion scripts/cli-migrations/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hasura/graphql-engine:v1.0.0-alpha29
FROM hasura/graphql-engine:v1.0.0-alpha30

ENV HASURA_GRAPHQL_ENABLE_CONSOLE=true

Expand Down

0 comments on commit 6cdffa8

Please sign in to comment.