Add support for barbican
The commit edits refstack page so that it supports key_manager add-on program. Change-Id: I8727298f7f988f40832318f2b810c184ac76f38c
This commit is contained in:
parent
9ebea4b13b
commit
fbe48dbad7
@ -22,6 +22,7 @@
|
||||
<option value="orchestration">OpenStack with Orchestration</option>
|
||||
<option value="shared_file_system">OpenStack with Shared File System</option>
|
||||
<option value="load_balancer">OpenStack with Load Balancer</option>
|
||||
<option value="key_manager">OpenStack with Key Manager</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -143,7 +143,8 @@
|
||||
if (ctrl.target === 'dns' ||
|
||||
ctrl.target === 'orchestration' ||
|
||||
ctrl.target === 'shared_file_system' ||
|
||||
ctrl.target === 'load_balancer'
|
||||
ctrl.target === 'load_balancer' ||
|
||||
ctrl.target === 'key_manager'
|
||||
) {
|
||||
ctrl.gl_type = ctrl.target;
|
||||
} else {
|
||||
|
@ -96,6 +96,7 @@
|
||||
<option value="orchestration">OpenStack with Orchestration</option>
|
||||
<option value="shared_file_system">OpenStack with Shared File System</option>
|
||||
<option value="load_balancer">OpenStack with Load Balancer</option>
|
||||
<option value="key_manager">OpenStack with Key Manager</option>
|
||||
</select>
|
||||
<a ng-if="!result.targetEdit"
|
||||
ng-click="result.targetEdit = true"
|
||||
|
@ -62,7 +62,8 @@
|
||||
'dns': 'OpenStack with DNS',
|
||||
'orchestration': 'OpenStack with Orchestration',
|
||||
'shared_file_system': 'OpenStack with Shared File System',
|
||||
'load_balancer': 'OpenStack with Load Balancer'
|
||||
'load_balancer': 'OpenStack with Load Balancer',
|
||||
'key_manager': 'OpenStack with Key Manager'
|
||||
};
|
||||
|
||||
// Pagination controls.
|
||||
|
@ -31,6 +31,7 @@
|
||||
<option value="orchestration">OpenStack with Orchestration</option>
|
||||
<option value="shared_file_system">OpenStack with Shared File System</option>
|
||||
<option value="load_balancer">OpenStack with Load Balancer</option>
|
||||
<option value="key_manager">OpenStack with Key Manager</option>
|
||||
</select>
|
||||
<hr>
|
||||
<strong>Associated Product:</strong>
|
||||
|
@ -89,6 +89,7 @@
|
||||
<option value="orchestration">OpenStack with Orchestration</option>
|
||||
<option value="shared_file_system">OpenStack with Shared File System</option>
|
||||
<option value="load_balancer">OpenStack with Load Balancer</option>
|
||||
<option value="key_manager">OpenStack with Key Manager</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -70,7 +70,8 @@
|
||||
'dns': 'OpenStack with DNS',
|
||||
'orchestration': 'OpenStack with orchestration',
|
||||
'shared_file_system': 'OpenStack with Shared File System',
|
||||
'load_balancer': 'OpenStack with Load Balancer'
|
||||
'load_balancer': 'OpenStack with Load Balancer',
|
||||
'key_manager': 'OpenStack with Key Manager'
|
||||
};
|
||||
|
||||
/** The schema version of the currently selected guideline data. */
|
||||
@ -95,7 +96,8 @@
|
||||
if (ctrl.target === 'dns' ||
|
||||
ctrl.target === 'orchestration' ||
|
||||
ctrl.target === 'shared_file_system' ||
|
||||
ctrl.target === 'load_balancer'
|
||||
ctrl.target === 'load_balancer' ||
|
||||
ctrl.target === 'key_manager'
|
||||
) {
|
||||
ctrl.gl_type = ctrl.target;
|
||||
|
||||
@ -288,7 +290,8 @@
|
||||
if (ctrl.target === 'dns' ||
|
||||
ctrl.target === 'orchestration' ||
|
||||
ctrl.target === 'shared_file_system' ||
|
||||
ctrl.target === 'load_balancer'
|
||||
ctrl.target === 'load_balancer' ||
|
||||
ctrl.target === 'key_manager'
|
||||
) {
|
||||
ctrl.gl_type = ctrl.target;
|
||||
} else {
|
||||
|
@ -159,6 +159,7 @@
|
||||
<option value="orchestration">OpenStack with Orchestration</option>
|
||||
<option value="shared_file_system">OpenStack with Shared File System</option>
|
||||
<option value="load_balancer">OpenStack with Load Balancer</option>
|
||||
<option value="key_manager">OpenStack with Key Manager</option>
|
||||
</select>
|
||||
<a ng-if="!result.targetEdit"
|
||||
ng-click="result.targetEdit = true;"
|
||||
|
@ -45,7 +45,8 @@
|
||||
if (ctrl.target === 'dns' ||
|
||||
ctrl.target === 'orchestration' ||
|
||||
ctrl.target === 'shared_file_system' ||
|
||||
ctrl.target === 'load_balancer'
|
||||
ctrl.target === 'load_balancer' ||
|
||||
ctrl.target === 'key_manager'
|
||||
) {
|
||||
ctrl.gl_type = ctrl.target;
|
||||
} else {
|
||||
@ -60,7 +61,8 @@
|
||||
'dns': 'OpenStack with DNS',
|
||||
'orchestration': 'OpenStack with Orchestration',
|
||||
'shared_file_system': 'OpenStack with Shared File System',
|
||||
'load_balancer': 'OpenStack with Load Balancer'
|
||||
'load_balancer': 'OpenStack with Load Balancer',
|
||||
'key_manager': 'OpenStack with Key Manager'
|
||||
};
|
||||
|
||||
/** Initial page to be on. */
|
||||
|
@ -167,11 +167,12 @@ class Guidelines:
|
||||
'dns': 'OpenStack with DNS',
|
||||
'orchestration': 'OpenStack with Orchestration',
|
||||
'shared_file_system': 'OpenStack with Shared File System',
|
||||
'load_balancer': 'OpenStack with Load Balancer'
|
||||
'load_balancer': 'OpenStack with Load Balancer',
|
||||
'key_manager': 'OpenStack with Key Manager'
|
||||
|
||||
}
|
||||
add_ons = ['dns', 'orchestration', 'shared_file_system',
|
||||
'load_balancer']
|
||||
'load_balancer', 'key_manager']
|
||||
if target in add_ons:
|
||||
targets = ['os_powered_' + target]
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user