-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deps, metadata and fix GH release action. Signed-off-by: Flavio Castelli <fcastelli@suse.com>
- Loading branch information
Showing
4 changed files
with
81 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
questions: | ||
- default: null | ||
description: >- | ||
This policy validates the labels of generic Kubernetes objects. It rejects | ||
all the resources that use one or more labels on the deny list. It also | ||
allows you to put constraints on specific labels. The constraints are | ||
expressed as regular expression. It will also allow you to require specific | ||
labels to be part of the resource. | ||
group: Settings | ||
label: Description | ||
required: false | ||
hide_input: true | ||
type: map | ||
variable: description | ||
- default: [] | ||
description: A list of labels that cannot be used | ||
group: Settings | ||
label: Denied labels | ||
required: false | ||
type: array[ | ||
variable: denied_labels | ||
- default: [] | ||
description: A list of labels that must be defined | ||
group: Settings | ||
label: Mandatory labels | ||
required: false | ||
type: array[ | ||
variable: mandatory_labels | ||
- default: [] | ||
tooltip: Annotations that are validated with user-defined RegExp | ||
group: Settings | ||
label: Constrained labels | ||
target: true | ||
type: map[ | ||
variable: constrained_labels |