blob: ea1267ea8bb1563b1ba88884245f1dcac9d2744b [file] [log] [blame]
Bartek Grzybowski5ee1e952021-02-03 15:01:34 +01001#!/bin/bash
2
3if [[ $@ =~ 'up' ]];
4then
5 # If the operation is 'rke up' then simulate rke up operation
6 echo $@
7 touch {{ cluster_config_dir }}/kube_config_cluster.yml
8elif [[ $@ =~ 'version' ]];
9then
10 {{ app_data_path }}/downloads/rke_linux-amd64_real version
11 exit 0
12else
13 {{ app_data_path }}/downloads/rke_linux-amd64_real $@
14fi