k8c.io/api/v3@v3.0.0-20230904060738-b0a93889c0b6/crd/enterprise/kcp/ee.kubermatic.k8c.io_usersshkeys.yaml (about)

     1  # This file has been generated by hack/update-codegen.sh, DO NOT EDIT.
     2  
     3  apiVersion: apiextensions.k8s.io/v1
     4  kind: CustomResourceDefinition
     5  metadata:
     6    annotations:
     7      controller-gen.kubebuilder.io/version: v0.12.0
     8    name: usersshkeys.ee.kubermatic.k8c.io
     9  spec:
    10    group: ee.kubermatic.k8c.io
    11    names:
    12      kind: UserSSHKey
    13      listKind: UserSSHKeyList
    14      plural: usersshkeys
    15      singular: usersshkey
    16    scope: Cluster
    17    versions:
    18      - additionalPrinterColumns:
    19          - jsonPath: .spec.name
    20            name: HumanReadableName
    21            type: string
    22          - jsonPath: .status.fingerprint
    23            name: Fingerprint
    24            type: string
    25          - jsonPath: .metadata.creationTimestamp
    26            name: Age
    27            type: date
    28        name: v1
    29        schema:
    30          openAPIV3Schema:
    31            description: UserSSHKey specifies a user's SSH public key.
    32            properties:
    33              apiVersion:
    34                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'
    35                type: string
    36              kind:
    37                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'
    38                type: string
    39              metadata:
    40                type: object
    41              spec:
    42                properties:
    43                  name:
    44                    description: Name is the human readable name for this SSH key.
    45                    type: string
    46                  publicKey:
    47                    description: PublicKey is the SSH public key.
    48                    type: string
    49                required:
    50                  - name
    51                  - publicKey
    52                type: object
    53              status:
    54                properties:
    55                  fingerprint:
    56                    description: Fingerprint is calculated server-side based on the supplied public key.
    57                    type: string
    58                required:
    59                  - fingerprint
    60                type: object
    61            type: object
    62        served: true
    63        storage: true
    64        subresources: {}