From f27146dec44213ac63eefbecfc0900ece2c143da Mon Sep 17 00:00:00 2001 From: Rob Dominguez Date: Fri, 23 Dec 2022 10:49:55 -0600 Subject: [PATCH] docs: update EE quickstarts PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7388 GitOrigin-RevId: d90898f4e1e2ddb1ed33d6776a1731a2889acf09 --- docs/docs/enterprise/getting-started/quickstart-aws-ecs.mdx | 6 ++++-- docs/docs/enterprise/getting-started/quickstart-docker.mdx | 6 ++++-- .../getting-started/quickstart-google-cloud-run.mdx | 6 ++++-- .../enterprise/getting-started/quickstart-kubernetes.mdx | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/docs/docs/enterprise/getting-started/quickstart-aws-ecs.mdx b/docs/docs/enterprise/getting-started/quickstart-aws-ecs.mdx index 1b4c1023f96..8a1bce0855a 100644 --- a/docs/docs/enterprise/getting-started/quickstart-aws-ecs.mdx +++ b/docs/docs/enterprise/getting-started/quickstart-aws-ecs.mdx @@ -13,7 +13,7 @@ import LatestRelease from '@site/src/components/LatestRelease'; # Quickstart with AWS ECS -
Available on: Enterprise Edition
+
Available on: Enterprise Edition
## Introduction @@ -28,6 +28,8 @@ Fargate task, and perform other common tasks in Amazon ECS with the AWS CLI. This tutorial assumes that the following prerequisites have been met: +- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](sales@hasura.io) if you do not already + have one. - The latest version of the AWS CLI is installed and configured. For more information about installing or upgrading your AWS CLI, see [Installing the AWS Command Line Interface](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html). @@ -74,7 +76,7 @@ Edit `hasura-fargate-task.json` and set the right values: "environment": [ { "name": "HASURA_GRAPHQL_EE_LICENSE_KEY", - "value": "" + "value": "" }, { "name": "HASURA_GRAPHQL_METADATA_DATABASE_URL", diff --git a/docs/docs/enterprise/getting-started/quickstart-docker.mdx b/docs/docs/enterprise/getting-started/quickstart-docker.mdx index f84fc34a84c..d69ab008941 100644 --- a/docs/docs/enterprise/getting-started/quickstart-docker.mdx +++ b/docs/docs/enterprise/getting-started/quickstart-docker.mdx @@ -14,7 +14,7 @@ import LatestRelease from '@site/src/components/LatestRelease'; # Quickstart with Docker -
Available on: Enterprise Edition
+
Available on: Enterprise Edition
## Introduction @@ -30,6 +30,8 @@ Enterprise Edition on your **local environment**. This tutorial assumes that the following prerequisites have been met: +- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](mailto:sales@hasura.io) if you do not + already have one. - You have [Docker](https://docs.docker.com/install/) and [Docker Compose](https://docs.docker.com/compose/install/) working on your machine. @@ -58,7 +60,7 @@ admin secret key. graphql-engine: image: hasura/graphql-engine:v2.12.0 environment: - HASURA_GRAPHQL_EE_LICENSE_KEY: "" + HASURA_GRAPHQL_EE_LICENSE_KEY: "" HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey ... ``` diff --git a/docs/docs/enterprise/getting-started/quickstart-google-cloud-run.mdx b/docs/docs/enterprise/getting-started/quickstart-google-cloud-run.mdx index 37f3513d40f..c81144dbb36 100644 --- a/docs/docs/enterprise/getting-started/quickstart-google-cloud-run.mdx +++ b/docs/docs/enterprise/getting-started/quickstart-google-cloud-run.mdx @@ -13,7 +13,7 @@ import LatestRelease from '@site/src/components/LatestRelease'; # Quickstart with Google Cloud Run -
Available on: Enterprise Edition
+
Available on: Enterprise Edition
## Introduction @@ -27,6 +27,8 @@ This tutorial will help you run Hasura Enterprise Edition as a Google Cloud Run This tutorial assumes that the following prerequisites have been met: +- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](sales@hasura.io) if you do not already + have one. - The latest version of the `gcloud` CLI is installed and configured. For more information about installing or upgrading your gcloud CLI, see [Installing the gcloud CLI](https://cloud.google.com/sdk/docs/install). - Your `gcloud` user has the @@ -52,7 +54,7 @@ wget https://raw.githubusercontent.com/hasura/graphql-engine/stable/install-mani Edit `env.yaml` and set the right values: ```yaml -HASURA_GRAPHQL_EE_LICENSE_KEY: '' +HASURA_GRAPHQL_EE_LICENSE_KEY: '' HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres HASURA_GRAPHQL_REDIS_URL: 'redis://redis:6379' HASURA_GRAPHQL_RATE_LIMIT_REDIS_URL: 'redis://redis:6379' diff --git a/docs/docs/enterprise/getting-started/quickstart-kubernetes.mdx b/docs/docs/enterprise/getting-started/quickstart-kubernetes.mdx index 6ba0dc927b1..36b3604e747 100644 --- a/docs/docs/enterprise/getting-started/quickstart-kubernetes.mdx +++ b/docs/docs/enterprise/getting-started/quickstart-kubernetes.mdx @@ -13,7 +13,7 @@ import LatestRelease from '@site/src/components/LatestRelease'; # Quickstart with Kubernetes -
Available on: Enterprise Edition
+
Available on: Enterprise Edition
## Introduction @@ -27,6 +27,8 @@ This tutorial helps you set up Hasura Enterprise Edition on Kubernetes and conne This tutorial assumes that the following prerequisites have been met: +- To deploy Hasura EE, you will need a license key. [Please contact Hasura Sales](sales@hasura.io) if you do not already + have one. - A functioning Kubernetes cluster. - This tutorial uses a container image hosted on the public Docker hub, so your Kubernetes cluster must have internet access. @@ -51,7 +53,7 @@ Edit `deployment.yaml` and set the right values: --- env: - name: HASURA_GRAPHQL_EE_LICENSE_KEY - value: '' + value: '' - name: HASURA_GRAPHQL_METADATA_DATABASE_URL value: postgres://:@hostname:/ - name: HASURA_GRAPHQL_REDIS_URL