Skip to content

Commit 6ecc187

Browse files
committed
update manifests to v1.0.0-alpha39
1 parent 02d80c9 commit 6ecc187

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

install-manifests/azure-container-with-pg/azuredeploy.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"firewallRuleName": "allow-all-azure-firewall-rule",
9898
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
9999
"containerName": "hasura-graphql-engine",
100-
"containerImage": "hasura/graphql-engine:v1.0.0-alpha38"
100+
"containerImage": "hasura/graphql-engine:v1.0.0-alpha39"
101101
},
102102
"resources": [
103103
{

install-manifests/azure-container/azuredeploy.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"dbName": "[parameters('postgresDatabaseName')]",
5656
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
5757
"containerName": "hasura-graphql-engine",
58-
"containerImage": "hasura/graphql-engine:v1.0.0-alpha38"
58+
"containerImage": "hasura/graphql-engine:v1.0.0-alpha39"
5959
},
6060
"resources": [
6161
{

install-manifests/docker-compose-https/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
volumes:
77
- db_data:/var/lib/postgresql/data
88
graphql-engine:
9-
image: hasura/graphql-engine:v1.0.0-alpha38
9+
image: hasura/graphql-engine:v1.0.0-alpha39
1010
depends_on:
1111
- "postgres"
1212
restart: always

install-manifests/docker-compose-pgadmin/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
PGADMIN_DEFAULT_EMAIL: [email protected]
1818
PGADMIN_DEFAULT_PASSWORD: admin
1919
graphql-engine:
20-
image: hasura/graphql-engine:v1.0.0-alpha38
20+
image: hasura/graphql-engine:v1.0.0-alpha39
2121
ports:
2222
- "8080:8080"
2323
depends_on:

install-manifests/docker-compose-postgis/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
volumes:
77
- db_data:/var/lib/postgresql/data
88
graphql-engine:
9-
image: hasura/graphql-engine:v1.0.0-alpha38
9+
image: hasura/graphql-engine:v1.0.0-alpha39
1010
ports:
1111
- "8080:8080"
1212
depends_on:

install-manifests/docker-compose/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
volumes:
77
- db_data:/var/lib/postgresql/data
88
graphql-engine:
9-
image: hasura/graphql-engine:v1.0.0-alpha38
9+
image: hasura/graphql-engine:v1.0.0-alpha39
1010
ports:
1111
- "8080:8080"
1212
depends_on:

install-manifests/docker-run/docker-run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
docker run -d -p 8080:8080 \
33
-e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \
44
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
5-
hasura/graphql-engine:v1.0.0-alpha38
5+
hasura/graphql-engine:v1.0.0-alpha39

install-manifests/google-cloud-k8s-sql/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: graphql-engine
19-
image: hasura/graphql-engine:v1.0.0-alpha38
19+
image: hasura/graphql-engine:v1.0.0-alpha39
2020
ports:
2121
- containerPort: 8080
2222
# The following environment variables will contain the database host,

install-manifests/kubernetes/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
app: hasura
1919
spec:
2020
containers:
21-
- image: hasura/graphql-engine:v1.0.0-alpha38
21+
- image: hasura/graphql-engine:v1.0.0-alpha39
2222
imagePullPolicy: IfNotPresent
2323
name: hasura
2424
env:

scripts/cli-migrations/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hasura/graphql-engine:v1.0.0-alpha38
1+
FROM hasura/graphql-engine:v1.0.0-alpha39
22

33
# set an env var to let the cli know that
44
# it is running in server environment

0 commit comments

Comments
 (0)