This signoz image is being used in signoz statefull-set in k8 as per the documentation
docker.io/signoz/signoz:v0.82.1,
The is no inforation in the documentation or anywhere in the internet that How i can build this image using this git repo "git clone -b v0.82.1
https://github.com/SigNoz/signoz.git"
I have tried multiple ways but no luck
Example:
git clone -b v0.82.1
https://github.com/SigNoz/signoz.git
cd signoz/frontend
yarn install
yarn build
# Build Docker image
docker build -t your-repo/signoz-frontend:custom -f Dockerfile .
docker push your-repo/signoz-frontend:custom
Need guidance here i can build the signoz image which can run after i replace in this container :
containers:
- name: signoz
image:
docker.io/signoz/signoz:v0.82.1
args:
- '--cluster'
- $(CLICKHOUSE_CLUSTER)
ports:
- name: http
containerPort: 8080
protocol: TCP
- name: http-internal
containerPort: 8085
protocol: TCP
- name: opamp-internal
containerPort: 4320
protocol: TCP
env:
- name: CLICKHOUSE_HOST
value: signoz-clickhouse
- name: CLICKHOUSE_PORT
value: '9000'
- name: CLICKHOUSE_HTTP_PORT
value: '8123'
- name: CLICKHOUSE_CLUSTER
value: cluster
- name: CLICKHOUSE_USER
value: admin
- name: CLICKHOUSE_PASSWORD
value: 27ff0399-0d3a-4bd8-919d-17c2181e6fb9
- name: CLICKHOUSE_SECURE
value: 'false'
- name: STORAGE
value: clickhouse
- name: ClickHouseUrl
value: >-
tcp://signoz-clickhouse:9000/?username=admin&password=27ff0399-0d3a-4bd8-919d-17c2181e6fb9
- name: GODEBUG
value: netdns=go
- name: TELEMETRY_ENABLED
value: 'true'
- name: DEPLOYMENT_TYPE
value: kubernetes-helm
- name: SIGNOZ_ALERTMANAGER_PROVIDER
value: signoz
resources:
requests:
cpu: 100m
memory: 100Mi