-
Notifications
You must be signed in to change notification settings - Fork 28
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
6b1f2ec
commit 676c9b4
Showing
6 changed files
with
746 additions
and
4 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
95 changes: 95 additions & 0 deletions
95
deploy/olm-catalog/yaks/0.14.3/yaks.citrusframework.org_instances.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,95 @@ | ||
# --------------------------------------------------------------------------- | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# --------------------------------------------------------------------------- | ||
|
||
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: {} |
209 changes: 209 additions & 0 deletions
209
deploy/olm-catalog/yaks/0.14.3/yaks.citrusframework.org_tests.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,209 @@ | ||
# --------------------------------------------------------------------------- | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# --------------------------------------------------------------------------- | ||
|
||
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.