mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2025-01-06 19:08:55 +01:00
Tested against Debian Buster, confirmed working.
This commit is contained in:
parent
43275f5d63
commit
f077120580
@ -1,3 +1,5 @@
|
|||||||
|
---
|
||||||
|
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: Xan Manning
|
author: Xan Manning
|
||||||
description: Ansible role for installing k3s as either a standalone server or cluster
|
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
|
# this branch. If Travis integration is configured, only notifications for this
|
||||||
# branch will be accepted. Otherwise, in all cases, the repo's default branch
|
# branch will be accepted. Otherwise, in all cases, the repo's default branch
|
||||||
# (usually master) will be used.
|
# (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.
|
# platforms is a list of platforms, and each platform has a name and a list of versions.
|
||||||
@ -38,6 +40,7 @@ galaxy_info:
|
|||||||
- 7
|
- 7
|
||||||
- name: Debian
|
- name: Debian
|
||||||
versions:
|
versions:
|
||||||
|
- buster
|
||||||
- jessie
|
- jessie
|
||||||
- stretch
|
- stretch
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
@ -47,10 +50,12 @@ galaxy_info:
|
|||||||
|
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- k3s
|
- k3s
|
||||||
|
- k8s
|
||||||
- kubernetes
|
- kubernetes
|
||||||
- docker
|
- docker
|
||||||
- containerd
|
- containerd
|
||||||
- cluster
|
- cluster
|
||||||
|
- rancher
|
||||||
# List tags for your role here, one per line. A tag is a keyword that describes
|
# 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
|
# and categorizes the role. Users find roles by searching for tags. Be sure to
|
||||||
# remove the '[]' above, if you add tags to this list.
|
# remove the '[]' above, if you add tags to this list.
|
||||||
@ -59,5 +64,5 @@ galaxy_info:
|
|||||||
# Maximum 20 tags per role.
|
# Maximum 20 tags per role.
|
||||||
|
|
||||||
dependencies: []
|
dependencies: []
|
||||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||||
# if you add dependencies to this list.
|
# 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
|
end
|
||||||
|
|
||||||
config.vm.define "node2" do |node2|
|
config.vm.define "node2" do |node2|
|
||||||
node2.vm.box = "debian/stretch64"
|
node2.vm.box = "debian/buster64"
|
||||||
node2.vm.hostname = "k3s-node02"
|
node2.vm.hostname = "k3s-node02"
|
||||||
node2.vm.network "private_network", ip: "172.16.3.31"
|
node2.vm.network "private_network", ip: "172.16.3.31"
|
||||||
node2.vm.provider "virtualbox" do |vb|
|
node2.vm.provider "virtualbox" do |vb|
|
||||||
|
Loading…
Reference in New Issue
Block a user