Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Devops Exercises | 43,402 | 4 days ago | 21 | other | Python | |||||
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions | ||||||||||
90daysofdevops | 22,706 | 5 days ago | 1 | May 10, 2022 | 5 | other | Shell | |||
I am using this repository to document my journey learning about DevOps. I began this process on January 1, 2022, and plan to continue until March 31. I will be dedicating one hour each day, including weekends, to gaining a foundational understanding of the various aspects of DevOps. This will be a 90-day intensive study period. 2022 & 2023 inc. | ||||||||||
Kubespray | 13,965 | 12 hours ago | 164 | apache-2.0 | Jinja | |||||
Deploy a Production Ready Kubernetes Cluster | ||||||||||
Kubeasz | 9,118 | 16 hours ago | 11 | April 25, 2021 | 14 | apache-2.0 | Shell | |||
使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | ||||||||||
Homelab | 6,880 | 6 days ago | 18 | gpl-3.0 | Go | |||||
Modern self-hosting framework, fully automated from empty disk to operating services with a single command. | ||||||||||
Devops Guide | 6,779 | 3 months ago | 5 | mit | HTML | |||||
DevOps Guide - Development to Production all configurations with basic notes to debug efficiently. | ||||||||||
Ansible For Devops | 6,699 | 3 months ago | 90 | mit | Python | |||||
Ansible for DevOps examples. | ||||||||||
Kubeoperator | 4,651 | a month ago | 37 | apache-2.0 | Go | |||||
KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。 | ||||||||||
Litmus | 3,682 | 1 | a day ago | 7 | April 25, 2021 | 314 | apache-2.0 | HTML | ||
Litmus helps SREs and developers practice chaos engineering in a Cloud-native way. Chaos experiments are published at the ChaosHub (https://hub.litmuschaos.io). Community notes is at https://hackmd.io/a4Zu_sH4TZGeih-xCimi3Q | ||||||||||
Opendevops | 3,367 | 3 months ago | 67 | gpl-3.0 | Python | |||||
CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台 |
Author: https://github.com/itwars
Build a Kubernetes cluster using Ansible with k3s. The goal is easily install a Kubernetes cluster on machines running:
on processor architecture:
Deployment environment must have Ansible 2.4.0+ Master and nodes must have passwordless SSH access
First create a new directory based on the sample
directory within the inventory
directory:
cp -R inventory/sample inventory/my-cluster
Second, edit inventory/my-cluster/hosts.ini
to match the system information gathered above. For example:
[master]
192.16.35.12
[node]
192.16.35.[10:11]
[k3s_cluster:children]
master
node
If needed, you can also edit inventory/my-cluster/group_vars/all.yml
to match your environment.
Start provisioning of the cluster using the following command:
ansible-playbook site.yml -i inventory/my-cluster/hosts.ini
To get access to your Kubernetes cluster just
scp [email protected]_ip:~/.kube/config ~/.kube/config