diff options
| author | alex <alex@pdp7.net> | 2023-03-04 14:24:19 +0100 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2023-03-04 14:25:07 +0100 |
| commit | aaea518627d28d56093982723e52879c402144a1 (patch) | |
| tree | b90fe419cd9d5e11f8c19c48ce0655a748d954c6 | |
| parent | c51ccf1bd5d879ced449823da7e36281325404b5 (diff) | |
Fix context specification
| -rw-r--r-- | personal_infra/playbooks/roles/talos/tasks/main.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/personal_infra/playbooks/roles/talos/tasks/main.yaml b/personal_infra/playbooks/roles/talos/tasks/main.yaml index 672061bc..f049d6e9 100644 --- a/personal_infra/playbooks/roles/talos/tasks/main.yaml +++ b/personal_infra/playbooks/roles/talos/tasks/main.yaml @@ -1,7 +1,7 @@ --- - name: check node ready k8s_info: - context: admin@{{ talos_host.talos_cluster }} + context: "{{ talos_host.talos_cluster }}@admin" kind: Node wait: true wait_condition: @@ -77,7 +77,7 @@ - name: wait node ready k8s_info: - context: admin@{{ talos_host.talos_cluster }} + context: "{{ talos_host.talos_cluster }}@admin" kind: Node wait: true wait_condition: |
