ansible-create-k8s-user/tasks/main.yml

92 lines
3.2 KiB
YAML
Raw Normal View History

2023-03-11 17:18:57 +00:00
# --------------------------------------
# -- Create kubernetes user
# --------------------------------------
# -- 1. Install packages
# -- 2. Generate certificate
# -- 3. Add user to kubernetes
# -- 4. Remove certificates (Optional)
# --------------------------------------
---
- name: Ensure required packages are installed
2024-02-14 10:19:18 +00:00
when: not use_system_bins
2023-03-11 17:18:57 +00:00
tags: packages
block:
2024-02-14 10:19:18 +00:00
- name: Create a working directory if it doesn't exist
ansible.builtin.file:
path: "{{ working_dir }}"
state: directory
mode: "0775"
2024-02-14 10:19:18 +00:00
- name: Prepare bin directory
block:
- name: Set workdir as fact
set_fact:
bin_dir: "{{ working_dir }}/bin"
2023-03-11 17:18:57 +00:00
- name: Create a directory if it does not exist
ansible.builtin.file:
path: "{{ bin_dir }}"
state: directory
mode: "0775"
2023-03-11 17:18:57 +00:00
- name: Install yq
block:
- name: Ensure yq is installed
become: true
get_url:
url: "https://github.com/mikefarah/yq/releases/download/{{ yq.version }}/{{ yq.binary }}"
dest: "{{ bin_dir }}/yq"
mode: "0777"
2023-03-11 17:18:57 +00:00
- name: Install kubectl
block:
- name: Download kubectl release
become: true
get_url:
url: https://dl.k8s.io/release/{{ kubectl.version }}/bin/linux/{{ kubectl.arch }}/kubectl
dest: "{{ bin_dir }}/kubectl"
mode: "0777"
2023-07-16 20:07:38 +00:00
- name: Download the kubectl checksum file
uri:
url: https://dl.k8s.io/{{ kubectl.version }}/bin/linux/{{ kubectl.arch }}/kubectl.sha256
dest: /tmp
2023-07-16 20:07:38 +00:00
- name: Validate the kubectl binary against the checksum file
shell: echo "$(cat /tmp/kubectl.sha256) {{ bin_dir }}/kubectl" | sha256sum --check
register: result
2023-07-16 20:07:38 +00:00
- name: Assert that the kubectl binary is OK
vars:
expected: "{{ bin_dir }}/kubectl: OK"
assert:
that:
- result.stdout == expected
fail_msg: "{{ result.stdout }}"
success_msg: "{{ result.stdout }}"
2023-07-16 20:07:38 +00:00
- name: Ensure openssl is installed
become: true
2023-03-11 17:18:57 +00:00
package:
2023-07-16 20:07:38 +00:00
name: "openssl"
2023-03-11 17:18:57 +00:00
state: present
2023-07-16 20:07:38 +00:00
- name: Create kubernetes user
loop: "{{ users }}"
include_tasks: create-user.yaml
vars:
certificate_expires_in: "{{ item.certificate_expires_in | default('500') }}"
username: "{{ item.username }}"
2024-02-14 10:19:18 +00:00
host_user: "{{ item.host_user | default('') }}"
2024-02-15 15:04:41 +00:00
k8s_namespace: "{{ item.k8s_namespace | default('default') }}"
2023-07-16 20:07:38 +00:00
cluster: "{{ item.cluster }}"
binding_type: "{{ item.binding_type | default('ClusterRoleBinding') }}"
role_type: "{{ item.role_type | default('ClusterRole') }}"
role: "{{ item.role | default('cluster-admin') }}"
user_k8s_config_path: "{{ item.k8s_config_path | default(k8s_config_path) }}"
user_k8s_cert_path: "{{ item.k8s_cert_path | default(k8s_cert_path) }}"
user_k8s_cert_crt_file: "{{ item.k8s_cert_crt_file | default(k8s_cert_crt_file) }}"
user_k8s_cert_key_file: "{{ item.k8s_cert_key_file | default(k8s_cert_key_file) }}"
2024-03-22 15:24:40 +00:00
download_config: "{{ item.download_config | default(false) }}"
output_path: "{{ item.output_path | default ('/tmp/outputs') }}"