tag release v1.2.0 (#4597)

This commit is contained in:
Shahidh K Muhammed 2020-04-29 17:13:42 +05:30 committed by GitHub
parent 90b49eb007
commit fb35576984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 12 additions and 11 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.2.0-beta.5"
"containerImage": "hasura/graphql-engine:v1.2.0"
},
"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.2.0-beta.5"
"containerImage": "hasura/graphql-engine:v1.2.0"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v1.2.0-beta.5
image: hasura/graphql-engine:v1.2.0
depends_on:
- "postgres"
restart: always

View File

@ -19,7 +19,7 @@ services:
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
PGADMIN_DEFAULT_PASSWORD: admin
graphql-engine:
image: hasura/graphql-engine:v1.2.0-beta.5
image: hasura/graphql-engine:v1.2.0
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v1.2.0-beta.5
image: hasura/graphql-engine:v1.2.0
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v1.2.0-beta.5
image: hasura/graphql-engine:v1.2.0
ports:
- "8080:8080"
depends_on:

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.2.0-beta.5
hasura/graphql-engine:v1.2.0

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v1.2.0-beta.5
image: hasura/graphql-engine:v1.2.0
ports:
- containerPort: 8080
readinessProbe:

View File

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

View File

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

View File

@ -2,7 +2,7 @@ FROM hasura/haskell-docker-packager:20190731 as packager
WORKDIR /tmp
RUN apt-get update && apt-get download libstdc++6
FROM hasura/graphql-engine:v1.2.0-beta.5
FROM hasura/graphql-engine:v1.2.0
# install libstdc++6 from .deb file
COPY --from=packager /tmp/libstdc++6* .

View File

@ -20,3 +20,4 @@ v1.1.1 31
v1.2.0-beta.3 34
v1.2.0-beta.4 34
v1.2.0-beta.5 34
v1.2.0 34