Skip to content

Commit

Permalink
Updated CRDs (#1)
Browse files Browse the repository at this point in the history
* Updated CRDs
* .gitignore added
  • Loading branch information
bop0hz authored Dec 2, 2020
1 parent c7c7d0d commit 8b5de55
Show file tree
Hide file tree
Showing 10 changed files with 105 additions and 474 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
secrets.yaml
2 changes: 1 addition & 1 deletion th2-service/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.10
version: 1.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion th2-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ th2
===
th2 service Helm chart

Current chart version is `0.1.10`
Current chart version is `1.0.0`



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
name: th2generics.th2.exactpro.com
name: th2boxes.th2.exactpro.com
spec:
additionalPrinterColumns:
- JSONPath: .status.subResourceName
Expand All @@ -22,24 +22,24 @@ spec:
type: date
group: th2.exactpro.com
names:
kind: Th2Generic
listKind: Th2GenericList
plural: th2generics
singular: th2generic
kind: Th2Box
listKind: Th2BoxList
plural: th2boxes
singular: th2box
scope: Namespaced
preserveUnknownFields: false
validation:
openAPIV3Schema:
type: object
required:
- spec
description: Th2Generic defines generic Th2 component instance
description: Th2Box defines generic Th2 component instance
properties:
apiVersion:
description: ''
description: ""
type: string
kind:
description: ''
description: ""
type: string
metadata:
type: object
Expand All @@ -53,25 +53,38 @@ spec:
type: string
type:
type: string
enum: [th2-act, th2-codec, th2-conn, th2-rpt-data-provider,
th2-rpt-viewer, th2-check1, th2-check2-bookcheсk,
th2-check2-recon, th2-script, th2-sim, th2-hand,
th2-read, th2-util, th2-cradle-viewer]
enum:
[
th2-act,
th2-codec,
th2-conn,
th2-rpt-data-provider,
th2-rpt-viewer,
th2-check1,
th2-check2-bookcheck,
th2-check2-recon,
th2-script,
th2-sim,
th2-hand,
th2-read,
th2-util,
th2-cradle-viewer,
]
extended-settings:
type: object
description: ''
description: ""
properties:
chart-cfg:
type: object
description: ''
description: ""
properties:
ref:
type: string
path:
type: string
service:
type: object
description: ''
description: ""
properties:
enabled:
type: string
Expand All @@ -86,30 +99,30 @@ spec:
type: string
resources:
type: object
description: ''
description: ""
properties:
limits:
type: object
description: ''
description: ""
properties:
memory:
type: string
cpu:
type: string
requests:
type: object
description: ''
description: ""
properties:
memory:
type: string
cpu:
type: string
mounting:
type: array
description: ''
description: ""
items:
type: object
description: ''
description: ""
properties:
pvcName:
type: string
Expand All @@ -124,7 +137,7 @@ spec:
description: List of generic parameters
items:
type: object
description: ''
description: ""
properties:
name:
type: string
Expand All @@ -138,7 +151,7 @@ spec:
description: List of connection pins
items:
type: object
description: ''
description: ""
properties:
name:
type: string
Expand All @@ -147,7 +160,7 @@ spec:
enum: [mq, grpc]
settings:
type: object
description: ''
description: ""
properties:
storageOnDemand:
type: string
Expand All @@ -159,17 +172,17 @@ spec:
type: string
filters:
type: array
description: ''
description: ""
items:
type: object
description: ''
description: ""
properties:
metadata:
type: array
description: ''
description: ""
items:
type: object
description: ''
description: ""
properties:
field-name:
type: string
Expand All @@ -184,10 +197,10 @@ spec:
- operation
message:
type: array
description: ''
description: ""
items:
type: object
description: ''
description: ""
properties:
field-name:
type: string
Expand Down Expand Up @@ -221,22 +234,26 @@ spec:
- type
properties:
lastTransitionTime:
description: LastTransitionTime is the timestamp corresponding
description:
LastTransitionTime is the timestamp corresponding
to the last status change of this condition.
type: string
format: date-time
lastUpdateTime:
description: LastUpdateTime is the timestamp corresponding to
description:
LastUpdateTime is the timestamp corresponding to
the last status update of this condition.
type: string
format: date-time
message:
nullable: true
description: Message is a human readable description of the details
description:
Message is a human readable description of the details
of the last transition, complementing reason.
type: string
reason:
description: Reason is a brief machine readable explanation for
description:
Reason is a brief machine readable explanation for
the condition's last transition.
type: string
status:
Expand Down
Loading

0 comments on commit 8b5de55

Please sign in to comment.