From 76fecae3ba4aeffb7154a17da990a2edfdd2bb0b Mon Sep 17 00:00:00 2001 From: Collin Poczatek Date: Tue, 23 Jan 2018 10:22:45 -0800 Subject: [PATCH] default DSE version to 5.1.6 --- bin/dse/install.sh | 4 ++-- bin/lcm/setupCluster.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/dse/install.sh b/bin/dse/install.sh index ae44c18..3aebec3 100755 --- a/bin/dse/install.sh +++ b/bin/dse/install.sh @@ -6,8 +6,8 @@ cloud_type=$1 # Overidable by setting env var in calling template, # eg: export OPSC_VERSION='6.1.0' -dse_version=5.1.4-1 -opscenter_version=6.1.4 +dse_version=5.1.6-1 +opscenter_version=6.1.5 if [ -z "$OPSC_VERSION" ] then diff --git a/bin/lcm/setupCluster.py b/bin/lcm/setupCluster.py index abdec57..0f0ad44 100755 --- a/bin/lcm/setupCluster.py +++ b/bin/lcm/setupCluster.py @@ -21,7 +21,7 @@ def setupArgs(): help='abs path to private key (public key on all nodes) to be used by OpsCenter') parser.add_argument('--password', type=str, help='password for username LCM uses when ssh-ing to nodes for install/config. IGNORED if privkey non-null.') - parser.add_argument('--dsever', type=str, default = "5.1.5", help='DSE version for LCM config profile') + parser.add_argument('--dsever', type=str, default = "5.1.6", help='DSE version for LCM config profile') parser.add_argument('--datapath', type=str, default = "", help='path to root data directory containing data/commitlog/saved_caches (eg /data/cassandra)') parser.add_argument('--pause',type=int, default=6, help="pause time (sec) between attempts to contact OpsCenter, default 6")