https://github.com/lapostoj/k8s-practice
Setup and files from playing locally with Kubernetes
https://github.com/lapostoj/k8s-practice
k8s kubernetes minikube
Last synced: about 2 months ago
JSON representation
Setup and files from playing locally with Kubernetes
- Host: GitHub
- URL: https://github.com/lapostoj/k8s-practice
- Owner: lapostoj
- Created: 2019-06-02T12:14:59.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2021-02-01T00:44:28.000Z (over 4 years ago)
- Last Synced: 2025-02-08T13:11:35.237Z (3 months ago)
- Topics: k8s, kubernetes, minikube
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# k8s Practice (Kubernetes Practice)
Author: lapostoj
Contact: [email protected]
## Description
Small project to keep trace of the configuration files created for experiments made with _Kubernetes_.
## Technology
- [Kubernetes](https://kubernetes.io/docs/home/)
- [Minikube](https://kubernetes.io/docs/setup/minikube/)## How To Use
### Setup For MasOSX
Install _Minikube_
```bash
brew cask install minikube
```Create a cluster with
```bash
minikube start --vm-driver=hyperkit
```Using _hyperkit_ seems overall lighter than having to install _VirtualBox_ as well.
Validate that your _kubectl_ config was updated correctly by running
```bash
❯ kubectl config current-context
minikube
```You can validate further the state of the cluster, and also keep an eye on what you create in it thanks to the _Kubernetes_ dashboard by running
```bash
minikube dashboard
```