k8s: Add post-up message for actual cluster creation 88/92288/2
authorPawel Wieczorek <p.wieczorek2@samsung.com>
Tue, 30 Jul 2019 14:27:45 +0000 (16:27 +0200)
committerPawel Wieczorek <p.wieczorek2@samsung.com>
Wed, 31 Jul 2019 13:47:41 +0000 (15:47 +0200)
Issue-ID: SECCOM-235
Change-Id: I8f9d4362da50a8b3f2aa1baf3633d818da2ed3a5
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
test/security/k8s/vagrant/dublin/Vagrantfile

index 8870580..ef4d42b 100644 (file)
@@ -21,6 +21,8 @@ cluster = [
 
 all = cluster.dup << operation
 
+operation_post_msg = "Run: \"vagrant provision #{operation[:name]} --provision-with=rke_up\" to complete cluster creation"
+
 $replace_dns = <<-SCRIPT
   HOST_IP="$1"
   rm -f /etc/resolv.conf # drop its dynamic management by systemd-resolved
@@ -140,6 +142,8 @@ Vagrant.configure('2') do |config|
           s.inline = $link_cluster_yml
           s.args = [synced_folder_main, cluster_yml]
         end
+
+        config.vm.post_up_message = operation_post_msg
         config.vm.provision "rke_up", type: :shell, run: "never", privileged: false, inline: $rke_up
       end
     end