|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + controller-gen.kubebuilder.io/version: v0.17.1 |
| 6 | + name: users.management.cattle.io |
| 7 | +spec: |
| 8 | + group: management.cattle.io |
| 9 | + names: |
| 10 | + kind: User |
| 11 | + listKind: UserList |
| 12 | + plural: users |
| 13 | + singular: user |
| 14 | + scope: Cluster |
| 15 | + versions: |
| 16 | + - name: v3 |
| 17 | + schema: |
| 18 | + openAPIV3Schema: |
| 19 | + description: User represents a user in Rancher |
| 20 | + properties: |
| 21 | + apiVersion: |
| 22 | + description: |- |
| 23 | + APIVersion defines the versioned schema of this representation of an object. |
| 24 | + Servers should convert recognized schemas to the latest internal value, and |
| 25 | + may reject unrecognized values. |
| 26 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 27 | + type: string |
| 28 | + description: |
| 29 | + description: Description provides a brief summary about the user. |
| 30 | + type: string |
| 31 | + displayName: |
| 32 | + description: DisplayName is the user friendly name shown in the UI. |
| 33 | + type: string |
| 34 | + enabled: |
| 35 | + description: Enabled indicates whether the user account is active. |
| 36 | + type: boolean |
| 37 | + kind: |
| 38 | + description: |- |
| 39 | + Kind is a string value representing the REST resource this object represents. |
| 40 | + Servers may infer this from the endpoint the client submits requests to. |
| 41 | + Cannot be updated. |
| 42 | + In CamelCase. |
| 43 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 44 | + type: string |
| 45 | + me: |
| 46 | + description: Deprecated. Only used by /v3 Rancher API. |
| 47 | + type: boolean |
| 48 | + metadata: |
| 49 | + type: object |
| 50 | + mustChangePassword: |
| 51 | + description: |- |
| 52 | + MustChangePassword is a flag that, if true, forces the user to change their |
| 53 | + password upon their next login. |
| 54 | + type: boolean |
| 55 | + password: |
| 56 | + description: Deprecated. Password are stored in secrets in the cattle-local-user-passwords |
| 57 | + namespace. |
| 58 | + type: string |
| 59 | + principalIds: |
| 60 | + description: |- |
| 61 | + PrincipalIDs lists the authentication provider identities (e.g. GitHub, Keycloak or Active Directory) |
| 62 | + that are associated with this user account. |
| 63 | + items: |
| 64 | + type: string |
| 65 | + type: array |
| 66 | + status: |
| 67 | + description: Status contains the most recent observed state of the user. |
| 68 | + properties: |
| 69 | + conditions: |
| 70 | + items: |
| 71 | + properties: |
| 72 | + lastTransitionTime: |
| 73 | + description: Last time the condition transitioned from one status |
| 74 | + to another. |
| 75 | + type: string |
| 76 | + lastUpdateTime: |
| 77 | + description: The last time this condition was updated. |
| 78 | + type: string |
| 79 | + message: |
| 80 | + description: Human-readable message indicating details about |
| 81 | + last transition |
| 82 | + type: string |
| 83 | + reason: |
| 84 | + description: The reason for the condition's last transition. |
| 85 | + type: string |
| 86 | + status: |
| 87 | + description: Status of the condition, one of True, False, Unknown. |
| 88 | + type: string |
| 89 | + type: |
| 90 | + description: Type of user condition. |
| 91 | + type: string |
| 92 | + required: |
| 93 | + - status |
| 94 | + - type |
| 95 | + type: object |
| 96 | + type: array |
| 97 | + type: object |
| 98 | + username: |
| 99 | + description: Username is the unique login identifier for the user. |
| 100 | + type: string |
| 101 | + type: object |
| 102 | + served: true |
| 103 | + storage: true |
0 commit comments