123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # Copyright 2020 Dell Inc. or its subsidiaries. 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.
- ---
- # vars file for common
- # Usage: package_installation.yml
- common_packages:
- - epel-release
- - yum-utils
- - git
- - gcc
- - gcc-c++
- - nodejs
- - device-mapper-persistent-data
- - bzip2
- - python3-pip
- - nano
- - lvm2
- - gettext
- # Usage: pre_requisite.yml
- internet_delay: 0
- internet_timeout: 1
- hostname: github.com
- port_no: 22
- os_name: CentOS
- os_version: '8'
- internet_status: "Failed:No Internet connection.Connect to Internet."
- os_status: "Unsupported OS or OS version.OS must be {{ os_name }} and Version must be {{ os_version }} or more"
- selinux_status: "SElinux is not disabled. Disable it in /etc/sysconfig/selinux and reboot the system"
- # Usage: docker_installation.yml
- docker_repo_url: https://download.docker.com/linux/centos/docker-ce.repo
- docker_repo_dest: /etc/yum.repos.d/docker-ce.repo
- success: '0'
- container_type: docker
- container_repo_install: docker-ce
- docker_compose: docker-compose
- daemon_dest: /etc/docker/
- # Usage: docker_volume.yml
- docker_volume_name: omnia-storage
|