blob: 45154a576ae5de2a6be99a60cb22062590c1883a [file] [log] [blame]
Giorgi Lekveishvilie7746c62023-07-20 10:07:06 +04001apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 annotations:
5 controller-gen.kubebuilder.io/version: v0.9.2
6 creationTimestamp: null
7 name: servicetransports.transport.dodo.cloud
8spec:
9 group: transport.dodo.cloud
10 names:
11 kind: ServiceTransport
12 listKind: ServiceTransportList
13 plural: servicetransports
14 singular: servicetransport
15 scope: Namespaced
16 versions:
17 - name: v1
18 schema:
19 openAPIV3Schema:
20 description: ServiceTransport is the Schema for the servicetransports API
21 properties:
22 apiVersion:
23 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'
24 type: string
25 kind:
26 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'
27 type: string
28 metadata:
29 type: object
30 spec:
31 description: ServiceTransportSpec defines the desired state of ServiceTransport
32 properties:
33 ingressClassName:
34 type: string
35 port:
36 description: Foo is an example field of ServiceTransport. Edit servicetransport_types.go to remove/update
37 type: integer
38 protocol:
39 type: string
40 service:
41 type: string
42 sourcePort:
43 type: integer
44 type: object
45 status:
46 description: ServiceTransportStatus defines the observed state of ServiceTransport
47 properties:
48 port:
49 type: integer
50 type: object
51 type: object
52 served: true
53 storage: true
54 subresources:
55 status: {}