Fixed typos
This commit is contained in:
parent
c867116905
commit
e5fcbd084c
1 changed files with 3 additions and 3 deletions
|
@ -40,11 +40,11 @@ Then in the psql shell :
|
||||||
|
|
||||||
## Kubernetes manifests in terraform
|
## Kubernetes manifests in terraform
|
||||||
|
|
||||||
This app is part of an experiment of mine to migrate stuff from traditional hosting to kubernetes. I first wrote manifests by hand then imported them with terraform. I do not like it and find it too complex/overkill but that is managed this way for now.
|
This app is part of an experiment of mine to migrate stuff from traditional hosting to kubernetes. I first wrote manifests by hand then imported them with terraform. I do not like it and find it too complex/overkill but everything is managed this way for now.
|
||||||
|
|
||||||
### DNS CNAME
|
### DNS CNAME
|
||||||
|
|
||||||
Since all configuration regarding this application is in terraform, so is the dns :
|
Since all configuration regarding this application is in terraform, so is my dns :
|
||||||
```hcl
|
```hcl
|
||||||
resource "cloudflare_record" "pass-cname" {
|
resource "cloudflare_record" "pass-cname" {
|
||||||
zone_id = lookup(data.cloudflare_zones.adyxax-org.zones[0], "id")
|
zone_id = lookup(data.cloudflare_zones.adyxax-org.zones[0], "id")
|
||||||
|
@ -88,7 +88,7 @@ resource "kubernetes_secret" "myth-pass-secrets" {
|
||||||
|
|
||||||
### Deployment
|
### Deployment
|
||||||
|
|
||||||
I could not write the deployment with the `kubernetes_deployment` terraform ressource, so it is a row manifest which imports a yaml syntax in hcl. It is horrible to look at but works. Change the image tag to the latest stable version of pass before deploying :
|
At the time of writing I could not write the deployment with the `kubernetes_deployment` terraform ressource, so it is a raw manifest which imports a yaml syntax in hcl. It is horrible to look at but works. Change the image tag to the latest stable version of vaultwarden before deploying :
|
||||||
```hcl
|
```hcl
|
||||||
resource "kubernetes_manifest" "myth-deployment-pass" {
|
resource "kubernetes_manifest" "myth-deployment-pass" {
|
||||||
provider = kubernetes.myth
|
provider = kubernetes.myth
|
||||||
|
|
Loading…
Add table
Reference in a new issue