mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-12-12 14:00:18 +01:00
Tested against Debian Buster, confirmed working.
This commit is contained in:
parent
43275f5d63
commit
f077120580
2 changed files with 9 additions and 4 deletions
|
@ -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.
|
||||
|
|
2
tests/Vagrantfile
vendored
2
tests/Vagrantfile
vendored
|
@ -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|
|
||||
|
|
Loading…
Reference in a new issue