diff options
author | Julien Dessaux | 2023-02-22 22:50:27 +0100 |
---|---|---|
committer | Julien Dessaux | 2023-02-22 22:50:27 +0100 |
commit | e5fcbd084c03b4e7cd1b4f617cc191dd86267158 (patch) | |
tree | 11376ef5b448c167ca3e97821d6564366951a07b /content/docs | |
parent | Added wireguard routing part one blog article (diff) | |
download | www-e5fcbd084c03b4e7cd1b4f617cc191dd86267158.tar.gz www-e5fcbd084c03b4e7cd1b4f617cc191dd86267158.tar.bz2 www-e5fcbd084c03b4e7cd1b4f617cc191dd86267158.zip |
Fixed typos
Diffstat (limited to 'content/docs')
-rw-r--r-- | content/docs/adyxax.org/vaultwarden/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/docs/adyxax.org/vaultwarden/install.md b/content/docs/adyxax.org/vaultwarden/install.md index ecd647f..a14700a 100644 --- a/content/docs/adyxax.org/vaultwarden/install.md +++ b/content/docs/adyxax.org/vaultwarden/install.md @@ -40,11 +40,11 @@ Then in the psql shell : ## 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 -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 resource "cloudflare_record" "pass-cname" { zone_id = lookup(data.cloudflare_zones.adyxax-org.zones[0], "id") @@ -88,7 +88,7 @@ resource "kubernetes_secret" "myth-pass-secrets" { ### 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 resource "kubernetes_manifest" "myth-deployment-pass" { provider = kubernetes.myth |