Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions greptimedb/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash
kubectl create namespace greptimedb

helm repo add greptime https://greptimeteam.github.io/helm-charts/

helm repo update

# Installing GreptimeDB with default values
helm upgrade --install greptimedb-standalone greptime/greptimedb-standalone -n greptimedb
Binary file added greptimedb/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions greptimedb/manifest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: greptimedb
title: "GreptimeDB"
version: "v0.13.1"
maintainer: "[email protected]"
description: GreptimeDB is an open-source unified time-series database.
url: https://greptime.com/
category: database
11 changes: 11 additions & 0 deletions greptimedb/post_install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## GreptimeDB

GreptimeDB is an open-source unified time-series database for Metrics, Logs, and Events. You can gain real-time insights from Edge to Cloud at any scale.

### Get started

[GreptimeDB official website.](https://greptime.com/)

[GreptimeDB official documentation.](https://docs.greptime.com/)

For advanced configurations like object storage visit [Values.yaml](https://github.com/GreptimeTeam/helm-charts/blob/main/charts/greptimedb-standalone/values.yaml).
7 changes: 7 additions & 0 deletions greptimedb/uninstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

# Delete the GreptimeDB
helm uninstall greptimedb-standalone -n greptimedb

# Delete the namespace
kubectl delete namespace greptimedb