mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-22 15:08:09 -03:30
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
22 lines
379 B
YAML
22 lines
379 B
YAML
---
|
|
|
|
- name: Check tokens
|
|
import_tasks: check-tokens.yml
|
|
tags:
|
|
- k8s-secrets
|
|
- k8s-gen-tokens
|
|
- facts
|
|
|
|
- name: Make sure the tokens directory exits
|
|
file:
|
|
path: "{{ kube_token_dir }}"
|
|
state: directory
|
|
mode: 0644
|
|
group: "{{ kube_cert_group }}"
|
|
|
|
- name: Generate tokens
|
|
import_tasks: gen_tokens.yml
|
|
tags:
|
|
- k8s-secrets
|
|
- k8s-gen-tokens
|