From a00be1f31a8cfab8f646302f2aed205c92ac6b01 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Tue, 6 Nov 2018 13:15:34 +0100 Subject: [PATCH] OSBS: Fix the name of the token variable Signed-off-by: Clement Verna --- playbooks/groups/osbs-cluster.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/groups/osbs-cluster.yml b/playbooks/groups/osbs-cluster.yml index e63ab5c1b9..248571bf26 100644 --- a/playbooks/groups/osbs-cluster.yml +++ b/playbooks/groups/osbs-cluster.yml @@ -433,11 +433,11 @@ tasks: - name: get orchestrator service account token command: "oc -n {{ osbs_worker_namespace }} sa get-token orchestrator" - register: orchestator-token-aarch64 + register: orchestator_token_aarch64 - name: save the token locally local_action: > copy - content="{{ orchestator-token-aarch64.stdout }}" + content="{{ orchestator_token_aarch64.stdout }}" dest=/tmp/.orchestator-token-aarch64 mode=0400