...
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: stable
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: computesslpolicies.compute.cnrm.cloud.google.com
13spec:
14 group: compute.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ComputeSSLPolicy
19 plural: computesslpolicies
20 shortNames:
21 - gcpcomputesslpolicy
22 - gcpcomputesslpolicies
23 singular: computesslpolicy
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: v1beta1
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 customFeatures:
62 description: |-
63 Profile specifies the set of SSL features that can be used by the
64 load balancer when negotiating SSL with clients. This can be one of
65 'COMPATIBLE', 'MODERN', 'RESTRICTED', or 'CUSTOM'. If using 'CUSTOM',
66 the set of SSL features to enable must be specified in the
67 'customFeatures' field.
68
69 See the [official documentation](https://cloud.google.com/compute/docs/load-balancing/ssl-policies#profilefeaturesupport)
70 for which ciphers are available to use. **Note**: this argument
71 *must* be present when using the 'CUSTOM' profile. This argument
72 *must not* be present when using any other profile.
73 items:
74 type: string
75 type: array
76 description:
77 description: Immutable. An optional description of this resource.
78 type: string
79 minTlsVersion:
80 description: |-
81 The minimum version of SSL protocol that can be used by the clients
82 to establish a connection with the load balancer. Default value: "TLS_1_0" Possible values: ["TLS_1_0", "TLS_1_1", "TLS_1_2"].
83 type: string
84 profile:
85 description: |-
86 Profile specifies the set of SSL features that can be used by the
87 load balancer when negotiating SSL with clients. If using 'CUSTOM',
88 the set of SSL features to enable must be specified in the
89 'customFeatures' field.
90
91 See the [official documentation](https://cloud.google.com/compute/docs/load-balancing/ssl-policies#profilefeaturesupport)
92 for information on what cipher suites each profile provides. If
93 'CUSTOM' is used, the 'custom_features' attribute **must be set**. Default value: "COMPATIBLE" Possible values: ["COMPATIBLE", "MODERN", "RESTRICTED", "CUSTOM"].
94 type: string
95 resourceID:
96 description: Immutable. Optional. The name of the resource. Used for
97 creation and acquisition. When unset, the value of `metadata.name`
98 is used as the default.
99 type: string
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 creationTimestamp:
130 description: Creation timestamp in RFC3339 text format.
131 type: string
132 enabledFeatures:
133 description: The list of features enabled in the SSL policy.
134 items:
135 type: string
136 type: array
137 fingerprint:
138 description: |-
139 Fingerprint of this resource. A hash of the contents stored in this
140 object. This field is used in optimistic locking.
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 selfLink:
150 type: string
151 type: object
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