This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd551ae
commit ee32289
Showing
5 changed files
with
89 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
## CSI Driver (DigitalOcean Block Storage) | ||
|
||
For DigitalOcean, Kubernetes clusters deploy the CSI driver by default. | ||
Because of that, we don't include its deployment in this stack. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## External DNS | ||
|
||
DigitalOcean does not offer an IAM service. Instead of that, they use API tokens to communicate directly using the API. | ||
|
||
To be able to communicate with the API, External DNS needs to know and use that token, so you must provide it as a | ||
Kubernetes Secret resource as follows: | ||
|
||
```console | ||
kubectl create secret generic external-dns-environment -n external-dns --from-literal DO_TOKEN="your-token-here" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
## CSI Driver (GCE Persistent Disk) | ||
|
||
For Google Cloud Provider, GKE clusters deploy the CSI driver by default (that is the right path). Because of that, | ||
we don't include its deployment in this stack. | ||
For Google Cloud Provider, GKE clusters deploy the CSI driver by default. | ||
Because of that, we don't include its deployment in this stack. |