chore: Update manifests after change

This commit is contained in:
2026-02-02 23:55:25 +00:00
parent ad57d53151
commit 4caf723116
53 changed files with 6356 additions and 140 deletions

View File

@@ -53,14 +53,17 @@ spec:
clusterResourceBlacklist:
description: ClusterResourceBlacklist contains list of blacklisted cluster level resources
items:
description: |-
GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying
concepts during lookup stages without having partially valid types
description: ClusterResourceRestrictionItem is a cluster resource that is restricted by the project's whitelist or blacklist
properties:
group:
type: string
kind:
type: string
name:
description: |-
Name is the name of the restricted resource. Glob patterns using Go's filepath.Match syntax are supported.
Unlike the group and kind fields, if no name is specified, all resources of the specified group/kind are matched.
type: string
required:
- group
- kind
@@ -69,14 +72,17 @@ spec:
clusterResourceWhitelist:
description: ClusterResourceWhitelist contains list of whitelisted cluster level resources
items:
description: |-
GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying
concepts during lookup stages without having partially valid types
description: ClusterResourceRestrictionItem is a cluster resource that is restricted by the project's whitelist or blacklist
properties:
group:
type: string
kind:
type: string
name:
description: |-
Name is the name of the restricted resource. Glob patterns using Go's filepath.Match syntax are supported.
Unlike the group and kind fields, if no name is specified, all resources of the specified group/kind are matched.
type: string
required:
- group
- kind