From dee7e1f0f61b04b10e313f782ec9d8c4a77b427f Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 13 Sep 2026 22:00:39 +0200 Subject: [PATCH] fix(copilot): adapt file name pattern --- .github/copilot-instructions.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 9c8e289..ab966f1 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -42,6 +42,7 @@ image: - Render all attributes, even if they are empty, to prevent drift in Argo CD. For example, `labels` must be rendered, while `annotations` are defined as `yaml:"annotations,omitempty"`. - Use plural for `*.tpl` files, because they may contain functions for multiple resources of the same kind (e.g. `_services.tpl` for `httpService.yaml` or `sshService.yaml`, `_backendTLSPolicies.tpl` for `backendTLSPolicy.yaml`). - Use as prefix of YAML files the resource kind (e.g., `deployment.yaml` for `Deployment` resources). If there are multiple resources of the same kind, use a descriptive suffix (e.g., `deployment_metrics.yaml` for a `Deployment` related to metrics). +- Short names like `pvc` for Persistent Volume Claims or `svc` for Services are not allowed in file names or key names. ### Unit Tests