-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator assisted-service-operator (0.7.66)
- Loading branch information
1 parent
d4efa86
commit 431e3bf
Showing
9 changed files
with
4,137 additions
and
0 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
...ed-service-operator/0.7.66/manifests/agent-install.openshift.io_agentclassifications.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,105 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.6.2 | ||
creationTimestamp: null | ||
name: agentclassifications.agent-install.openshift.io | ||
spec: | ||
group: agent-install.openshift.io | ||
names: | ||
kind: AgentClassification | ||
listKind: AgentClassificationList | ||
plural: agentclassifications | ||
singular: agentclassification | ||
scope: Namespaced | ||
versions: | ||
- name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: AgentClassification is the Schema for the AgentClassifications | ||
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 | ||
spec: | ||
description: AgentClassificationSpec defines the desired state of AgentClassification | ||
properties: | ||
labelKey: | ||
description: LabelKey specifies the label key to apply to matched | ||
Agents | ||
type: string | ||
labelValue: | ||
description: LabelValue specifies the label value to apply to matched | ||
Agents | ||
type: string | ||
query: | ||
description: Query is in gojq format (https://github.com/itchyny/gojq#difference-to-jq) | ||
and will be invoked on each Agent's inventory. The query should | ||
return a boolean. The operator will apply the label to any Agent | ||
for which "true" is returned. | ||
type: string | ||
required: | ||
- labelKey | ||
- labelValue | ||
- query | ||
type: object | ||
status: | ||
description: AgentClassificationStatus defines the observed state of AgentClassification | ||
properties: | ||
conditions: | ||
items: | ||
description: Condition represents the state of the operator's reconciliation | ||
functionality. | ||
properties: | ||
lastHeartbeatTime: | ||
format: date-time | ||
type: string | ||
lastTransitionTime: | ||
format: date-time | ||
type: string | ||
message: | ||
type: string | ||
reason: | ||
type: string | ||
status: | ||
type: string | ||
type: | ||
description: ConditionType is the state of the operator's reconciliation | ||
functionality. | ||
type: string | ||
required: | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
errorCount: | ||
description: ErrorCount shows how many Agents encountered errors when | ||
matching the classification | ||
type: integer | ||
matchedCount: | ||
description: MatchedCount shows how many Agents currently match the | ||
classification | ||
type: integer | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.