Skip to content

Commit

Permalink
fix: alerts for dns
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Rodenhuis committed Dec 11, 2023
1 parent 892490f commit 4f50e83
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
17 changes: 13 additions & 4 deletions docs/get-started/installation/gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,33 @@ gcloud services enable container.googleapis.com

## Create a GKE cluster

Set up environment variables
Set up environment variables:

:::info
Change the Machine Type to match a type supported in your region.
:::

```bash
# Set Cluster name
CLUSTER_NAME=otomi
# Set region
COMPUTE_REGION=europe-west4
# Set machine type
MACHINE_TYPE=e2-standard-8
```

Create the cluster:

```bash
# Create the cluster
gcloud container clusters create $CLUSTER_NAME \
--enable-autoscaling \
--enable-network-policy \
--num-nodes 1 \
--min-nodes 1 \
--max-nodes 3 \
--machine-type e2-standard-8 \
--max-nodes 2 \
--machine-type $MACHINE_TYPE \
--logging NONE \
--monitoring NONE \
--region $COMPUTE_REGION
```

Expand Down
3 changes: 1 addition & 2 deletions docs/get-started/installation/linode.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export KUBECONFIG=<path-to-downloads>/otomi--kubeconfig.yaml
## Configure DNS

:::info AlERT
Support for Linode DNS is tested, but not officially released yet!
Support for Linode DNS is coming soon!
:::

If you want to learn about how to use Linode DNS Manager read the following tutorials:
Expand Down Expand Up @@ -57,7 +57,6 @@ cluster:
domainSuffix: linode.example.com
otomi:
hasExternalDNS: true
version: linode-dns
dns:
domainFilters:
- example.com
Expand Down
3 changes: 1 addition & 2 deletions docs/get-started/installation/scaleway.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ scw k8s cluster create name=$SCALEWAY_CLUSTER_NAME \
## Configure DNS

:::info AlERT
Support for Scaleway DNS is tested, but not officially released yet!
Support for Scaleway DNS is coming soon!
:::

### Importing a Domain into Scaleway DNS
Expand Down Expand Up @@ -80,7 +80,6 @@ cluster:
domainSuffix: your-sub-domain.example.com
otomi:
hasExternalDNS: true
version: scaleway-dns
dns:
domainFilters:
- example.com
Expand Down

0 comments on commit 4f50e83

Please sign in to comment.