Installs kubectl command line utility used to interact with the Kubernetes API Server.
I tag every release and try to stay with semantic versioning. If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag 8.0.0+1.14.1
means this is release 8.0.0
of this role and it's meant to be used with Kubernetes version 1.14.x
. If the role itself changes X.Y.Z
before +
will increase. If the Kubernetes version changes X.Y.Z
after +
will increase. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific Kubernetes release.
see CHANGELOG
# "kubectl" version to install
kubectl_version: "1.16.3"
# SHA512 checksum of the archive (see https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.16.md
# for the checksums)
kubectl_checksum: "sha512:904604839bbf46c11c7934f6f906adbc968234044b9f3268b71c175241626f8d4076812aca789dc5aa2f85fd25a384ad779638231d4d94f3f3c6d043b5d9f062"
# Where to install "kubectl" binary
kubectl_bin_directory: "/usr/local/bin"
# Directory to store the kubeclient archive
kubectl_tmp_directory: "{{ lookup('env', 'TMPDIR') | default('/tmp',true) }}"
# Owner of "kubectl" binary
kubectl_owner: "root"
# Group of "kubectl" binary
kubectl_group: "root"
# Operarting system on which "kubectl" should run on
kubectl_os: "linux" # use "darwin" for MacOS X, "windows" for Windows
# Processor architecture "kubectl" should run on
kubectl_arch: "amd64" # other possible values: "386","arm64","arm","ppc64le","s390x"
- hosts: your-host
roles:
- githubixx.kubectl
GNU GENERAL PUBLIC LICENSE Version 3