1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-15 17:51:01 +00:00

namespacesRegexdocs: Fix namespaceRegexes in full-cluster-secret-store.yaml (#3681)

This fixes a typo on https://external-secrets.io/v0.9.20/api/clustersecretstore/, in which the property is incorrectly called `namespacesRegex`

Signed-off-by: Arthur Kepler <610274+excalq@users.noreply.github.com>
This commit is contained in:
Arthur Kepler 2024-07-11 03:09:30 -07:00 committed by GitHub
parent 03a2ee6ce0
commit 14e6d78d25
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -151,8 +151,8 @@ spec:
- "namespace-a"
- "namespace-b"
# Namespace regex is helpful for namespace naming convention or when an external tool auto generate namespaces with prefix
- namespacesRegex:
# Namespace regexes are useful for policy management or when external tools auto-generate namespaces with prefixes/suffixes
- namespaceRegexes:
- "namespace-a-.*" # All namespaces prefixed by namespace-a- will work
- "namespace-b-.*" # All namespaces prefixed by namespace-b- will work