...
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: kmskeyrings.kms.cnrm.cloud.google.com
13spec:
14 group: kms.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: KMSKeyRing
19 plural: kmskeyrings
20 shortNames:
21 - gcpkmskeyring
22 - gcpkmskeyrings
23 singular: kmskeyring
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 location:
62 description: |-
63 Immutable. The location for the KeyRing.
64 A full list of valid locations can be found by running 'gcloud kms locations list'.
65 type: string
66 resourceID:
67 description: Immutable. Optional. The name of the resource. Used for
68 creation and acquisition. When unset, the value of `metadata.name`
69 is used as the default.
70 type: string
71 required:
72 - location
73 type: object
74 status:
75 properties:
76 conditions:
77 description: Conditions represent the latest available observation
78 of the resource's current state.
79 items:
80 properties:
81 lastTransitionTime:
82 description: Last time the condition transitioned from one status
83 to another.
84 type: string
85 message:
86 description: Human-readable message indicating details about
87 last transition.
88 type: string
89 reason:
90 description: Unique, one-word, CamelCase reason for the condition's
91 last transition.
92 type: string
93 status:
94 description: Status is the status of the condition. Can be True,
95 False, Unknown.
96 type: string
97 type:
98 description: Type is the type of the condition.
99 type: string
100 type: object
101 type: array
102 observedGeneration:
103 description: ObservedGeneration is the generation of the resource
104 that was most recently observed by the Config Connector controller.
105 If this is equal to metadata.generation, then that means that the
106 current reported status reflects the most recent desired state of
107 the resource.
108 type: integer
109 selfLink:
110 description: The self link of the created KeyRing in the format projects/{project}/locations/{location}/keyRings/{name}.
111 type: string
112 type: object
113 required:
114 - spec
115 type: object
116 served: true
117 storage: true
118 subresources:
119 status: {}
120status:
121 acceptedNames:
122 kind: ""
123 plural: ""
124 conditions: []
125 storedVersions: []
View as plain text