Skip to content

Commit

Permalink
operator yaks (0.19.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophd authored Apr 24, 2024
1 parent cfd4b0f commit 0c73050
Show file tree
Hide file tree
Showing 5 changed files with 758 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.1
creationTimestamp: null
labels:
app: yaks
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: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.1
creationTimestamp: null
labels:
app: yaks
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: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading

0 comments on commit 0c73050

Please sign in to comment.