...
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: stable
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: computesharedvpchostprojects.compute.cnrm.cloud.google.com
13spec:
14 group: compute.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ComputeSharedVPCHostProject
19 plural: computesharedvpchostprojects
20 shortNames:
21 - gcpcomputesharedvpchostproject
22 - gcpcomputesharedvpchostprojects
23 singular: computesharedvpchostproject
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: v1beta1
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 status:
60 properties:
61 conditions:
62 description: Conditions represent the latest available observation
63 of the resource's current state.
64 items:
65 properties:
66 lastTransitionTime:
67 description: Last time the condition transitioned from one status
68 to another.
69 type: string
70 message:
71 description: Human-readable message indicating details about
72 last transition.
73 type: string
74 reason:
75 description: Unique, one-word, CamelCase reason for the condition's
76 last transition.
77 type: string
78 status:
79 description: Status is the status of the condition. Can be True,
80 False, Unknown.
81 type: string
82 type:
83 description: Type is the type of the condition.
84 type: string
85 type: object
86 type: array
87 observedGeneration:
88 description: ObservedGeneration is the generation of the resource
89 that was most recently observed by the Config Connector controller.
90 If this is equal to metadata.generation, then that means that the
91 current reported status reflects the most recent desired state of
92 the resource.
93 type: integer
94 type: object
95 type: object
96 served: true
97 storage: true
98 subresources:
99 status: {}
100status:
101 acceptedNames:
102 kind: ""
103 plural: ""
104 conditions: []
105 storedVersions: []
View as plain text