-
Notifications
You must be signed in to change notification settings - Fork 765
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare v3.1.0-beta.10 release (#705)
- Loading branch information
Showing
28 changed files
with
556 additions
and
164 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
Binary file not shown.
Binary file not shown.
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
86 changes: 86 additions & 0 deletions
86
charts/gatekeeper/templates/constraintpodstatus-customresourcedefinition.yaml
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,86 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.4 | ||
creationTimestamp: null | ||
labels: | ||
app: '{{ template "gatekeeper.name" . }}' | ||
chart: '{{ template "gatekeeper.name" . }}' | ||
gatekeeper.sh/system: "yes" | ||
heritage: '{{ .Release.Service }}' | ||
release: '{{ .Release.Name }}' | ||
name: constraintpodstatuses.status.gatekeeper.sh | ||
spec: | ||
group: status.gatekeeper.sh | ||
names: | ||
kind: ConstraintPodStatus | ||
listKind: ConstraintPodStatusList | ||
plural: constraintpodstatuses | ||
singular: constraintpodstatus | ||
scope: Namespaced | ||
validation: | ||
openAPIV3Schema: | ||
description: ConstraintPodStatus is the Schema for the constraintpodstatuses | ||
API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
status: | ||
description: ConstraintPodStatusStatus defines the observed state of ConstraintPodStatus | ||
properties: | ||
constraintUID: | ||
description: Storing the constraint UID allows us to detect drift, such | ||
as when a constraint has been recreated after its CRD was deleted | ||
out from under it, interrupting the watch | ||
type: string | ||
enforced: | ||
type: boolean | ||
errors: | ||
items: | ||
description: Error represents a single error caught while adding a | ||
constraint to OPA | ||
properties: | ||
code: | ||
type: string | ||
location: | ||
type: string | ||
message: | ||
type: string | ||
required: | ||
- code | ||
- message | ||
type: object | ||
type: array | ||
id: | ||
type: string | ||
observedGeneration: | ||
format: int64 | ||
type: integer | ||
operations: | ||
items: | ||
type: string | ||
type: array | ||
type: object | ||
type: object | ||
version: v1beta1 | ||
versions: | ||
- name: v1beta1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
88 changes: 88 additions & 0 deletions
88
charts/gatekeeper/templates/constrainttemplatepodstatus-customresourcedefinition.yaml
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,88 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.4 | ||
creationTimestamp: null | ||
labels: | ||
app: '{{ template "gatekeeper.name" . }}' | ||
chart: '{{ template "gatekeeper.name" . }}' | ||
gatekeeper.sh/system: "yes" | ||
heritage: '{{ .Release.Service }}' | ||
release: '{{ .Release.Name }}' | ||
name: constrainttemplatepodstatuses.status.gatekeeper.sh | ||
spec: | ||
group: status.gatekeeper.sh | ||
names: | ||
kind: ConstraintTemplatePodStatus | ||
listKind: ConstraintTemplatePodStatusList | ||
plural: constrainttemplatepodstatuses | ||
singular: constrainttemplatepodstatus | ||
scope: Namespaced | ||
validation: | ||
openAPIV3Schema: | ||
description: ConstraintTemplatePodStatus is the Schema for the constrainttemplatepodstatuses | ||
API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
status: | ||
description: ConstraintTemplatePodStatusStatus defines the observed state | ||
of ConstraintTemplatePodStatus | ||
properties: | ||
errors: | ||
items: | ||
description: CreateCRDError represents a single error caught during | ||
parsing, compiling, etc. | ||
properties: | ||
code: | ||
type: string | ||
location: | ||
type: string | ||
message: | ||
type: string | ||
required: | ||
- code | ||
- message | ||
type: object | ||
type: array | ||
id: | ||
description: 'Important: Run "make" to regenerate code after modifying | ||
this file' | ||
type: string | ||
observedGeneration: | ||
format: int64 | ||
type: integer | ||
operations: | ||
items: | ||
type: string | ||
type: array | ||
templateUID: | ||
description: UID is a type that holds unique ID values, including UUIDs. Because | ||
we don't ONLY use UUIDs, this is an alias to string. Being a type | ||
captures intent and helps make sure that UIDs and names do not get | ||
conflated. | ||
type: string | ||
type: object | ||
type: object | ||
version: v1beta1 | ||
versions: | ||
- name: v1beta1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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
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
Oops, something went wrong.