Skip to content

Commit

Permalink
fix: cf token
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Rodenhuis committed Nov 7, 2023
1 parent 9c5a807 commit f41244e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
27 changes: 25 additions & 2 deletions docs/get-started/installation/byo-wildcard.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,33 @@ When installing Otomi with DNS, there are 3 `issuers` you can use:
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.
In most of 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

cluster:
name: otomi
provider: aws # adjust to your provider
domainSuffix: try-otomi.net
otomi:
hasExternalDNS: true
dns:
domainFilters:
- try-otomi.net
provider:
aws:
credentials:
secretKey: xxx
accessKey: xxx
region: eu-central-1
apps:
cert-manager:
issuer: byo-wildcard-cert
byoWildcardCert: |
-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----
byoWildcardCertKey: |
-----BEGIN PRIVATE KEY-----
-----END PRIVATE KEY-----
```
4 changes: 3 additions & 1 deletion docs/get-started/installation/entrypoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ ingress:
entrypoint: <entrypoint-ip-address>
```
Make sure the external gateway is able to connect to the IP of the private load balancer used by the `platformClass` ingress controller.
Make sure the external gateway is configured to connect to the IP of the private load balancer used by the `platformClass` ingress controller.

The DNS A records created by Otomi will now all point to the IP address of the external gateway.
3 changes: 3 additions & 0 deletions docs/get-started/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,7 @@ Install Otomi with KMS
### [Configure an entrypoint for an external gateway](installation/entrypoint.md)
Install Otomi with an entrypoint for an external gateway

### [Bring Your Own Wild Card Certificate](installation/byo-wildcard.md)
Install Otomi using a BYO wild card certificate

---

0 comments on commit f41244e

Please sign in to comment.