Compare commits

...

5 Commits

Author SHA1 Message Date
eball
77e4ea98b9 Update systemserver_deploy.yaml 2025-05-16 23:55:10 +08:00
eball
eb9358096a feat: add instrumentation to system-server 2025-05-16 22:18:24 +08:00
eball
9007cab339 Update auth_backend_deploy.yaml 2025-05-16 18:17:02 +08:00
eball
0f4e2d6ad7 Update auth_backend_deploy.yaml 2025-05-16 11:03:26 +08:00
eball
d298a2bf4e authelia: replace redis client pool of session provider 2025-05-16 00:12:53 +08:00
4 changed files with 22 additions and 6 deletions

View File

@@ -42,6 +42,6 @@ mirrorgooglecontainers/defaultbackend-amd64:1.4
projecthami/hami-webui-fe-oss:v1.0.5
projecthami/hami-webui-be-oss:v1.0.5
nvidia/dcgm-exporter:4.1.1-4.0.4-ubuntu22.04
ghcr.io/open-telemetry/opentelemetry-go-instrumentation/autoinstrumentation-go:v0.19.0-alpha
ghcr.io/open-telemetry/opentelemetry-go-instrumentation/autoinstrumentation-go:v0.20.0
bytetrade/autoinstrumentation-apache-httpd:1.0.4-fix1
ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-nodejs:0.40.0

View File

@@ -119,11 +119,12 @@ spec:
- name: OTEL_TRACES_SAMPLER_ARG
value: "1.0"
go:
image: ghcr.io/open-telemetry/opentelemetry-go-instrumentation/autoinstrumentation-go:v0.20.0
env:
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: http://jaeger-storage-instance-collector.os-system:4318
- name: OTEL_EXPORTER_OTLP_PROTOCOL
value: http/json
value: http/protobuf
- name: OTEL_TRACES_SAMPLER_ARG
value: "1.0"
resourceRequirements:

View File

@@ -41,13 +41,17 @@ spec:
metadata:
labels:
app: systemserver
annotations:
instrumentation.opentelemetry.io/go-container-names: system-server
instrumentation.opentelemetry.io/inject-go: olares-instrumentation
instrumentation.opentelemetry.io/otel-go-auto-target-exe: /system-server
spec:
serviceAccountName: bytetrade-sys-ops
serviceAccount: bytetrade-sys-ops
priorityClassName: "system-cluster-critical"
containers:
- name: system-server
image: beclab/system-server:0.1.21
image: beclab/system-server:0.1.22
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
@@ -319,4 +323,4 @@ metadata:
name: systemserver-proxy-configs
namespace: user-system-{{ .Values.bfl.username }}

View File

@@ -389,10 +389,21 @@ spec:
image: owncloudci/wait-for:latest
imagePullPolicy: IfNotPresent
name: check-redis
- name: setsysctl
image: 'busybox:1.28'
command:
- sh
- '-c'
- |
sysctl -w net.core.somaxconn=65535
sysctl -w net.ipv4.ip_local_port_range="1024 65535"
sysctl -w net.ipv4.tcp_tw_reuse=1
sysctl -w fs.file-max=1048576
securityContext:
privileged: true
containers:
- name: authelia
image: beclab/auth:0.2.4
image: beclab/auth:0.2.6
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9091