docs: use consistent excludedNames glob pattern in filter design examples
Run the E2E test on kind / setup-test-matrix (push) Successful in 6s
e2e-test-kind.yaml / extract (push) Failing after 19s
Run the E2E test on kind / get-go-version (push) Failing after 20s
Run the E2E test on kind / build (push) Skipped
Run the E2E test on kind / run-e2e-test (push) Skipped

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-08-25 10:49:21 -04:00
committed by Tiger Kaovilai
parent d59e7d4eb8
commit 2bd481f9ed
2 changed files with 3 additions and 3 deletions
@@ -512,7 +512,7 @@ data:
resourceFilters:
- kinds: [ConfigMap, Secret]
names: ["app-*"]
excludedNames: ["*-tmp", "*-debug"]
excludedNames: ["*-tmp-*", "*-debug-*", "*-tmp", "*-debug"]
```
### Catch-All with No Label Selector (Override-Only)
@@ -669,7 +669,7 @@ data:
app: my-app
- kinds: [ConfigMap, Secret]
names: ["app-*"]
excludedNames: ["*-tmp", "*-debug"]
excludedNames: ["*-tmp-*", "*-debug-*", "*-tmp", "*-debug"]
```
### Backup CR — No ResourcePolicy (backward compatible)
@@ -578,7 +578,7 @@ data:
resourceFilters:
- kinds: [ConfigMap, Secret]
names: ["app-*"]
excludedNames: ["*-tmp", "*-debug"]
excludedNames: ["*-tmp-*", "*-debug-*", "*-tmp", "*-debug"]
```
### Catch-All with No Label Selector (Override-Only)