Skip to content

Commit 20d43aa

Browse files
authored
feat(openobserve): Add openobserve chat (#38163)
**Description** openobserve is a fast, scalable and cost-effective open source observability platform https://github.com/openobserve/openobserve **⚙️ Type of change** - [X] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** Deployed in my own cluster **📃 Notes:** **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ I increased versions for any altered app according to semantic versioning - [X] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [X] 🖼️ I have added an icon in the Chart's root directory called `icon.png`
1 parent 19e3f65 commit 20d43aa

File tree

8 files changed

+111
-0
lines changed

8 files changed

+111
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*~
18+
# Various IDEs
19+
.project
20+
.idea/
21+
*.tmproj
22+
.vscode/
23+
# OWNERS file for Kubernetes
24+
OWNERS
25+
# helm-docs templates
26+
*.gotmpl
27+
# docs folder
28+
/docs
29+
# icon
30+
icon.png
31+
icon.webp
32+
icon-small.webp
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
annotations:
2+
artifacthub.io/links: |-
3+
- name: support
4+
url: https://discord.com/invite/tVsPTHWTtr
5+
max_scale_version: 24.04.1
6+
min_scale_version: 24.04.0
7+
truecharts.org/category: inventory
8+
truecharts.org/max_helm_version: "3.17"
9+
truecharts.org/min_helm_version: "3.14"
10+
truecharts.org/train: incubator
11+
apiVersion: v2
12+
appVersion: 0.14.7
13+
dependencies:
14+
- name: common
15+
version: 28.15.1
16+
repository: oci://tccr.io/truecharts
17+
condition: ""
18+
alias: ""
19+
tags: []
20+
import-values: []
21+
deprecated: false
22+
description: Fast, scalable and cost-effective open source observability platform
23+
home: https://truecharts.org/charts/incubator/openobserve
24+
icon: https://truecharts.org/img/hotlink-ok/chart-icons/openobserve.webp
25+
keywords:
26+
- logs
27+
- metrics
28+
- traces
29+
- observability
30+
kubeVersion: ">=1.24.0-0"
31+
maintainers:
32+
- name: TrueCharts
33+
34+
url: https://truecharts.org
35+
name: openobserve
36+
sources:
37+
- https://github.com/openobserve/openobserve
38+
- https://github.com/truecharts/charts/tree/master/charts/incubator/openobserve
39+
type: application
40+
version: 0.1.1
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
title: README
3+
---
1.54 KB
Binary file not shown.
2.51 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{- include "tc.v1.common.lib.chart.notes" $ -}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ include "tc.v1.common.loader.all" . }}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
image:
2+
repository: public.ecr.aws/zinclabs/openobserve
3+
tag: v0.14.7@sha256:dbce3f9e7c96588f6bf8834f94adefe00228280b7fe7a294e9c44823665798ac
4+
pullPolicy: IfNotPresent
5+
6+
persistence:
7+
data:
8+
enabled: true
9+
mountPath: "/data"
10+
11+
workload:
12+
main:
13+
podSpec:
14+
containers:
15+
main:
16+
env:
17+
ZO_ROOT_USER_EMAIL: [email protected]
18+
ZO_ROOT_USER_PASSWORD: changeme
19+
ZO_DATA_DIR: /data
20+
ZO_WEB_URL: "https://logs.example.com"
21+
ZO_TELEMETRY: "false"
22+
probes:
23+
liveness:
24+
path: "/healthz"
25+
readiness:
26+
path: "/healthz"
27+
startup:
28+
path: "/healthz"
29+
30+
service:
31+
main:
32+
ports:
33+
main:
34+
port: 5080

0 commit comments

Comments
 (0)