Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/computate-org/computate_project_openshift
https://github.com/computate-org/computate_project_openshift
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_project_openshift
- Owner: computate-org
- Created: 2021-11-02T21:20:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-10T23:09:41.000Z (over 2 years ago)
- Last Synced: 2024-11-05T15:38:42.506Z (2 months ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install a computate application to OpenShift
## Install the latest Python and setup a new Python virtualenv
```bash
sudo yum install -y git python3 python3-pip python3-virtualenv python3-libselinux python3-libsemanage python3-policycoreutils
virtualenv-3 ~/python
source ~/python/bin/activate
echo "source ~/python/bin/activate" | tee -a ~/.bashrc
```## Install the latest Ansible
```bash
pip install setuptools_rust wheel
pip install --upgrade pip
pip install ansible selinux setools
```## Install the OpenShift application ansible role
### Create a directory for the ansible role.
```bash
install -d ~/.ansible/roles/computate.computate_project_openshift
```### Clone the OpenShift application ansible role.
```bash
git clone [email protected]:computate-org/computate_project_openshift.git ~/.ansible/roles/computate.computate_project_openshift
```