-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathkuberoRedis.ts
87 lines (81 loc) · 2.99 KB
/
kuberoRedis.ts
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import {Plugin, IPlugin, IPluginFormFields} from './plugin';
// Classname must be same as the CRD's Name
export class KuberoRedis extends Plugin implements IPlugin {
public id: string = 'kubero-operator';//same as operator name
public displayName = 'Redis'
public icon = '/img/addons/redis.svg'
public install: string = ''
public url = 'https://artifacthub.io/packages/olm/community-operators/kubero-operator'
public docs = [
{
title: 'Kubero Docs', url: ''
}
]
public artifact_url = 'https://artifacthub.io/api/v1/packages/olm/kubero/kubero-operator'
public beta: boolean = false;
public formfields: {[key: string]: IPluginFormFields} = {
'KuberoRedis.metadata.name':{
type: 'text',
label: 'Redis Cluster Name',
name: 'metadata.name',
required: true,
default: 'redis',
description: 'The name of the redis instance'
},
'KuberoRedis.spec.redis.image.tag':{
type: 'combobox',
label: 'Version/Tag',
options: ['7.0.7-debian-11-r7', '6.2', '7.4.2', 'latest'], // TODO - load this dynamically
name: 'spec.redis.image.tag',
required: true,
default: '7.0-debian-12',
description: 'Version of the PostgreSQL image to use'
},
'KuberoRedis.spec.redis.replica.replicaCount':{
type: 'number',
label: 'Replica Count*',
name: 'spec.redis.replica.replicaCount',
default: '3',
required: true,
description: 'Number of replicas'
},
'KuberoRedis.spec.redis.global.storageClass':{
type: 'select-storageclass',
label: 'Storage Class',
// options: ['default', 'local-path', 'nfs-client', 'rook-ceph-block'],
name: 'spec.redis.global.storageClass',
default: 'default',
required: true
},
'KuberoRedis.spec.redis.master.persistence.size':{
type: 'text',
label: 'Master Sorage Size*',
name: 'spec.redis.master.persistence.size',
default: '1Gi',
required: true,
description: 'Size of the storage'
},
'KuberoRedis.spec.redis.replica.persistence.size':{
type: 'text',
label: 'Replica Sorage Size*',
name: 'spec.redis.replica.persistence.size',
default: '1Gi',
required: true,
description: 'Size of the storage'
},
'KuberoRedis.spec.redis.global.redis.password':{
type: 'text',
label: 'Password*',
name: 'spec.redis.global.redis.password',
default: '',
required: true,
description: 'Password'
}
};
public env: any[] = []
protected additionalResourceDefinitions: Object = {}
constructor(availableOperators: any) {
super();
super.init(availableOperators);
}
}