Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niqdev/devops
DevOps
https://github.com/niqdev/devops
ansible cassandra docker hadoop kafka kubernetes mapreduce oozie spark vagrant zeppelin zookeeper
Last synced: 6 days ago
JSON representation
DevOps
- Host: GitHub
- URL: https://github.com/niqdev/devops
- Owner: niqdev
- Created: 2017-11-29T18:47:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-15T21:31:26.000Z (over 1 year ago)
- Last Synced: 2023-02-27T03:16:46.036Z (over 1 year ago)
- Topics: ansible, cassandra, docker, hadoop, kafka, kubernetes, mapreduce, oozie, spark, vagrant, zeppelin, zookeeper
- Language: Shell
- Homepage: https://niqdev.github.io/devops
- Size: 9.18 MB
- Stars: 42
- Watchers: 2
- Forks: 18
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DevOps
[![github-pages](https://github.com/niqdev/devops/actions/workflows/gh-pages.yml/badge.svg)](https://github.com/niqdev/devops/actions/workflows/gh-pages.yml)
A collection of notes, resources, documentation and POCs mainly related to distributed systems for local development, learning purposes and quick prototyping.
* [Linux](https://niqdev.github.io/devops/linux)
* [Docker](https://niqdev.github.io/devops/docker)
* [Ansible](https://niqdev.github.io/devops/ansible)
* [Cassandra](https://niqdev.github.io/devops/cassandra)
* [ZooKeeper](https://niqdev.github.io/devops/zookeeper)
* [Kafka](https://niqdev.github.io/devops/kafka)
* [Hadoop](https://niqdev.github.io/devops/hadoop)
* [HDFS and MapReduce](https://niqdev.github.io/devops/hadoop/#hdfs-and-mapreduce)
* [Spark](https://niqdev.github.io/devops/hadoop/#spark)
* [Zeppelin](https://niqdev.github.io/devops/hadoop/#zeppelin)
* [Oozie](https://niqdev.github.io/devops/hadoop/#oozie)
* [Cloud](https://niqdev.github.io/devops/cloud)
* [Kubernetes](https://niqdev.github.io/devops/kubernetes)
* [System Design](https://niqdev.github.io/devops/system-design)
* [Operating System](https://niqdev.github.io/devops/operating-system)
* [Programming](https://niqdev.github.io/devops/programming)
* [Other Resources](https://niqdev.github.io/devops/other-resources)
* [Toolbox](https://niqdev.github.io/devops/toolbox)## Development
Ubuntu
```bash
# install pip3
sudo apt install -y python3-pip# install virtualenv globally
sudo pip3 install virtualenv# create virtualenv
virtualenv -p $(which python3) venv# how-to activate virtualenv
source venv/bin/activate# verify virtualenv
which python
python --version# how-to deactivate virtualenv
deactivate# install new package
pip install mkdocs# update requirements
pip freeze > requirements.txt# run locally
# http://localhost:8000
mkdocs serve
```