...

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

View as plain text