Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelpalacce/ansible-kubernetes-preflight
Ansible role used to setup all the kubernetes dependencies and binaries.
https://github.com/michaelpalacce/ansible-kubernetes-preflight
Last synced: 22 days ago
JSON representation
Ansible role used to setup all the kubernetes dependencies and binaries.
- Host: GitHub
- URL: https://github.com/michaelpalacce/ansible-kubernetes-preflight
- Owner: Michaelpalacce
- Created: 2021-05-24T16:44:16.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-09T07:34:50.000Z (10 months ago)
- Last Synced: 2024-11-06T15:59:53.315Z (2 months ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DEPRECATED
A simple ansible role that installs a specific version of kubernetes
This package closely follows the guide at: https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/
If you want to use Helm to manage your K8S cluster, you can include the role `michaelpalacce.helm`.
# Important
This roles does NOT install a CRI. You must install one beforehand. Consider adding `michaelpalacce.docker` role to install docker as a cri.# Supported variables
~~~
check_version_exists
~~~
Checks if the version given actually exists. Generally should be safe to leave to yes, but you can disable this if the check is not valid.
Defaults to: `yes`.~~~
k8s_version
~~~
The Kubernetes binaries version to install
For a list of available versions run: `curl -s https://packages.cloud.google.com/apt/dists/kubernetes-xenial/main/binary-amd64/Packages | grep 'Package: kubelet' -A 2 | grep 'Version' | awk '{print $2}'`
Defaults to: `1.21.1-00`~~~
arch
~~~
Define kubernetes architecture binary you want to install. See: https://packages.cloud.google.com/apt/dists/kubernetes-xenial/main
Possible values: `amd64`, `armhf`, `arm64`, `i386`, `ppc64el`, `s390x`
Defaults to: `amd64`.