Insignificant changes.
Added install for `nfs-common` package, required for NFS mounting.
This commit is contained in:
@ -26,6 +26,7 @@
|
||||
# - check vars
|
||||
- debug: var=set_hostname
|
||||
- debug: var=is_master
|
||||
|
||||
- name: Ping check
|
||||
ping:
|
||||
#
|
||||
|
@ -69,7 +69,7 @@
|
||||
mode: '0755'
|
||||
# ignore_errors: true
|
||||
|
||||
## Docker repo
|
||||
## Docker repo ARM/x64
|
||||
- name: Add Docker GPG key
|
||||
apt_key:
|
||||
url: https://download.docker.com/linux/debian/gpg
|
||||
@ -89,17 +89,18 @@
|
||||
when:
|
||||
- ansible_architecture == "x86_64"
|
||||
|
||||
## Kubeshit repo ARM
|
||||
## Kubeshit repo
|
||||
|
||||
- name: Add Kubernetes GPG key (ARM)
|
||||
- name: Add Kubernetes GPG key
|
||||
apt_key:
|
||||
url: https://packages.cloud.google.com/apt/doc/apt-key.gpg
|
||||
# url: https://packages.cloud.google.com/apt/doc/apt-key.gpg # Old
|
||||
url: https://pkgs.k8s.io/core:/stable:/v1.28/deb/Release.key
|
||||
state: present
|
||||
|
||||
|
||||
- name: Add Kubernetes APT repository
|
||||
apt_repository:
|
||||
repo: deb https://apt.kubernetes.io/ kubernetes-xenial main
|
||||
repo: deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.28/deb/ /
|
||||
# repo: deb https://apt.kubernetes.io/ kubernetes-xenial main
|
||||
state: present
|
||||
|
||||
|
||||
@ -114,6 +115,7 @@
|
||||
- kubelet
|
||||
- kubeadm
|
||||
- kubectl
|
||||
- nfs-common # Required for NFS mounts
|
||||
- git # fuck it, you will need it, maybe
|
||||
- vim # fuck it, I need it.
|
||||
|
||||
|
Reference in New Issue
Block a user