...

Text file src/github.com/GoogleCloudPlatform/k8s-config-connector/config/crds/resources/apiextensions.k8s.io_v1_customresourcedefinition_computeinstancegroupnamedports.compute.cnrm.cloud.google.com.yaml

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/config/crds/resources

     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: alpha
    10    cnrm.cloud.google.com/system: "true"
    11    cnrm.cloud.google.com/tf2crd: "true"
    12  name: computeinstancegroupnamedports.compute.cnrm.cloud.google.com
    13spec:
    14  group: compute.cnrm.cloud.google.com
    15  names:
    16    categories:
    17    - gcp
    18    kind: ComputeInstanceGroupNamedPort
    19    plural: computeinstancegroupnamedports
    20    shortNames:
    21    - gcpcomputeinstancegroupnamedport
    22    - gcpcomputeinstancegroupnamedports
    23    singular: computeinstancegroupnamedport
    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: v1alpha1
    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              groupRef:
    62                oneOf:
    63                - not:
    64                    required:
    65                    - external
    66                  required:
    67                  - name
    68                - not:
    69                    anyOf:
    70                    - required:
    71                      - name
    72                    - required:
    73                      - namespace
    74                  required:
    75                  - external
    76                properties:
    77                  external:
    78                    description: 'Allowed value: The `name` field of a `ComputeInstanceGroup`
    79                      resource.'
    80                    type: string
    81                  name:
    82                    description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
    83                    type: string
    84                  namespace:
    85                    description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
    86                    type: string
    87                type: object
    88              port:
    89                description: Immutable. The port number, which can be a value between
    90                  1 and 65535.
    91                type: integer
    92              projectRef:
    93                description: The project that this resource belongs to.
    94                oneOf:
    95                - not:
    96                    required:
    97                    - external
    98                  required:
    99                  - name
   100                - not:
   101                    anyOf:
   102                    - required:
   103                      - name
   104                    - required:
   105                      - namespace
   106                  required:
   107                  - external
   108                properties:
   109                  external:
   110                    description: 'Allowed value: The `name` field of a `Project` resource.'
   111                    type: string
   112                  name:
   113                    description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
   114                    type: string
   115                  namespace:
   116                    description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
   117                    type: string
   118                type: object
   119              resourceID:
   120                description: Immutable. Optional. The name of the resource. Used for
   121                  creation and acquisition. When unset, the value of `metadata.name`
   122                  is used as the default.
   123                type: string
   124              zone:
   125                description: Immutable. The zone of the instance group.
   126                type: string
   127            required:
   128            - groupRef
   129            - port
   130            - projectRef
   131            - zone
   132            type: object
   133          status:
   134            properties:
   135              conditions:
   136                description: Conditions represent the latest available observation
   137                  of the resource's current state.
   138                items:
   139                  properties:
   140                    lastTransitionTime:
   141                      description: Last time the condition transitioned from one status
   142                        to another.
   143                      type: string
   144                    message:
   145                      description: Human-readable message indicating details about
   146                        last transition.
   147                      type: string
   148                    reason:
   149                      description: Unique, one-word, CamelCase reason for the condition's
   150                        last transition.
   151                      type: string
   152                    status:
   153                      description: Status is the status of the condition. Can be True,
   154                        False, Unknown.
   155                      type: string
   156                    type:
   157                      description: Type is the type of the condition.
   158                      type: string
   159                  type: object
   160                type: array
   161              observedGeneration:
   162                description: ObservedGeneration is the generation of the resource
   163                  that was most recently observed by the Config Connector controller.
   164                  If this is equal to metadata.generation, then that means that the
   165                  current reported status reflects the most recent desired state of
   166                  the resource.
   167                type: integer
   168            type: object
   169        required:
   170        - spec
   171        type: object
   172    served: true
   173    storage: true
   174    subresources:
   175      status: {}
   176status:
   177  acceptedNames:
   178    kind: ""
   179    plural: ""
   180  conditions: []
   181  storedVersions: []

View as plain text