update manifests to v1.0.0-beta.4

This commit is contained in:
Shahidh K Muhammed 2019-08-01 16:26:32 +05:30
parent b4a0a03631
commit bfc6fc8a5e
10 changed files with 11 additions and 10 deletions

View File

@ -97,7 +97,7 @@
"firewallRuleName": "allow-all-azure-firewall-rule",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v1.0.0-beta.3"
"containerImage": "hasura/graphql-engine:v1.0.0-beta.4"
},
"resources": [
{

View File

@ -55,7 +55,7 @@
"dbName": "[parameters('postgresDatabaseName')]",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v1.0.0-beta.3"
"containerImage": "hasura/graphql-engine:v1.0.0-beta.4"
},
"resources": [
{

View File

@ -6,7 +6,7 @@ services:
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-beta.3
image: hasura/graphql-engine:v1.0.0-beta.4
depends_on:
- "postgres"
restart: always

View File

@ -17,7 +17,7 @@ services:
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
PGADMIN_DEFAULT_PASSWORD: admin
graphql-engine:
image: hasura/graphql-engine:v1.0.0-beta.3
image: hasura/graphql-engine:v1.0.0-beta.4
ports:
- "8080:8080"
depends_on:

View File

@ -6,7 +6,7 @@ services:
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-beta.3
image: hasura/graphql-engine:v1.0.0-beta.4
ports:
- "8080:8080"
depends_on:

View File

@ -6,7 +6,7 @@ services:
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-beta.3
image: hasura/graphql-engine:v1.0.0-beta.4
ports:
- "8080:8080"
depends_on:
@ -15,6 +15,7 @@ services:
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:@postgres:5432/postgres
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
## uncomment next line to set an admin secret
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
volumes:

View File

@ -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-beta.3
hasura/graphql-engine:v1.0.0-beta.4

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v1.0.0-beta.3
image: hasura/graphql-engine:v1.0.0-beta.4
ports:
- containerPort: 8080
# The following environment variables will contain the database host,

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v1.0.0-beta.3
- image: hasura/graphql-engine:v1.0.0-beta.4
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -1,4 +1,4 @@
FROM hasura/graphql-engine:v1.0.0-beta.3
FROM hasura/graphql-engine:v1.0.0-beta.4
# set an env var to let the cli know that
# it is running in server environment