https://github.com/marella/pwk
Sample scripts and manifests for playing with Kubernetes.
https://github.com/marella/pwk
Last synced: 12 months ago
JSON representation
Sample scripts and manifests for playing with Kubernetes.
- Host: GitHub
- URL: https://github.com/marella/pwk
- Owner: marella
- Created: 2020-12-08T10:32:41.000Z (over 5 years ago)
- Default Branch: latest
- Last Pushed: 2021-06-24T15:27:18.000Z (almost 5 years ago)
- Last Synced: 2025-03-31T07:42:08.322Z (about 1 year ago)
- Language: Shell
- Homepage: https://labs.play-with-k8s.com
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Sample scripts and manifests for playing with Kubernetes.
## Installation
```sh
curl -sL https://file.marella.me/pwk/latest/install.sh | bash
```
## Usage
Initialize cluster and follow instructions to add worker nodes:
```sh
kube init
```
Create resources using a configuration file:
```sh
kube up https://file.marella.me/pwk/latest/echo.yaml
```
Delete resources using a configuration file:
```sh
kube down https://file.marella.me/pwk/latest/echo.yaml
```
Run `kubectl` commands:
```sh
kube get all
```