...
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: computemanagedsslcertificates.compute.cnrm.cloud.google.com
13spec:
14 group: compute.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ComputeManagedSSLCertificate
19 plural: computemanagedsslcertificates
20 shortNames:
21 - gcpcomputemanagedsslcertificate
22 - gcpcomputemanagedsslcertificates
23 singular: computemanagedsslcertificate
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 certificateId:
62 description: The unique identifier for the resource.
63 type: integer
64 description:
65 description: Immutable. An optional description of this resource.
66 type: string
67 managed:
68 description: |-
69 Immutable. Properties relevant to a managed certificate. These will be used if the
70 certificate is managed (as indicated by a value of 'MANAGED' in 'type').
71 properties:
72 domains:
73 description: |-
74 Immutable. Domains for which a managed SSL certificate will be valid. Currently,
75 there can be up to 100 domains in this list.
76 items:
77 type: string
78 type: array
79 required:
80 - domains
81 type: object
82 projectRef:
83 description: The project that this resource belongs to.
84 oneOf:
85 - not:
86 required:
87 - external
88 required:
89 - name
90 - not:
91 anyOf:
92 - required:
93 - name
94 - required:
95 - namespace
96 required:
97 - external
98 properties:
99 external:
100 description: 'Allowed value: The `name` field of a `Project` resource.'
101 type: string
102 name:
103 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
104 type: string
105 namespace:
106 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
107 type: string
108 type: object
109 resourceID:
110 description: Immutable. Optional. The name of the resource. Used for
111 creation and acquisition. When unset, the value of `metadata.name`
112 is used as the default.
113 type: string
114 type:
115 description: |-
116 Immutable. Enum field whose value is always 'MANAGED' - used to signal to the API
117 which type this is. Default value: "MANAGED" Possible values: ["MANAGED"].
118 type: string
119 required:
120 - projectRef
121 type: object
122 status:
123 properties:
124 conditions:
125 description: Conditions represent the latest available observation
126 of the resource's current state.
127 items:
128 properties:
129 lastTransitionTime:
130 description: Last time the condition transitioned from one status
131 to another.
132 type: string
133 message:
134 description: Human-readable message indicating details about
135 last transition.
136 type: string
137 reason:
138 description: Unique, one-word, CamelCase reason for the condition's
139 last transition.
140 type: string
141 status:
142 description: Status is the status of the condition. Can be True,
143 False, Unknown.
144 type: string
145 type:
146 description: Type is the type of the condition.
147 type: string
148 type: object
149 type: array
150 creationTimestamp:
151 description: Creation timestamp in RFC3339 text format.
152 type: string
153 expireTime:
154 description: Expire time of the certificate in RFC3339 text format.
155 type: string
156 observedGeneration:
157 description: ObservedGeneration is the generation of the resource
158 that was most recently observed by the Config Connector controller.
159 If this is equal to metadata.generation, then that means that the
160 current reported status reflects the most recent desired state of
161 the resource.
162 type: integer
163 selfLink:
164 type: string
165 subjectAlternativeNames:
166 description: Domains associated with the certificate via Subject Alternative
167 Name.
168 items:
169 type: string
170 type: array
171 type: object
172 required:
173 - spec
174 type: object
175 served: true
176 storage: true
177 subresources:
178 status: {}
179status:
180 acceptedNames:
181 kind: ""
182 plural: ""
183 conditions: []
184 storedVersions: []
View as plain text