-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c84d04
commit 65e5693
Showing
4 changed files
with
698 additions
and
0 deletions.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
operators/yaks/0.15.1/manifests/instances.yaks.citrusframework.org.crd.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,78 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
labels: | ||
app: yaks | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.6.1 | ||
creationTimestamp: null | ||
name: instances.yaks.citrusframework.org | ||
spec: | ||
group: yaks.citrusframework.org | ||
names: | ||
categories: | ||
- yaks | ||
- testing | ||
kind: Instance | ||
listKind: InstanceList | ||
plural: instances | ||
singular: instance | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: True if YAKS instance is global | ||
jsonPath: .spec.operator.global | ||
name: Global | ||
type: boolean | ||
- description: The YAKS operator pod name | ||
jsonPath: .spec.operator.pod | ||
name: Pod | ||
type: string | ||
- description: The YAKS version | ||
jsonPath: .status.version | ||
name: Version | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Instance is the Schema for the yaks instance. | ||
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: InstanceSpec provides the state of a yaks instance | ||
properties: | ||
operator: | ||
description: OperatorSpec--. | ||
properties: | ||
global: | ||
type: boolean | ||
namespace: | ||
type: string | ||
pod: | ||
type: string | ||
required: | ||
- global | ||
type: object | ||
type: object | ||
status: | ||
description: InstanceStatus defines the observed state of a yaks instance | ||
properties: | ||
version: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
192 changes: 192 additions & 0 deletions
192
operators/yaks/0.15.1/manifests/tests.yaks.citrusframework.org.crd.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,192 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
labels: | ||
app: yaks | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.6.1 | ||
creationTimestamp: null | ||
name: tests.yaks.citrusframework.org | ||
spec: | ||
group: yaks.citrusframework.org | ||
names: | ||
categories: | ||
- yaks | ||
- testing | ||
kind: Test | ||
listKind: TestList | ||
plural: tests | ||
singular: test | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: The test phase | ||
jsonPath: .status.phase | ||
name: Phase | ||
type: string | ||
- description: The total amount of tests | ||
jsonPath: .status.results.summary.total | ||
name: Total | ||
type: string | ||
- description: Passed tests | ||
jsonPath: .status.results.summary.passed | ||
name: Passed | ||
type: string | ||
- description: Failed tests | ||
jsonPath: .status.results.summary.failed | ||
name: Failed | ||
type: string | ||
- description: Skipped tests | ||
jsonPath: .status.results.summary.skipped | ||
name: Skipped | ||
type: string | ||
- description: Test error details | ||
jsonPath: .status.errors | ||
name: Errors | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Test is the Schema for the tests 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: TestSpec defines the desired state of Test | ||
properties: | ||
config: | ||
description: SettingsSpec --. | ||
properties: | ||
content: | ||
type: string | ||
name: | ||
type: string | ||
type: object | ||
env: | ||
items: | ||
type: string | ||
type: array | ||
kubedock: | ||
description: KubeDockSpec --. | ||
properties: | ||
image: | ||
type: string | ||
runAsUser: | ||
type: integer | ||
type: object | ||
resources: | ||
items: | ||
description: ResourceSpec --. | ||
properties: | ||
content: | ||
type: string | ||
name: | ||
type: string | ||
type: object | ||
type: array | ||
runtime: | ||
description: RuntimeSpec --. | ||
properties: | ||
logger: | ||
items: | ||
type: string | ||
type: array | ||
verbose: | ||
type: boolean | ||
type: object | ||
secret: | ||
type: string | ||
selenium: | ||
description: SeleniumSpec --. | ||
properties: | ||
env: | ||
items: | ||
type: string | ||
type: array | ||
image: | ||
type: string | ||
noVNC: | ||
type: boolean | ||
runAsUser: | ||
type: integer | ||
type: object | ||
source: | ||
description: SourceSpec --. | ||
properties: | ||
content: | ||
type: string | ||
language: | ||
type: string | ||
name: | ||
type: string | ||
type: object | ||
type: object | ||
status: | ||
description: TestStatus defines the observed state of Test | ||
properties: | ||
digest: | ||
type: string | ||
errors: | ||
type: string | ||
phase: | ||
description: TestPhase --. | ||
type: string | ||
results: | ||
properties: | ||
errors: | ||
items: | ||
type: string | ||
type: array | ||
suiteName: | ||
type: string | ||
summary: | ||
properties: | ||
errors: | ||
type: integer | ||
failed: | ||
type: integer | ||
passed: | ||
type: integer | ||
pending: | ||
type: integer | ||
skipped: | ||
type: integer | ||
total: | ||
type: integer | ||
undefined: | ||
type: integer | ||
type: object | ||
tests: | ||
items: | ||
properties: | ||
classname: | ||
type: string | ||
errorMessage: | ||
type: string | ||
errorType: | ||
type: string | ||
name: | ||
type: string | ||
type: object | ||
type: array | ||
type: object | ||
testID: | ||
type: string | ||
version: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.