-
Notifications
You must be signed in to change notification settings - Fork 9
/
ramidentitymapping.yaml
45 lines (45 loc) · 1.06 KB
/
ramidentitymapping.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: ramidentitymappings.ramauthenticator.k8s.alibabacloud
spec:
group: ramauthenticator.k8s.alibabacloud
scope: Cluster
names:
plural: ramidentitymappings
singular: ramidentitymapping
kind: RAMIdentityMapping
categories:
- all
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
required:
- arn
- username
properties:
arn:
type: string
username:
type: string
groups:
type: array
items:
type: string
status:
type: object
properties:
canonicalARN:
type: string
userID:
type: string
subresources:
status: {}