https://github.com/streamdal/plumber-helm
helm chart plumber
https://github.com/streamdal/plumber-helm
Last synced: 2 months ago
JSON representation
helm chart plumber
- Host: GitHub
- URL: https://github.com/streamdal/plumber-helm
- Owner: streamdal
- Created: 2022-02-08T19:36:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T20:31:13.000Z (about 2 years ago)
- Last Synced: 2025-10-25T20:56:16.924Z (6 months ago)
- Language: Smarty
- Size: 535 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Test Run
```
helm install --dry-run --debug ./plumber-cluster --generate-name
helm install --debug ./plumber-cluster --generate-name
```
### Deploy from repo
#### Cluster mode
```
helm repo add batch https://streamdal.github.io/plumber-helm
helm repo update
helm show values batch/plumber-cluster > values.yaml
helm install -f values.yaml plumber batch/plumber-cluster
```
#### Standalone
```
helm repo add batch https://streamdal.github.io/plumber-helm
helm repo update
helm show values batch/plumber-standalone > values.yaml
helm install -f values.yaml plumber batch/plumber-standalone
```
### Connect to plumber server standalone
```
kubectl port-forward service/plumber-plumber-standalone 9090:9090
```
### Connect to plumber server cluster
```
kubectl --namespace default port-forward svc/plumber-plumber-cluster 9090:9090
```
##### WASM Beta
```
git checkout plumber/wasm
cd plumber-helm
helm install -f wasm-beta-values.yaml plumber-wasm-ha ./plumber-cluster
kubectl port-forward svc/plumber-wasm-ha-plumber-cluster 9191:9191
```