updated repo info

This commit is contained in:
Radar231 2023-12-15 14:24:31 -05:00
parent fb21ff5474
commit ee8e4b74c6
2 changed files with 11 additions and 4 deletions

View File

@ -5,10 +5,12 @@
This is the top level playbook for the 'kubectl' role, and will install kubectl
on the target host.
Requires that the variable "kubectl_ver" be set to the desired version.
This playbook can be run using the following command line;
ansible-playbook -i <inventory file | IP,> kubectl.yml
ansible-playbook -i <inventory file | IP,> -e "kubectl_ver=v1.29" kubectl.yml
ie,
ansible-playbook -i 192.168.0.101, kubectl.yml
ansible-playbook -i 192.168.0.101, -e "kubectl_ver=v1.29" kubectl.yml

View File

@ -7,12 +7,14 @@
#
###########################################################################
#
# Requires that the variable "kubectl_ver" be set to the desired version
#
# This playbook can be run using the following command line;
#
# ansible-playbook -i <inventory file | IP,> kubectl.yml
# ansible-playbook -i <inventory file | IP,> -e "kubectl_ver=v1.29" kubectl.yml
#
# ie,
# ansible-playbook -i 192.168.0.101, kubectl.yml
# ansible-playbook -i 192.168.0.101, -e "kubectl_ver=v1.29" kubectl.yml
#
###########################################################################
@ -23,4 +25,7 @@
roles:
- role: kubectl
vars:
kubectl_ver: v1.29
# EOF