From f0771205806d2ed88901dc9b171aa56cd194dd94 Mon Sep 17 00:00:00 2001 From: Xan Manning Date: Sat, 15 Jun 2019 17:44:09 +0100 Subject: [PATCH] Tested against Debian Buster, confirmed working. --- meta/main.yml | 11 ++++++++--- tests/Vagrantfile | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/meta/main.yml b/meta/main.yml index 2a29e4c..cd39d93 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -1,3 +1,5 @@ +--- + galaxy_info: author: Xan Manning description: Ansible role for installing k3s as either a standalone server or cluster @@ -27,7 +29,7 @@ galaxy_info: # this branch. If Travis integration is configured, only notifications for this # branch will be accepted. Otherwise, in all cases, the repo's default branch # (usually master) will be used. - #github_branch: + # github_branch: # # platforms is a list of platforms, and each platform has a name and a list of versions. @@ -38,6 +40,7 @@ galaxy_info: - 7 - name: Debian versions: + - buster - jessie - stretch - name: Ubuntu @@ -47,10 +50,12 @@ galaxy_info: galaxy_tags: - k3s + - k8s - kubernetes - docker - containerd - cluster + - rancher # List tags for your role here, one per line. A tag is a keyword that describes # and categorizes the role. Users find roles by searching for tags. Be sure to # remove the '[]' above, if you add tags to this list. @@ -59,5 +64,5 @@ galaxy_info: # Maximum 20 tags per role. dependencies: [] - # List your role dependencies here, one per line. Be sure to remove the '[]' above, - # if you add dependencies to this list. +# List your role dependencies here, one per line. Be sure to remove the '[]' above, +# if you add dependencies to this list. diff --git a/tests/Vagrantfile b/tests/Vagrantfile index 68e973d..239b580 100644 --- a/tests/Vagrantfile +++ b/tests/Vagrantfile @@ -41,7 +41,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end config.vm.define "node2" do |node2| - node2.vm.box = "debian/stretch64" + node2.vm.box = "debian/buster64" node2.vm.hostname = "k3s-node02" node2.vm.network "private_network", ip: "172.16.3.31" node2.vm.provider "virtualbox" do |vb|