From 8823495d428e33335c6012e056278e86b34ea3c7 Mon Sep 17 00:00:00 2001 From: zshi Date: Mon, 27 Feb 2017 10:36:42 +0800 Subject: Adding dovetail installation using docker container This patch adds dovetail option to deploy settings, installs dovetail image to undercloud. Change-Id: If7a763d9f6b27655dbb1f5855f438ab11bd88a82 Signed-off-by: zshi --- lib/python/apex/deploy_settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/python') diff --git a/lib/python/apex/deploy_settings.py b/lib/python/apex/deploy_settings.py index 2a9d5a67..0d1939a4 100644 --- a/lib/python/apex/deploy_settings.py +++ b/lib/python/apex/deploy_settings.py @@ -25,7 +25,11 @@ REQ_DEPLOY_SETTINGS = ['sdn_controller', 'ceph', 'gluon'] -OPT_DEPLOY_SETTINGS = ['performance', 'vsperf', 'ceph_device', 'yardstick'] +OPT_DEPLOY_SETTINGS = ['performance', + 'vsperf', + 'ceph_device', + 'yardstick', + 'dovetail'] VALID_ROLES = ['Controller', 'Compute', 'ObjectStorage'] VALID_PERF_OPTS = ['kernel', 'nova', 'vpp'] -- cgit 1.2.3-korg lue='63af3fcbe90158ce1a3f96d35219805d902c25f4'/> Unnamed repositoryGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
blob: 06c2a2919a24ca9f793acc016a5bd32b8a9e00bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
heat_template_version: 2015-04-30
description: 'Ceph Storage Post Deployment'
# NOTE: this is a noop for os-apply-config style deployments because
# post deployment ordering is controlled by tripleo-image-elements

parameters:
  servers:
    type: json

resources:

  # Note, this should come last, so use depends_on to ensure
  # this is created after any other resources.
  ExtraConfig:
    type: OS::TripleO::NodeExtraConfigPost
    properties:
        servers: {get_param: servers}