Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sgaunet/kubetrainer
https://github.com/sgaunet/kubetrainer
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sgaunet/kubetrainer
- Owner: sgaunet
- License: mit
- Created: 2023-10-20T19:44:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-02T11:35:07.000Z (5 months ago)
- Last Synced: 2024-08-02T13:04:00.628Z (5 months ago)
- Language: Go
- Size: 754 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![GitHub release](https://img.shields.io/github/release/sgaunet/kubetrainer.svg)](https://github.com/sgaunet/kubetrainer/releases/latest)
[![Go Report Card](https://goreportcard.com/badge/github.com/sgaunet/kubetrainer)](https://goreportcard.com/report/github.com/sgaunet/kubetrainer)
![GitHub Downloads](https://img.shields.io/github/downloads/sgaunet/kubetrainer/total)This project will try to guide you to get a local kubernetes environment in order to:
* learn
* try
* break
* retry
* ...This project is tested under Linux for the moment.
* You have to install docker
* and [kind](https://kind.sigs.k8s.io/)
* and [task](https://taskfile.dev/)Done ?
Ok, let's begin by creating the cluster.
## Create the kubernetes cluster
```bash
$ cd DOCS/00-KIND
$ task create-cluster
task: [create-cluster] kind create cluster --config kind-config.yaml
Creating cluster "kind" ...
...
```## Connect to the cluster
```bash
$ kubectl cluster-info --context kind-kind # execute this command to be able to contact the kubernetes cluster
```What should I do now ?
Follow tutorials in the [DOCS](DOCS) directory.