Skip to content

Commit

Permalink
docs: fix typo and improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Pexers committed Apr 8, 2024
1 parent d1ba708 commit 2b812dd
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions examples/kustomization_user_deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ Pretty sure I butchered a lot ;)

### Assuming you followed the `DO not Skip` part of the installation

In the project folder, where the `kube.tf` is located.<br>
Create a folder named `extra-manifests`<br>
In it create a file named `kustomization.yaml.tpl`<br>
and **your** manifest file(s), there names must be listed in the `kustomization.yaml.tpl` `recources` without the `.tpl`<br>
e.g. `some-random-name.yaml.tpl`
In the project folder, where the `kube.tf` is located:
1. Create a folder named `extra-manifests`.
2. In it create a file named `kustomization.yaml.tpl` and **your** manifest file(s). Be sure to use the `resources` field, in the `kustomization.yaml` file, to define the list of resources to include in a configuration.

## Apply the kustomized configuration

Expand All @@ -22,13 +20,17 @@ Assuming no errors have been made, apply this by run `terraform apply`<br>
In the highly unlikely case that an actual error has occurred...<br>
Anyway, you can rerun just the kustomization part like this:

terraform apply -replace='module.kube-hetzner.null_resource.kustomization_user["kustomization.yaml.tpl"]' --auto-approve
```sh
terraform apply -replace='module.kube-hetzner.null_resource.kustomization_user["kustomization.yaml.tpl"]' --auto-approve
```

Check what kustomization exists:

(⎈|dev3:default)➜ dev3-cluster (main) ✗ terraform state list | grep kustom
...
module.kube-hetzner.null_resource.kustomization
module.kube-hetzner.null_resource.kustomization_user["some-random-name.yaml.tpl"]
module.kube-hetzner.null_resource.kustomization_user["kustomization.yaml.tpl"]
...
```sh
(⎈|dev3:default)➜ dev3-cluster (main) ✗ terraform state list | grep kustom
...
module.kube-hetzner.null_resource.kustomization
module.kube-hetzner.null_resource.kustomization_user["some-random-name.yaml.tpl"]
module.kube-hetzner.null_resource.kustomization_user["kustomization.yaml.tpl"]
...
```

0 comments on commit 2b812dd

Please sign in to comment.