init repo

This commit is contained in:
Sun-ZhenXing
2026-02-16 09:12:50 +08:00
commit 3360ca01a2
71 changed files with 1934 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# ClickHouse
## Introduction
ClickHouse is an open-source column-oriented database management system for online analytical processing (OLAP).
## Installation
To install ClickHouse, run:
```bash
make install
```
## Usage
After installation, verify the deployment:
```bash
kubectl get pods -n clickhouse
```
To connect to ClickHouse:
```bash
kubectl -n clickhouse exec -it chi-clickhouse-clickhouse-0-0-0 -- clickhouse-client
```
Or use port forwarding:
```bash
kubectl -n clickhouse port-forward services/clickhouse 9000:9000
```
**Note**: Please change the default password in production environments.