github.com/cilium/cilium@v1.16.2/pkg/k8s/apis/cilium.io/client/crds/v2alpha1/ciliumcidrgroups.yaml (about)

     1  ---
     2  apiVersion: apiextensions.k8s.io/v1
     3  kind: CustomResourceDefinition
     4  metadata:
     5    annotations:
     6      controller-gen.kubebuilder.io/version: v0.15.0
     7    creationTimestamp: null
     8    name: ciliumcidrgroups.cilium.io
     9  spec:
    10    group: cilium.io
    11    names:
    12      categories:
    13      - cilium
    14      kind: CiliumCIDRGroup
    15      listKind: CiliumCIDRGroupList
    16      plural: ciliumcidrgroups
    17      shortNames:
    18      - ccg
    19      singular: ciliumcidrgroup
    20    scope: Cluster
    21    versions:
    22    - name: v2alpha1
    23      schema:
    24        openAPIV3Schema:
    25          description: 'CiliumCIDRGroup is a list of external CIDRs (i.e: CIDRs selecting
    26            peers outside the clusters) that can be referenced as a single entity from
    27            CiliumNetworkPolicies.'
    28          properties:
    29            apiVersion:
    30              description: 'APIVersion defines the versioned schema of this representation
    31                of an object. Servers should convert recognized schemas to the latest
    32                internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
    33              type: string
    34            kind:
    35              description: 'Kind is a string value representing the REST resource this
    36                object represents. Servers may infer this from the endpoint the client
    37                submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
    38              type: string
    39            metadata:
    40              type: object
    41            spec:
    42              properties:
    43                externalCIDRs:
    44                  description: ExternalCIDRs is a list of CIDRs selecting peers outside
    45                    the clusters.
    46                  items:
    47                    description: 'CIDR specifies a block of IP addresses. Example: 192.0.2.1/32'
    48                    format: cidr
    49                    type: string
    50                  minItems: 0
    51                  type: array
    52              required:
    53              - externalCIDRs
    54              type: object
    55          required:
    56          - spec
    57          type: object
    58      served: true
    59      storage: true
    60  status:
    61    acceptedNames:
    62      kind: ""
    63      plural: ""
    64    conditions: []
    65    storedVersions: []