From 5ac0970c582c0cc7a4b82f38a2279943a39fbc2f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Fri, 21 Feb 2020 00:46:35 +0100 Subject: [PATCH] upgrade to molecule v3 --- .drone.jsonnet | 10 +++++----- .drone.yml | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 4597c14..489cc6c 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -8,7 +8,7 @@ local PipelineLinting = { steps: [ { name: 'ansible-later', - image: 'xoxys/ansible-later:latest', + image: 'xoxys/ansible-later', commands: [ 'ansible-later', ], @@ -36,10 +36,10 @@ local PipelineDeployment(scenario='centos7') = { steps: [ { name: 'ansible-molecule', - image: 'xoxys/molecule:latest', + image: 'xoxys/molecule:3', + pull: 'always', environment: { DO_API_KEY: { from_secret: 'do_api_key' }, - USER: 'root', MOLECULE_CUSTOM_MODULES_REPO: 'https://gitea.rknet.org/ansible/custom_modules', MOLECULE_CUSTOM_FILTERS_REPO: 'https://gitea.rknet.org/ansible/custom_filters', }, @@ -66,7 +66,7 @@ local PipelineDocumentation = { steps: [ { name: 'generate', - image: 'xoxys/ansible-doctor:latest', + image: 'xoxys/ansible-doctor', environment: { ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO', ANSIBLE_DOCTOR_FORCE_OVERWRITE: true, @@ -78,7 +78,7 @@ local PipelineDocumentation = { }, { name: 'publish', - image: 'plugins/gh-pages:latest', + image: 'plugins/gh-pages', settings: { remote_url: 'https://gitea.rknet.org/ansible/xoxys.matrix', netrc_machine: 'gitea.rknet.org', diff --git a/.drone.yml b/.drone.yml index 59e5b99..076bd6a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ platform: steps: - name: ansible-later - image: xoxys/ansible-later:latest + image: xoxys/ansible-later commands: - ansible-later @@ -28,7 +28,7 @@ platform: steps: - name: generate - image: xoxys/ansible-doctor:latest + image: xoxys/ansible-doctor environment: ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/ ANSIBLE_DOCTOR_FORCE_OVERWRITE: true @@ -38,7 +38,7 @@ steps: ANSIBLE_DOCTOR_TEMPLATE: hugo-book - name: publish - image: plugins/gh-pages:latest + image: plugins/gh-pages settings: netrc_machine: gitea.rknet.org pages_directory: _docs/ @@ -109,6 +109,6 @@ depends_on: --- kind: signature -hmac: 4ca4268f7e44edd762e17d2075c0b2bb354e68e16db8eb85f8798e38b2a6d817 +hmac: e5a7d0b257a8f61451ca138ece2c2431100e912e8c40c15a2bdccc20c9f1a438 ...