...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 annotations:
5 cnrm.cloud.google.com/version: 0.0.0-dev
6 creationTimestamp: null
7 labels:
8 cnrm.cloud.google.com/managed-by-kcc: "true"
9 cnrm.cloud.google.com/stability-level: alpha
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: mlenginemodels.mlengine.cnrm.cloud.google.com
13spec:
14 group: mlengine.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: MLEngineModel
19 plural: mlenginemodels
20 shortNames:
21 - gcpmlenginemodel
22 - gcpmlenginemodels
23 singular: mlenginemodel
24 preserveUnknownFields: false
25 scope: Namespaced
26 versions:
27 - additionalPrinterColumns:
28 - jsonPath: .metadata.creationTimestamp
29 name: Age
30 type: date
31 - description: When 'True', the most recent reconcile of the resource succeeded
32 jsonPath: .status.conditions[?(@.type=='Ready')].status
33 name: Ready
34 type: string
35 - description: The reason for the value in 'Ready'
36 jsonPath: .status.conditions[?(@.type=='Ready')].reason
37 name: Status
38 type: string
39 - description: The last transition time for the value in 'Status'
40 jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
41 name: Status Age
42 type: date
43 name: v1alpha1
44 schema:
45 openAPIV3Schema:
46 properties:
47 apiVersion:
48 description: 'apiVersion defines the versioned schema of this representation
49 of an object. Servers should convert recognized schemas to the latest
50 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
51 type: string
52 kind:
53 description: 'kind is a string value representing the REST resource this
54 object represents. Servers may infer this from the endpoint the client
55 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
56 type: string
57 metadata:
58 type: object
59 spec:
60 properties:
61 defaultVersion:
62 description: |-
63 Immutable. The default version of the model. This version will be used to handle
64 prediction requests that do not specify a version.
65 properties:
66 name:
67 description: Immutable. The name specified for the version when
68 it was created.
69 type: string
70 required:
71 - name
72 type: object
73 description:
74 description: Immutable. The description specified for the model when
75 it was created.
76 type: string
77 onlinePredictionConsoleLogging:
78 description: Immutable. If true, online prediction nodes send stderr
79 and stdout streams to Stackdriver Logging.
80 type: boolean
81 onlinePredictionLogging:
82 description: Immutable. If true, online prediction access logs are
83 sent to StackDriver Logging.
84 type: boolean
85 projectRef:
86 description: The project that this resource belongs to.
87 oneOf:
88 - not:
89 required:
90 - external
91 required:
92 - name
93 - not:
94 anyOf:
95 - required:
96 - name
97 - required:
98 - namespace
99 required:
100 - external
101 properties:
102 external:
103 description: 'Allowed value: The `name` field of a `Project` resource.'
104 type: string
105 name:
106 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
107 type: string
108 namespace:
109 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
110 type: string
111 type: object
112 regions:
113 description: |-
114 Immutable. The list of regions where the model is going to be deployed.
115 Currently only one region per model is supported.
116 items:
117 type: string
118 type: array
119 resourceID:
120 description: Immutable. Optional. The name of the resource. Used for
121 creation and acquisition. When unset, the value of `metadata.name`
122 is used as the default.
123 type: string
124 required:
125 - projectRef
126 type: object
127 status:
128 properties:
129 conditions:
130 description: Conditions represent the latest available observation
131 of the resource's current state.
132 items:
133 properties:
134 lastTransitionTime:
135 description: Last time the condition transitioned from one status
136 to another.
137 type: string
138 message:
139 description: Human-readable message indicating details about
140 last transition.
141 type: string
142 reason:
143 description: Unique, one-word, CamelCase reason for the condition's
144 last transition.
145 type: string
146 status:
147 description: Status is the status of the condition. Can be True,
148 False, Unknown.
149 type: string
150 type:
151 description: Type is the type of the condition.
152 type: string
153 type: object
154 type: array
155 observedGeneration:
156 description: ObservedGeneration is the generation of the resource
157 that was most recently observed by the Config Connector controller.
158 If this is equal to metadata.generation, then that means that the
159 current reported status reflects the most recent desired state of
160 the resource.
161 type: integer
162 type: object
163 required:
164 - spec
165 type: object
166 served: true
167 storage: true
168 subresources:
169 status: {}
170status:
171 acceptedNames:
172 kind: ""
173 plural: ""
174 conditions: []
175 storedVersions: []
View as plain text