...
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: firebasehostingchannels.firebasehosting.cnrm.cloud.google.com
13spec:
14 group: firebasehosting.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: FirebaseHostingChannel
19 plural: firebasehostingchannels
20 shortNames:
21 - gcpfirebasehostingchannel
22 - gcpfirebasehostingchannels
23 singular: firebasehostingchannel
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 expireTime:
62 description: |-
63 The time at which the channel will be automatically deleted. If null, the channel
64 will not be automatically deleted. This field is present in the output whether it's
65 set directly or via the 'ttl' field.
66 type: string
67 resourceID:
68 description: Immutable. Optional. The channelId of the resource. Used
69 for creation and acquisition. When unset, the value of `metadata.name`
70 is used as the default.
71 type: string
72 retainedReleaseCount:
73 description: |-
74 The number of previous releases to retain on the channel for rollback or other
75 purposes. Must be a number between 1-100. Defaults to 10 for new channels.
76 type: integer
77 siteId:
78 description: Immutable. Required. The ID of the site in which to create
79 this channel.
80 type: string
81 ttl:
82 description: |-
83 Immutable. Input only. A time-to-live for this channel. Sets 'expire_time' to the provided
84 duration past the time of the request. A duration in seconds with up to nine fractional
85 digits, terminated by 's'. Example: "86400s" (one day).
86 type: string
87 required:
88 - siteId
89 type: object
90 status:
91 properties:
92 conditions:
93 description: Conditions represent the latest available observation
94 of the resource's current state.
95 items:
96 properties:
97 lastTransitionTime:
98 description: Last time the condition transitioned from one status
99 to another.
100 type: string
101 message:
102 description: Human-readable message indicating details about
103 last transition.
104 type: string
105 reason:
106 description: Unique, one-word, CamelCase reason for the condition's
107 last transition.
108 type: string
109 status:
110 description: Status is the status of the condition. Can be True,
111 False, Unknown.
112 type: string
113 type:
114 description: Type is the type of the condition.
115 type: string
116 type: object
117 type: array
118 name:
119 description: |-
120 The fully-qualified resource name for the channel, in the format:
121 sites/SITE_ID/channels/CHANNEL_ID.
122 type: string
123 observedGeneration:
124 description: ObservedGeneration is the generation of the resource
125 that was most recently observed by the Config Connector controller.
126 If this is equal to metadata.generation, then that means that the
127 current reported status reflects the most recent desired state of
128 the resource.
129 type: integer
130 type: object
131 required:
132 - spec
133 type: object
134 served: true
135 storage: true
136 subresources:
137 status: {}
138status:
139 acceptedNames:
140 kind: ""
141 plural: ""
142 conditions: []
143 storedVersions: []
View as plain text