mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 08:04:10 +00:00
* chore: ♿️ add hotrod template and scripts Signed-off-by: Prashant Shahi <prashant@signoz.io> * refactor: ✨ conditionally compute image Signed-off-by: Prashant Shahi <prashant@signoz.io> * fix: 🩹 add signoz namespace Signed-off-by: Prashant Shahi <prashant@signoz.io> * chore: 🔨 fix namespace template in scripts Signed-off-by: Prashant Shahi <prashant@signoz.io> * docs(hotrod): 📝 Add README for hotrod k8s Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Ankit Nayan <ankit@signoz.io>
28 lines
878 B
Markdown
28 lines
878 B
Markdown
# HotROD Sample Application (Kubernetes)
|
|
|
|
Follow the steps in this section to install a sample application named HotR.O.D, and generate tracing data.
|
|
|
|
```console
|
|
kubectl create ns sample-application
|
|
|
|
kubectl -n sample-application apply -f https://github.com/SigNoz/signoz/raw/main/sample-apps/hotrod/hotrod.yaml
|
|
```
|
|
|
|
In case, you have installed SigNoz in namespace other than `platform` or selected Helm release name other than `my-release`, follow the steps below:
|
|
|
|
```console
|
|
export HELM_RELEASE=my-release-2
|
|
export SIGNOZ_NAMESPACE=platform-2
|
|
export HOTROD_NAMESPACE=sample-application-2
|
|
|
|
curl -sL https://github.com/SigNoz/signoz/raw/main/sample-apps/hotrod/hotrod-install.sh | bash
|
|
```
|
|
|
|
To delete sample application:
|
|
|
|
```console
|
|
export HOTROD_NAMESPACE=sample-application-2
|
|
|
|
curl -sL https://github.com/SigNoz/signoz/raw/main/sample-apps/hotrod/hotrod-delete.sh | bash
|
|
```
|