docs: use consistent excludedNames glob pattern in filter design examples

This commit is contained in:
copilot-swe-agent[bot]
2026-07-20 19:56:52 +00:00
committed by GitHub
parent 14c7aea459
commit 225760f0b5
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)