Align docker install role with airshipctl

airshipctl is using upstream ensure-docker role instead of
docker-install. correcting this in treasuremap

Signed-off-by: Sreejith Punnapuzha <Sreejith.Punnapuzha@outlook.com>
Change-Id: Ideea1d9f641d6abad1d9f7c37698f7c09f778fce
This commit is contained in:
Sreejith Punnapuzha 2021-11-04 15:25:51 +00:00
parent e55e960caf
commit 5afbb354d5
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@
- name: docker install
include_role:
name: docker-install
name: ensure-docker
- name: install kustomize
include_role:

View File

@ -12,4 +12,4 @@
- hosts: all
roles:
- docker-install
- ensure-docker

View File

@ -20,7 +20,7 @@ pkg_check() {
done
}
pkg_check software-properties-common curl wget ca-certificates docker.io make
pkg_check software-properties-common curl wget ca-certificates make
: ${AIRSHIPCTL_PROJECT:="../airshipctl"}

View File

@ -35,7 +35,7 @@ envsubst <"${AIRSHIPCTL_WS}/tools/gate/config_template.yaml" > "$PLAYBOOK_CONFIG
# use new version of ansible, Ubuntu has old one
sudo apt update
sudo DEBIAN_FRONTEND=noninteractive apt -y install software-properties-common python3-pip curl wget ca-certificates
sudo DEBIAN_FRONTEND=noninteractive apt -y --no-install-recommends install docker.io make
sudo DEBIAN_FRONTEND=noninteractive apt -y --no-install-recommends install make
PACKAGES="ansible netaddr"
if [[ -z "${http_proxy}" ]]; then