This signoz image is being used in signoz stateful...
# support
m
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
n
Hey @M Q could you please tell us the specific reason why you want to build your own image
m
@Nagesh Bansal, i would like to verify the changes which i have made in the frontend of that is reflecting or not with complete setup, thats the reason i would like to build my own image and replace it in statefull set
n
Hey @M Q please take a look at the makefile in signoz/signoz repo https://github.com/SigNoz/signoz/blob/6821efeb999a87fecea5eafa819014cbe26731a0/Makefile#L145
You can use the docker commands to build your image
m
Could you please help me with the docker file in github which will create this image
seems like this image is a combination of frontend and query service
n
You can find the path of the docker files as variables in the make file
m
a
@M Q were you able to create the custom docker image?