...
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: appenginedomainmappings.appengine.cnrm.cloud.google.com
13spec:
14 group: appengine.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: AppEngineDomainMapping
19 plural: appenginedomainmappings
20 shortNames:
21 - gcpappenginedomainmapping
22 - gcpappenginedomainmappings
23 singular: appenginedomainmapping
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 overrideStrategy:
62 description: |-
63 Whether the domain creation should override any existing mappings for this domain.
64 By default, overrides are rejected. Default value: "STRICT" Possible values: ["STRICT", "OVERRIDE"].
65 type: string
66 project:
67 description: Immutable.
68 type: string
69 resourceID:
70 description: Immutable. Optional. The domainName of the resource.
71 Used for creation and acquisition. When unset, the value of `metadata.name`
72 is used as the default.
73 type: string
74 sslSettings:
75 description: SSL configuration for this domain. If unconfigured, this
76 domain will not serve with SSL.
77 properties:
78 certificateId:
79 description: |-
80 ID of the AuthorizedCertificate resource configuring SSL for the application. Clearing this field will
81 remove SSL support.
82 By default, a managed certificate is automatically created for every domain mapping. To omit SSL support
83 or to configure SSL manually, specify 'SslManagementType.MANUAL' on a 'CREATE' or 'UPDATE' request. You must be
84 authorized to administer the 'AuthorizedCertificate' resource to manually map it to a DomainMapping resource.
85 Example: 12345.
86 type: string
87 pendingManagedCertificateId:
88 description: |-
89 ID of the managed 'AuthorizedCertificate' resource currently being provisioned, if applicable. Until the new
90 managed certificate has been successfully provisioned, the previous SSL state will be preserved. Once the
91 provisioning process completes, the 'certificateId' field will reflect the new managed certificate and this
92 field will be left empty. To remove SSL support while there is still a pending managed certificate, clear the
93 'certificateId' field with an update request.
94 type: string
95 sslManagementType:
96 description: |-
97 SSL management type for this domain. If 'AUTOMATIC', a managed certificate is automatically provisioned.
98 If 'MANUAL', 'certificateId' must be manually specified in order to configure SSL for this domain. Possible values: ["AUTOMATIC", "MANUAL"].
99 type: string
100 required:
101 - sslManagementType
102 type: object
103 type: object
104 status:
105 properties:
106 conditions:
107 description: Conditions represent the latest available observation
108 of the resource's current state.
109 items:
110 properties:
111 lastTransitionTime:
112 description: Last time the condition transitioned from one status
113 to another.
114 type: string
115 message:
116 description: Human-readable message indicating details about
117 last transition.
118 type: string
119 reason:
120 description: Unique, one-word, CamelCase reason for the condition's
121 last transition.
122 type: string
123 status:
124 description: Status is the status of the condition. Can be True,
125 False, Unknown.
126 type: string
127 type:
128 description: Type is the type of the condition.
129 type: string
130 type: object
131 type: array
132 name:
133 description: 'Full path to the DomainMapping resource in the API.
134 Example: apps/myapp/domainMapping/example.com.'
135 type: string
136 observedGeneration:
137 description: ObservedGeneration is the generation of the resource
138 that was most recently observed by the Config Connector controller.
139 If this is equal to metadata.generation, then that means that the
140 current reported status reflects the most recent desired state of
141 the resource.
142 type: integer
143 resourceRecords:
144 description: |-
145 The resource records required to configure this domain mapping. These records must be added to the domain's DNS
146 configuration in order to serve the application via this domain mapping.
147 items:
148 properties:
149 name:
150 description: 'Relative name of the object affected by this record.
151 Only applicable for CNAME records. Example: ''www''.'
152 type: string
153 rrdata:
154 description: Data for this record. Values vary by record type,
155 as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).
156 type: string
157 type:
158 description: 'Resource record type. Example: ''AAAA''. Possible
159 values: ["A", "AAAA", "CNAME"].'
160 type: string
161 type: object
162 type: array
163 type: object
164 type: object
165 served: true
166 storage: true
167 subresources:
168 status: {}
169status:
170 acceptedNames:
171 kind: ""
172 plural: ""
173 conditions: []
174 storedVersions: []
View as plain text