From d098bf0901274ed42e59df89940dcf2363d6494d Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Wed, 4 Nov 2020 07:02:08 -0700 Subject: [PATCH] Capture collection requirements Create a requirements.yml that has both roles and collections expressed. Change-Id: I30073798eb475fa3c5aaad3066556a56b8b0c272 --- tripleo_ansible/requirements.yml | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tripleo_ansible/requirements.yml diff --git a/tripleo_ansible/requirements.yml b/tripleo_ansible/requirements.yml new file mode 100644 index 000000000..a57605c6a --- /dev/null +++ b/tripleo_ansible/requirements.yml @@ -0,0 +1,36 @@ +--- +# Copyright 2020 Red Hat, Inc. +# All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +roles: + - name: openstack-operations + scm: git + src: https://opendev.org/openstack/ansible-role-openstack-operations + version: master + trackbranch: master + + # ansible-config_template action plugin + - name: config_template + scm: git + src: https://opendev.org/openstack/ansible-config_template + version: master + trackbranch: master + +collections: + - ansible.netcommon + - ansible.posix + - community.general + - openstack.cloud + - containers.podman