Skip to content

Commit

Permalink
fix: multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Rodenhuis committed Nov 6, 2023
1 parent 35831ad commit 6380f5b
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 11 deletions.
10 changes: 4 additions & 6 deletions docs/get-started/installation/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,13 @@ az account set --subscription=<subscription_id>
Setting the environment variables
```bash
# Set Resource Group Name
RGNAME=otomi
RGNAME=rg-otomi
# Set Region (Location) or any other location
LOCATION=westeurope
# Create Resource Group
az group create -n $RGNAME -l $LOCATION
# Set Cluster name
NAME=quickstart
CLUSTER_NAME=otomi-aks-$NAME
CLUSTER_NAME=otomi
```

Creating the cluster
Expand All @@ -53,15 +52,14 @@ az aks create --name $CLUSTER_NAME \
--nodepool-name otomipool \
--node-count 3 \
--node-vm-size Standard_F8s_v2 \
--kubernetes-version 1.26.9 \
--kubernetes-version 1.27.3 \
--enable-cluster-autoscaler \
--min-count 1 \
--max-count 6 \
--max-pods 100 \
--network-plugin azure \
--network-policy calico \
--outbound-type loadBalancer \
--uptime-sla \
--generate-ssh-keys
```

Expand Down Expand Up @@ -127,7 +125,7 @@ tee values.yaml<<EOF
cluster:
name: otomi
provider: azure
domainSuffix: example.com
domainSuffix: azure.example.com
otomi:
hasExternalDNS: true
dns:
Expand Down
18 changes: 18 additions & 0 deletions docs/get-started/installation/byo-wildcard.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
slug: byo-wildcard-cert
title: BYO Wild card Certificate
sidebar_label: BYO Wild Card Cert
---

When installing Otomi with DNS, there are 3 `issuers` you can use:
1. custom-ca
2. letsencrypt
3. byo-wildcard-cert

In the installation examples we use `letsencrypt`. In this example we'll show how to use a Bring Your Own wildcard certificate.

To use a `byo-wildcard-cert`, install otomi with the following values:

```yaml

```
2 changes: 1 addition & 1 deletion docs/get-started/installation/civo.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ tee values.yaml<<EOF
cluster:
name: otomi
provider: civo
domainSuffix: your-civo-domain.example.com
domainSuffix: civo.your-civo-domain.example.com
otomi:
hasExternalDNS: true
dns:
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/installation/digitalocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tee values.yaml<<EOF
cluster:
name: otomi
provider: digitalocean
domainSuffix: example.com
domainSuffix: do.example.com
otomi:
hasExternalDNS: true
dns:
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/installation/gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ tee values.yaml<<EOF
cluster:
name: otomi
provider: google
domainSuffix: example.com
domainSuffix: gcp.example.com
otomi:
hasExternalDNS: true
dns:
Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/installation/linode.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ tee values.yaml<<EOF
cluster:
name: otomi # choose a name for your cluster
provider: linode
domainSuffix: your-civo-domain.com # the Linode domain name created in the previous step
domainSuffix: your-linode-domain.com # the Linode domain name created in the previous step
otomi:
hasExternalDNS: true
dns:
domainFilters:
- your-civo-domain.com
- your-linode-domain.com
provider:
linode:
apiToken: $LINODE_TOKEN
Expand Down

0 comments on commit 6380f5b

Please sign in to comment.