Skip to content

Commit

Permalink
Update bundle files
Browse files Browse the repository at this point in the history
This is to fix failures in the verify-bundle workflow.
  • Loading branch information
Vincent056 committed Aug 28, 2024
1 parent 2b1c972 commit 2b280ab
Show file tree
Hide file tree
Showing 22 changed files with 1,494 additions and 1,272 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.13.0
controller-gen.kubebuilder.io/version: v0.16.1
creationTimestamp: null
name: compliancecheckresults.compliance.openshift.io
spec:
Expand Down Expand Up @@ -32,9 +32,11 @@ spec:
"test"
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'
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
description:
description: A human-readable check description, what and why it does
Expand All @@ -43,14 +45,17 @@ spec:
description: A unique identifier of a check
type: string
instructions:
description: How to evaluate if the rule status manually. If no automatic
test is present, the rule status will be MANUAL and the administrator
should follow these instructions.
description: |-
How to evaluate if the rule status manually. If no automatic test is present, the rule status will be MANUAL
and the administrator should follow these instructions.
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'
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.13.0
controller-gen.kubebuilder.io/version: v0.16.1
creationTimestamp: null
name: complianceremediations.compliance.openshift.io
spec:
Expand All @@ -26,18 +26,24 @@ spec:
name: v1alpha1
schema:
openAPIV3Schema:
description: ComplianceRemediation represents a remediation that can be applied
to the cluster to fix the found issues.
description: |-
ComplianceRemediation represents a remediation that can be applied to the
cluster to fix the found issues.
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'
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'
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
Expand All @@ -49,38 +55,40 @@ spec:
by the operator
type: boolean
current:
description: Defines the remediation that is proposed by the scan.
If there is no "outdated" remediation in this object, the "current"
remediation is what will be applied.
description: |-
Defines the remediation that is proposed by the scan. If there is no "outdated"
remediation in this object, the "current" remediation is what will be applied.
properties:
object:
description: The remediation payload. This would normally be a
full Kubernetes object.
description: |-
The remediation payload. This would normally be a full Kubernetes
object.
type: object
x-kubernetes-embedded-resource: true
x-kubernetes-preserve-unknown-fields: true
type: object
outdated:
description: In case there was a previous remediation proposed by
a previous scan, and that remediation now differs, the old remediation
will be kept in this "outdated" key. This requires admin intervention
to remove this outdated object and ensure the current is what's
applied.
description: |-
In case there was a previous remediation proposed by a previous scan, and that remediation
now differs, the old remediation will be kept in this "outdated" key. This requires admin
intervention to remove this outdated object and ensure the current is what's applied.
properties:
object:
description: The remediation payload. This would normally be a
full Kubernetes object.
description: |-
The remediation payload. This would normally be a full Kubernetes
object.
type: object
x-kubernetes-embedded-resource: true
x-kubernetes-preserve-unknown-fields: true
type: object
type:
default: Configuration
description: 'The type of remediation that this object applies. The
available types are: Configuration and Enforcement. Where the Configuration
type fixes a configuration to match a compliance expectation. The
Enforcement type, on the other hand, ensures that the cluster stays
in compliance via means of authorization.'
description: |-
The type of remediation that this object applies. The available
types are: Configuration and Enforcement. Where the Configuration
type fixes a configuration to match a compliance expectation.
The Enforcement type, on the other hand, ensures that the cluster
stays in compliance via means of authorization.
enum:
- Configuration
- Enforcement
Expand Down
Loading

0 comments on commit 2b280ab

Please sign in to comment.