https://github.com/maguowei/kube-stack
Kubernetes Stack for Development Environment
https://github.com/maguowei/kube-stack
elastic-stack k8s kube-stack kubernetes
Last synced: 11 months ago
JSON representation
Kubernetes Stack for Development Environment
- Host: GitHub
- URL: https://github.com/maguowei/kube-stack
- Owner: maguowei
- License: mit
- Created: 2018-09-06T15:09:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-03T09:34:19.000Z (over 1 year ago)
- Last Synced: 2025-03-17T22:18:49.554Z (12 months ago)
- Topics: elastic-stack, k8s, kube-stack, kubernetes
- Homepage:
- Size: 180 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kubernetes Stack
```text
.
├── LICENSE
├── README.md
├── chrome
│ ├── README.md
│ ├── deployment.yaml
│ └── service.yaml
├── clickhouse
│ ├── deployment.yaml
│ ├── pvc.yaml
│ └── service.yaml
├── elastic
│ ├── README.md
│ ├── elasticsearch
│ │ ├── README.md
│ │ ├── deployment.yaml
│ │ ├── pvc.yaml
│ │ └── service.yaml
│ ├── filebeat
│ │ ├── README.md
│ │ ├── cinfigmap.yaml
│ │ ├── daemonset.yaml
│ │ └── pvc.yaml
│ └── kibana
│ ├── configmap.yaml
│ ├── deployment.yaml
│ ├── secret.yaml
│ └── service.yaml
├── etcd
│ ├── README.md
│ ├── deployment.yaml
│ └── service.yaml
├── grafana
│ ├── configmap.yaml
│ ├── deployment.yaml
│ ├── pvc.yaml
│ ├── secret.yaml
│ └── service.yaml
├── jaeger
│ ├── README.md
│ ├── agent-daemonset.yaml
│ ├── collector-deployment.yaml
│ ├── collector-service.yaml
│ ├── example
│ │ ├── hotrod-deployment.yaml
│ │ ├── hotrod-service.yaml
│ │ └── ingress.yaml
│ ├── query-deployment.yaml
│ ├── query-service.yaml
│ ├── spark-dependencies
│ │ └── jaeger-spark-dependencies-cronjob.yaml
│ └── storage-configmap.yaml
├── loki
│ ├── deployment.yaml
│ ├── promtail
│ │ ├── configmap.yaml
│ │ └── daemonset.yaml
│ └── service.yaml
├── minio
│ ├── deployment.yaml
│ ├── pvc.yaml
│ ├── secret.yaml
│ └── service.yaml
├── mitmporxy
│ ├── README.md
│ ├── mitmproxy.yaml
│ └── service.yaml
├── mysql
│ ├── README.md
│ ├── configmap.yaml
│ ├── deployment.yaml
│ ├── mysqld-exporter.yaml
│ ├── pvc.yaml
│ ├── secret.yaml
│ └── service.yaml
├── nats
│ ├── deployment.yaml
│ └── service.yaml
├── postgres
│ ├── deployment.yaml
│ ├── pvc.yaml
│ ├── secret.yaml
│ └── service.yaml
├── prometheus
│ ├── README.md
│ ├── configmap.yaml
│ ├── deployment.yaml
│ ├── node-exporter
│ │ └── node-exporter-daemonset.yaml
│ ├── pvc.yaml
│ ├── rbac.yml
│ └── service.yaml
├── pulsar
│ ├── README.md
│ ├── deployment.yaml
│ ├── pulsar-manager-deployment.yaml
│ ├── pvc.yaml
│ └── service.yaml
├── pyroscope
│ ├── README.md
│ ├── deployment.yaml
│ └── service.yaml
├── redis
│ ├── README.md
│ ├── deployment.yaml
│ ├── pvc.yaml
│ ├── redis-exporter.yaml
│ ├── redisinsight
│ │ ├── README.md
│ │ ├── deployment.yaml
│ │ └── service.yaml
│ └── service.yaml
└── superset
├── README.md
├── configmap.yaml
├── deployment.yaml
├── pvc.yaml
└── service.yaml
```