[ci skip] update claude knowledge: always apply cloudflared module for DNS
When deploying a new service, the cloudflared module must also be applied to create the Cloudflare DNS record. Updated CLAUDE.md and setup-project skill.
This commit is contained in:
parent
d911db6cd9
commit
87f851c20e
2 changed files with 13 additions and 1 deletions
|
|
@ -313,9 +313,15 @@ smtp_password = var.mailserver_accounts["info@viktorbarzin.me"]
|
|||
|
||||
```bash
|
||||
terraform init
|
||||
terraform apply -target=module.kubernetes_cluster.module.<service> -auto-approve
|
||||
terraform apply -target=module.kubernetes_cluster.module.<service> -var="kube_config_path=$(pwd)/config" -auto-approve
|
||||
```
|
||||
|
||||
**IMPORTANT: Also apply the cloudflared module to create the Cloudflare DNS record:**
|
||||
```bash
|
||||
terraform apply -target=module.kubernetes_cluster.module.cloudflared -var="kube_config_path=$(pwd)/config" -auto-approve
|
||||
```
|
||||
Without this step, the DNS record won't be created even though it's defined in `terraform.tfvars`.
|
||||
|
||||
### 8. Verification
|
||||
|
||||
```bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue