File tree 10 files changed +441
-431
lines changed
10 files changed +441
-431
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ RUN npm config set fetch-timeout 3600000
5
5
RUN npm clean-install
6
6
RUN export NODE_OPTIONS=--max-old-space-size=4096 && npm run build
7
7
8
- FROM golang:1.20.7 as api
8
+ FROM golang:1.22.0 as api
9
9
WORKDIR /kobs
10
10
COPY go.mod go.sum /kobs/
11
11
RUN go mod download
12
12
COPY . .
13
13
RUN export CGO_ENABLED=0 && make build
14
14
15
- FROM alpine:3.18.2
15
+ FROM alpine:3.19.1
16
16
RUN apk update && apk add --no-cache ca-certificates
17
17
RUN mkdir /kobs
18
18
COPY --from=api /kobs/bin/kobs /kobs
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : kobs
3
3
description : Kubernetes Observability Platform
4
4
type : application
5
- version : 0.3.1
5
+ version : 0.4.0
6
6
appVersion : v0.12.0
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ config:
32
32
tracer:
33
33
enabled: false
34
34
service: hub
35
- provider: jaeger
36
- address: http:// localhost:14268/api/traces
35
+ provider: otlp
36
+ address: localhost:4317
37
37
38
38
## kobs requires a MongoDB database to store the collected data. The following configuration can be used to
39
39
## install a MongoDB database using the Bitnami Helm chart:
@@ -104,8 +104,8 @@ config:
104
104
tracer:
105
105
enabled: false
106
106
service: watcher
107
- provider: jaeger
108
- address: http:// localhost:14268/api/traces
107
+ provider: otlp
108
+ address: localhost:4317
109
109
110
110
## kobs requires a MongoDB database to store the collected data. The following configuration can be used to
111
111
## install a MongoDB database using the Bitnami Helm chart:
@@ -133,8 +133,8 @@ config:
133
133
tracer:
134
134
enabled: false
135
135
service: cluster
136
- provider: jaeger
137
- address: http:// localhost:14268/api/traces
136
+ provider: otlp
137
+ address: localhost:4317
138
138
139
139
kubernetes:
140
140
provider:
Original file line number Diff line number Diff line change 21
21
tracer:
22
22
enabled: false
23
23
service: cluster
24
- provider: jaeger
25
- address: http:// localhost:14268/api/traces
24
+ provider: otlp
25
+ address: localhost:4317
26
26
27
27
kubernetes:
28
28
provider:
Original file line number Diff line number Diff line change 21
21
tracer:
22
22
enabled: false
23
23
service: hub
24
- provider: jaeger
25
- address: http:// localhost:14268/api/traces
24
+ provider: otlp
25
+ address: localhost:4317
26
26
27
27
## kobs requires a MongoDB database to store the collected data. The following configuration can be used to
28
28
## install a MongoDB database using the Bitnami Helm chart:
Original file line number Diff line number Diff line change 21
21
tracer:
22
22
enabled: false
23
23
service: watcher
24
- provider: jaeger
25
- address: http:// localhost:14268/api/traces
24
+ provider: otlp
25
+ address: localhost:4317
26
26
27
- ## kobs requires a MongoDB database to store the collected data. The following configuration can be used to
28
27
## install a MongoDB database using the Bitnami Helm chart:
29
28
##
30
29
## helm install mongodb oci://registry-1.docker.io/bitnamicharts/mongodb --set auth.rootPassword=changeme
You can’t perform that action at this time.
0 commit comments