Skip to content

Commit cbec41d

Browse files
author
Matt Nikkel
authored
Merge pull request #130 from Dean-Coakley/patch-1
Pin quickstart/vagrant Rancher version
2 parents 453ba69 + 67e3452 commit cbec41d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

vagrant/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Vagrant.configure(2) do |config|
2828
end
2929
server.vm.network x.fetch('net').fetch('network_type'), ip: x.fetch('ip').fetch('server') , nic_type: $private_nic_type
3030
server.vm.hostname = "server-01"
31-
server.vm.provision "shell", path: "scripts/configure_rancher_server.sh", args: [x.fetch('admin_password'), x.fetch('version'), x.fetch('k8s_version')]
31+
server.vm.provision "shell", path: "scripts/configure_rancher_server.sh", args: [x.fetch('admin_password'), x.fetch('rancher_version'), x.fetch('k8s_version')]
3232

3333
end
3434

vagrant/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
admin_password: admin
2-
version: latest
2+
rancher_version: v2.4.8
33
ROS_version: 1.5.1
44
# Empty defaults to latest non-experimental available
55
k8s_version: ""

vagrant/scripts/configure_rancher_server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
rancher_ip="172.22.101.101"
44
admin_password=${1:-password}
5-
rancher_version=${2:-latest}
5+
rancher_version=${2:-stable}
66
k8s_version=$3
77
curlimage="appropriate/curl"
88
jqimage="stedolan/jq"

0 commit comments

Comments
 (0)