All Projects → NishkarshRaj → Docker-Kubernetes

NishkarshRaj / Docker-Kubernetes

Licence: MIT license
Basics of Docker and Kubernetes

Programming Languages

Dockerfile
14818 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Docker-Kubernetes

edge-home-orchestration-go
Home Edge Project in LF Edge - Edge Orchestration for home edge devices to enabling smart home use cases.
Stars: ✭ 68 (+277.78%)
Mutual labels:  orchestration, containerization
manager
The API endpoint that manages nebula orchestrator clusters
Stars: ✭ 28 (+55.56%)
Mutual labels:  orchestration-framework, orchestration
orchparty
Write your own orchestration config with a Ruby DSL that allows you to have mixins, imports and variables.
Stars: ✭ 37 (+105.56%)
Mutual labels:  orchestration-framework, orchestration
mcollective-choria
Distribution of plugins for MCollective as found in Puppet 6
Stars: ✭ 58 (+222.22%)
Mutual labels:  orchestration-framework, orchestration
bascomtask
Lightweight parallel Java tasks
Stars: ✭ 49 (+172.22%)
Mutual labels:  orchestration
amet
🐳 Containerized Development Environment
Stars: ✭ 13 (-27.78%)
Mutual labels:  containerization
fuseml
FuseML aims to provide an MLOps framework as the medium dynamically integrating together the AI/ML tools of your choice. It's an extensible tool built through collaboration, where Data Engineers and DevOps Engineers can come together and contribute with reusable integration code.
Stars: ✭ 73 (+305.56%)
Mutual labels:  orchestration
saisoku
Saisoku is a Python module that helps you build complex pipelines of batch file/directory transfer/sync jobs.
Stars: ✭ 40 (+122.22%)
Mutual labels:  orchestration-framework
generic-vnfm
Repository containing the source code of the generic VNFM
Stars: ✭ 17 (-5.56%)
Mutual labels:  orchestration
aws-tailor
AWS account provisioning and management service
Stars: ✭ 105 (+483.33%)
Mutual labels:  orchestration-framework
firewall-orchestrator
Network Security data repository for automation, reporting and compliance of firewall rules
Stars: ✭ 14 (-22.22%)
Mutual labels:  orchestration
orkestra
The elegance of Airflow + the power of AWS
Stars: ✭ 42 (+133.33%)
Mutual labels:  orchestration
PainlessDocker
Painless Docker book git repository.
Stars: ✭ 17 (-5.56%)
Mutual labels:  orchestration
esdc-ce
Danube Cloud :: Community Edition
Stars: ✭ 101 (+461.11%)
Mutual labels:  orchestration
kubecloud
Kubecloud is a multi-cloud container cloud management platform
Stars: ✭ 48 (+166.67%)
Mutual labels:  orchestration
FactoryOrchestrator
A cross-platform system service which provides a simple way to run and manage factory line validation, developer inner-loop, diagnostics, and fault analysis workflows.
Stars: ✭ 36 (+100%)
Mutual labels:  orchestration
home-server
Docker stuff for home server
Stars: ✭ 23 (+27.78%)
Mutual labels:  containerization
if1007
Desenvolvimento de Aplicações com Arquitetura Baseada em Microservices
Stars: ✭ 78 (+333.33%)
Mutual labels:  containerization
akk-stack
Containerized EverQuest Emulator Server Environment
Stars: ✭ 36 (+100%)
Mutual labels:  orchestration
depcharge
DepCharge is a tool designed to help orchestrate the execution of commands across many directories at once.
Stars: ✭ 23 (+27.78%)
Mutual labels:  orchestration

Basics of Containerization using Docker and Orchestration using Kubernetes

How to Collaborate:

  1. Fork the repository to your own GitHub account.

  2. Clone the repository to your local machine

$ git clone "https://www.github.com/{Username}/Docker-Kubernetes.git"

where username is your GitHub account username.

  1. Create a branch where you can do your local work. Never work on master branch as we do not allow master commits except by admins.
$ git branch {branchname}
$ git checkout branchname
  1. Do your work and stage your changes.
$ git add <filename>
  1. Commit you changes with a commit message containing your name, file(s) worked upon, changes added.
$ git commit -m "Name| files| Changes"
  1. Push changes to your forked repository
$ git push -u origin branchname

Synchronize forked repository with Upstream repository

  1. Create upstream as our repository
$ git remote add upstream "https://www.github.com/NishkarshRaj/Docker-Kubernetes.git"
  1. Fetch upstream changes in local machine
$ git fetch upstream
  1. Switch to master branch
$ git checkout master
  1. Merge changes in local machine
$ git merge upstream/master
  1. Push changes to your forked GitHub repository
$ git push -f origin master
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].