-
Notifications
You must be signed in to change notification settings - Fork 12
/
module.kubernetes.php
67 lines (59 loc) · 1.51 KB
/
module.kubernetes.php
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
<?php
//
// iTop module definition file
//
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'kubernetes/1.0.0',
array(
// Identification
//
'label' => 'Kubernetes',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/2.2.0',
'le-config-mgmt/1.0.0'
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.kubernetes.php',
'main.kubernetes.php'
),
'webservice' => array(
),
'data.struct' => array(
// add your 'structure' definition XML files here,
),
'data.sample' => array(
// add your sample data XML files here,
),
// Documentation
//
'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
'doc.more_information' => '', // hyperlink to more information, if any
// Default settings
//
'settings' => array(
// Module specific settings go here, if any
'cron_updatecontacts_interval' => 180,
'reserve' => array('default-http-backend'),
'kubernetes_dashboard_url' => 'http://localhost/',
'iframe_height' => ' 600px',
'ingress_doc_url' => 'http://localhost/',
'confirm-theme' => 'modern',
'confirm-icon' => '',
'confirm-widt' => '30%',
'ace_editor_theme' => 'xcode',
'ace_editor_minHeight' => '300px',
'highlight_theme' => 'vs2015',
'sidecar_doc' => 'http://opwiki.cn/sidecar/',
'apptemplate_doc' => 'http://opwiki.cn/apptemplate/',
),
)
);
?>