|
| 1 | +--- |
| 2 | +apiVersion: apiextensions.k8s.io/v1 |
| 3 | +kind: CustomResourceDefinition |
| 4 | +metadata: |
| 5 | + annotations: |
| 6 | + controller-gen.kubebuilder.io/version: v0.8.0 |
| 7 | + creationTimestamp: null |
| 8 | + name: ipaddressclaims.cluster.x-k8s.io |
| 9 | +spec: |
| 10 | + group: cluster.x-k8s.io |
| 11 | + names: |
| 12 | + categories: |
| 13 | + - cluster-api |
| 14 | + kind: IPAddressClaim |
| 15 | + listKind: IPAddressClaimList |
| 16 | + plural: ipaddressclaims |
| 17 | + singular: ipaddressclaim |
| 18 | + scope: Namespaced |
| 19 | + versions: |
| 20 | + - additionalPrinterColumns: |
| 21 | + - description: Pool the address is from |
| 22 | + jsonPath: .spec.pool.name |
| 23 | + name: Pool Name |
| 24 | + type: string |
| 25 | + - description: Pool the address is from |
| 26 | + jsonPath: .spec.pool.kind |
| 27 | + name: Pool Kind |
| 28 | + type: string |
| 29 | + name: v1beta1 |
| 30 | + schema: |
| 31 | + openAPIV3Schema: |
| 32 | + description: IPAddressClaim is the Schema for the ipaddressclaim API. |
| 33 | + properties: |
| 34 | + apiVersion: |
| 35 | + description: 'APIVersion defines the versioned schema of this representation |
| 36 | + of an object. Servers should convert recognized schemas to the latest |
| 37 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 38 | + type: string |
| 39 | + kind: |
| 40 | + description: 'Kind is a string value representing the REST resource this |
| 41 | + object represents. Servers may infer this from the endpoint the client |
| 42 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 43 | + type: string |
| 44 | + metadata: |
| 45 | + type: object |
| 46 | + spec: |
| 47 | + description: IPAddressClaimSpec describes |
| 48 | + properties: |
| 49 | + pool: |
| 50 | + description: Pool is a reference to the pool from which an IP address |
| 51 | + should be created. |
| 52 | + properties: |
| 53 | + group: |
| 54 | + description: API group of the referent. |
| 55 | + type: string |
| 56 | + kind: |
| 57 | + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 58 | + type: string |
| 59 | + name: |
| 60 | + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' |
| 61 | + type: string |
| 62 | + type: object |
| 63 | + type: object |
| 64 | + status: |
| 65 | + properties: |
| 66 | + address: |
| 67 | + description: Address is a reference to the address that was created |
| 68 | + for this claim. |
| 69 | + properties: |
| 70 | + group: |
| 71 | + description: API group of the referent. |
| 72 | + type: string |
| 73 | + kind: |
| 74 | + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 75 | + type: string |
| 76 | + name: |
| 77 | + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' |
| 78 | + type: string |
| 79 | + uid: |
| 80 | + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' |
| 81 | + type: string |
| 82 | + type: object |
| 83 | + conditions: |
| 84 | + description: Conditions summarises the current state of the IPAddressClaim |
| 85 | + items: |
| 86 | + description: Condition defines an observation of a Cluster API resource |
| 87 | + operational state. |
| 88 | + properties: |
| 89 | + lastTransitionTime: |
| 90 | + description: Last time the condition transitioned from one status |
| 91 | + to another. This should be when the underlying condition changed. |
| 92 | + If that is not known, then using the time when the API field |
| 93 | + changed is acceptable. |
| 94 | + format: date-time |
| 95 | + type: string |
| 96 | + message: |
| 97 | + description: A human readable message indicating details about |
| 98 | + the transition. This field may be empty. |
| 99 | + type: string |
| 100 | + reason: |
| 101 | + description: The reason for the condition's last transition |
| 102 | + in CamelCase. The specific API may choose whether or not this |
| 103 | + field is considered a guaranteed API. This field may not be |
| 104 | + empty. |
| 105 | + type: string |
| 106 | + severity: |
| 107 | + description: Severity provides an explicit classification of |
| 108 | + Reason code, so the users or machines can immediately understand |
| 109 | + the current situation and act accordingly. The Severity field |
| 110 | + MUST be set only when Status=False. |
| 111 | + type: string |
| 112 | + status: |
| 113 | + description: Status of the condition, one of True, False, Unknown. |
| 114 | + type: string |
| 115 | + type: |
| 116 | + description: Type of condition in CamelCase or in foo.example.com/CamelCase. |
| 117 | + Many .condition.type values are consistent across resources |
| 118 | + like Available, but because arbitrary conditions can be useful |
| 119 | + (see .node.status.conditions), the ability to deconflict is |
| 120 | + important. |
| 121 | + type: string |
| 122 | + required: |
| 123 | + - lastTransitionTime |
| 124 | + - status |
| 125 | + - type |
| 126 | + type: object |
| 127 | + type: array |
| 128 | + type: object |
| 129 | + type: object |
| 130 | + served: true |
| 131 | + storage: true |
| 132 | + subresources: |
| 133 | + status: {} |
| 134 | +status: |
| 135 | + acceptedNames: |
| 136 | + kind: "" |
| 137 | + plural: "" |
| 138 | + conditions: [] |
| 139 | + storedVersions: [] |
0 commit comments