...
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: appengineservicesplittraffics.appengine.cnrm.cloud.google.com
13spec:
14 group: appengine.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: AppEngineServiceSplitTraffic
19 plural: appengineservicesplittraffics
20 shortNames:
21 - gcpappengineservicesplittraffic
22 - gcpappengineservicesplittraffics
23 singular: appengineservicesplittraffic
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 migrateTraffic:
62 description: If set to true traffic will be migrated to this version.
63 type: boolean
64 project:
65 description: Immutable.
66 type: string
67 resourceID:
68 description: Immutable. Optional. The service 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 split:
73 description: Mapping that defines fractional HTTP traffic diversion
74 to different versions within the service.
75 properties:
76 allocations:
77 additionalProperties:
78 type: string
79 description: Mapping from version IDs within the service to fractional
80 (0.000, 1] allocations of traffic for that version. Each version
81 can be specified only once, but some versions in the service
82 may not have any traffic allocation. Services that have traffic
83 allocated cannot be deleted until either the service is deleted
84 or their traffic allocation is removed. Allocations must sum
85 to 1. Up to two decimal place precision is supported for IP-based
86 splits and up to three decimal places is supported for cookie-based
87 splits.
88 type: object
89 shardBy:
90 description: 'Mechanism used to determine which version a request
91 is sent to. The traffic selection algorithm will be stable for
92 either type until allocations are changed. Possible values:
93 ["UNSPECIFIED", "COOKIE", "IP", "RANDOM"].'
94 type: string
95 required:
96 - allocations
97 type: object
98 required:
99 - split
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 observedGeneration:
130 description: ObservedGeneration is the generation of the resource
131 that was most recently observed by the Config Connector controller.
132 If this is equal to metadata.generation, then that means that the
133 current reported status reflects the most recent desired state of
134 the resource.
135 type: integer
136 type: object
137 required:
138 - spec
139 type: object
140 served: true
141 storage: true
142 subresources:
143 status: {}
144status:
145 acceptedNames:
146 kind: ""
147 plural: ""
148 conditions: []
149 storedVersions: []
View as plain text