summaryrefslogtreecommitdiffstats
path: root/sw_config/bmra/dockerhub_credentials/tasks/main.yml
blob: 5bc9b0ab5742ad2194f7c23bf7bbd331c361435d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# SPDX-FileCopyrightText: 2021 Anuket contributors
#
# SPDX-License-Identifier: Apache-2.0

---
- name: Add Docker hub credentials on target nodes
  docker_login:
    username: "{{ dhub_user }}"
    password: "{{ dhub_pass }}"
    email: "{{ dhub_email }}"
    registry_url: "{{ dhub_reg_url }}"
  no_log: True