...
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: firebasehostingsites.firebasehosting.cnrm.cloud.google.com
13spec:
14 group: firebasehosting.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: FirebaseHostingSite
19 plural: firebasehostingsites
20 shortNames:
21 - gcpfirebasehostingsite
22 - gcpfirebasehostingsites
23 singular: firebasehostingsite
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 appId:
62 description: |-
63 Optional. The [ID of a Web App](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects.webApps#WebApp.FIELDS.app_id)
64 associated with the Hosting site.
65 type: string
66 projectRef:
67 description: The project that this resource belongs to.
68 oneOf:
69 - not:
70 required:
71 - external
72 required:
73 - name
74 - not:
75 anyOf:
76 - required:
77 - name
78 - required:
79 - namespace
80 required:
81 - external
82 properties:
83 external:
84 description: 'Allowed value: The `name` field of a `Project` resource.'
85 type: string
86 name:
87 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
88 type: string
89 namespace:
90 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
91 type: string
92 type: object
93 resourceID:
94 description: Immutable. Optional. The siteId of the resource. Used
95 for creation and acquisition. When unset, the value of `metadata.name`
96 is used as the default.
97 type: string
98 required:
99 - projectRef
100 type: object
101 status:
102 properties:
103 conditions:
104 description: Conditions represent the latest available observation
105 of the resource's current state.
106 items:
107 properties:
108 lastTransitionTime:
109 description: Last time the condition transitioned from one status
110 to another.
111 type: string
112 message:
113 description: Human-readable message indicating details about
114 last transition.
115 type: string
116 reason:
117 description: Unique, one-word, CamelCase reason for the condition's
118 last transition.
119 type: string
120 status:
121 description: Status is the status of the condition. Can be True,
122 False, Unknown.
123 type: string
124 type:
125 description: Type is the type of the condition.
126 type: string
127 type: object
128 type: array
129 defaultUrl:
130 description: The default URL for the site in the form of https://{name}.web.app.
131 type: string
132 name:
133 description: |-
134 Output only. The fully-qualified resource name of the Hosting site, in the
135 format: projects/PROJECT_IDENTIFIER/sites/SITE_ID PROJECT_IDENTIFIER: the
136 Firebase project's
137 ['ProjectNumber'](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its
138 ['ProjectId'](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects#FirebaseProject.FIELDS.project_id).
139 Learn more about using project identifiers in Google's
140 [AIP 2510 standard](https://google.aip.dev/cloud/2510).
141 type: string
142 observedGeneration:
143 description: ObservedGeneration is the generation of the resource
144 that was most recently observed by the Config Connector controller.
145 If this is equal to metadata.generation, then that means that the
146 current reported status reflects the most recent desired state of
147 the resource.
148 type: integer
149 type: object
150 required:
151 - spec
152 type: object
153 served: true
154 storage: true
155 subresources:
156 status: {}
157status:
158 acceptedNames:
159 kind: ""
160 plural: ""
161 conditions: []
162 storedVersions: []
View as plain text