-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathscale.ts
More file actions
73 lines (67 loc) · 1.57 KB
/
Copy pathscale.ts
File metadata and controls
73 lines (67 loc) · 1.57 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { K8sModel } from '@openshift-console/dynamic-plugin-sdk';
export const ClusterModel: K8sModel = {
apiVersion: 'v1beta1',
apiGroup: 'scale.spectrum.ibm.com',
kind: 'Cluster',
plural: 'clusters',
label: 'Cluster',
labelPlural: 'Clusters',
crd: true,
abbr: 'Cl',
namespaced: true,
};
export const EncryptionConfigModel: K8sModel = {
apiVersion: 'v1beta1',
apiGroup: 'scale.spectrum.ibm.com',
kind: 'EncryptionConfig',
plural: 'encryptionconfigs',
label: 'EncryptionConfig',
labelPlural: 'EncryptionConfigs',
crd: true,
abbr: 'EC',
namespaced: true,
};
export const RemoteClusterModel: K8sModel = {
apiVersion: 'v1beta1',
apiGroup: 'scale.spectrum.ibm.com',
kind: 'RemoteCluster',
plural: 'remoteclusters',
label: 'RemoteCluster',
labelPlural: 'RemoteClusters',
crd: true,
abbr: 'RC',
namespaced: true,
};
export const FileSystemModel: K8sModel = {
apiVersion: 'v1beta1',
apiGroup: 'scale.spectrum.ibm.com',
kind: 'Filesystem',
plural: 'filesystems',
label: 'Filesystem',
labelPlural: 'Filesystems',
crd: true,
abbr: 'Fs',
namespaced: true,
};
export const DaemonModel: K8sModel = {
apiVersion: 'v1beta1',
apiGroup: 'scale.spectrum.ibm.com',
kind: 'Daemon',
plural: 'daemons',
label: 'Daemon',
labelPlural: 'Daemons',
crd: true,
abbr: 'D',
namespaced: true,
};
export const LocalDiskModel: K8sModel = {
apiVersion: 'v1beta1',
apiGroup: 'scale.spectrum.ibm.com',
kind: 'LocalDisk',
plural: 'localdisks',
label: 'LocalDisk',
labelPlural: 'LocalDisks',
crd: true,
abbr: 'LD',
namespaced: true,
};