Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apply status field to CI installed CRD #14

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 60 additions & 50 deletions hack/ippools.crd.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
Expand All @@ -14,54 +15,63 @@ spec:
singular: ippool
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .spec.address-cidr
name: CIDR
type: string
- jsonPath: .spec.prefix
name: Prefix
type: integer
- jsonPath: .spec.gateway
name: Gateway
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1
schema:
openAPIV3Schema:
description: IPPool represents the IPPool definition for static IPs used by the IPAM controller
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: IPPoolSpec is the spec for an IPPool
properties:
address-cidr:
description: AddressCidr is a cidr for the IP IPv4range to manage.
- additionalPrinterColumns:
- jsonPath: .spec.address-cidr
name: CIDR
type: string
- jsonPath: .spec.prefix
name: Prefix
type: integer
- jsonPath: .spec.gateway
name: Gateway
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1
schema:
openAPIV3Schema:
description: IPPool represents the IPPool definition for static IPs used by
the IPAM controller
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: IPPoolSpec is the spec for an IPPool
properties:
address-cidr:
description: AddressCidr is a cidr for the IP IPv4range to manage.
type: string
gateway:
type: string
nameserver:
items:
type: string
gateway:
type: string
nameserver:
items:
type: string
type: array
prefix:
description: Prefix is the subnet prefix
type: integer
required:
- address-cidr
- prefix
type: object
required:
- spec
type: object
served: true
storage: true
subresources: {}
type: array
prefix:
description: Prefix is the subnet prefix
type: integer
required:
- address-cidr
- prefix
type: object
status:
description: status represents the current information/status for the
IP pool. Populated by the system. Read-only.
type: object
required:
- spec
type: object
served: true
storage: true
subresources: {}