...

Text file src/github.com/GoogleCloudPlatform/k8s-config-connector/crds/dns_v1beta1_dnsrecordset.yaml

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

     1# Copyright 2020 Google LLC
     2#
     3# Licensed under the Apache License, Version 2.0 (the "License");
     4# you may not use this file except in compliance with the License.
     5# You may obtain a copy of the License at
     6#
     7#     http://www.apache.org/licenses/LICENSE-2.0
     8#
     9# Unless required by applicable law or agreed to in writing, software
    10# distributed under the License is distributed on an "AS IS" BASIS,
    11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12# See the License for the specific language governing permissions and
    13# limitations under the License.
    14
    15apiVersion: apiextensions.k8s.io/v1
    16kind: CustomResourceDefinition
    17metadata:
    18  annotations:
    19    cnrm.cloud.google.com/version: 1.106.0
    20  creationTimestamp: null
    21  labels:
    22    cnrm.cloud.google.com/managed-by-kcc: "true"
    23    cnrm.cloud.google.com/stability-level: stable
    24    cnrm.cloud.google.com/system: "true"
    25    cnrm.cloud.google.com/tf2crd: "true"
    26  name: dnsrecordsets.dns.cnrm.cloud.google.com
    27spec:
    28  group: dns.cnrm.cloud.google.com
    29  names:
    30    categories:
    31    - gcp
    32    kind: DNSRecordSet
    33    plural: dnsrecordsets
    34    shortNames:
    35    - gcpdnsrecordset
    36    - gcpdnsrecordsets
    37    singular: dnsrecordset
    38  scope: Namespaced
    39  versions:
    40  - additionalPrinterColumns:
    41    - jsonPath: .metadata.creationTimestamp
    42      name: Age
    43      type: date
    44    - description: When 'True', the most recent reconcile of the resource succeeded
    45      jsonPath: .status.conditions[?(@.type=='Ready')].status
    46      name: Ready
    47      type: string
    48    - description: The reason for the value in 'Ready'
    49      jsonPath: .status.conditions[?(@.type=='Ready')].reason
    50      name: Status
    51      type: string
    52    - description: The last transition time for the value in 'Status'
    53      jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
    54      name: Status Age
    55      type: date
    56    name: v1beta1
    57    schema:
    58      openAPIV3Schema:
    59        properties:
    60          apiVersion:
    61            description: 'apiVersion defines the versioned schema of this representation
    62              of an object. Servers should convert recognized schemas to the latest
    63              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
    64            type: string
    65          kind:
    66            description: 'kind is a string value representing the REST resource this
    67              object represents. Servers may infer this from the endpoint the client
    68              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
    69            type: string
    70          metadata:
    71            type: object
    72          spec:
    73            oneOf:
    74            - required:
    75              - rrdatas
    76            - required:
    77              - rrdatasRefs
    78            properties:
    79              managedZoneRef:
    80                oneOf:
    81                - not:
    82                    required:
    83                    - external
    84                  required:
    85                  - name
    86                - not:
    87                    anyOf:
    88                    - required:
    89                      - name
    90                    - required:
    91                      - namespace
    92                  required:
    93                  - external
    94                properties:
    95                  external:
    96                    description: 'Allowed value: The `name` field of a `DNSManagedZone`
    97                      resource.'
    98                    type: string
    99                  name:
   100                    description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
   101                    type: string
   102                  namespace:
   103                    description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
   104                    type: string
   105                type: object
   106              name:
   107                description: Immutable. The DNS name this record set will apply to.
   108                type: string
   109              rrdatas:
   110                description: DEPRECATED. Although this field is still available, there
   111                  is limited support. We recommend that you use `spec.rrdatasRefs`
   112                  instead.
   113                items:
   114                  type: string
   115                type: array
   116              rrdatasRefs:
   117                items:
   118                  oneOf:
   119                  - not:
   120                      required:
   121                      - external
   122                    required:
   123                    - name
   124                    - kind
   125                  - not:
   126                      anyOf:
   127                      - required:
   128                        - name
   129                      - required:
   130                        - namespace
   131                      - required:
   132                        - kind
   133                    required:
   134                    - external
   135                  properties:
   136                    external:
   137                      description: 'Allowed value: The `address` field of a `ComputeAddress`
   138                        resource.'
   139                      type: string
   140                    kind:
   141                      description: 'Kind of the referent. Allowed values: ComputeAddress'
   142                      type: string
   143                    name:
   144                      description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
   145                      type: string
   146                    namespace:
   147                      description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
   148                      type: string
   149                  type: object
   150                type: array
   151              ttl:
   152                description: The time-to-live of this record set (seconds).
   153                type: integer
   154              type:
   155                description: The DNS record set type.
   156                type: string
   157            required:
   158            - managedZoneRef
   159            - name
   160            - type
   161            type: object
   162          status:
   163            properties:
   164              conditions:
   165                description: Conditions represent the latest available observation
   166                  of the resource's current state.
   167                items:
   168                  properties:
   169                    lastTransitionTime:
   170                      description: Last time the condition transitioned from one status
   171                        to another.
   172                      type: string
   173                    message:
   174                      description: Human-readable message indicating details about
   175                        last transition.
   176                      type: string
   177                    reason:
   178                      description: Unique, one-word, CamelCase reason for the condition's
   179                        last transition.
   180                      type: string
   181                    status:
   182                      description: Status is the status of the condition. Can be True,
   183                        False, Unknown.
   184                      type: string
   185                    type:
   186                      description: Type is the type of the condition.
   187                      type: string
   188                  type: object
   189                type: array
   190              observedGeneration:
   191                description: ObservedGeneration is the generation of the resource
   192                  that was most recently observed by the Config Connector controller.
   193                  If this is equal to metadata.generation, then that means that the
   194                  current reported status reflects the most recent desired state of
   195                  the resource.
   196                type: integer
   197            type: object
   198        required:
   199        - spec
   200        type: object
   201    served: true
   202    storage: true
   203    subresources:
   204      status: {}
   205status:
   206  acceptedNames:
   207    kind: ""
   208    plural: ""
   209  conditions: []
   210  storedVersions: []

View as plain text