chore: updated k8s instructions (#5665)

Co-authored-by: Prashant Shahi <prashant@signoz.io>
This commit is contained in:
CheetoDa 2024-08-09 14:47:31 +05:30 committed by GitHub
parent 4489df6f39
commit a4878f6430
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
25 changed files with 705 additions and 223 deletions

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,47 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: aws
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{region}.signoz.cloud:443
otelInsecure: false
signozApiKey: <SIGNOZ_INGESTION_KEY>
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
resourceDetection:
detectors:
- eks
- system
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -5,17 +5,39 @@ Add the SigNoz Helm Chart repository
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
Install the Kubernetes Infrastructure chart provided by SigNoz &nbsp;
```bash
helm install my-release signoz/k8s-infra \ For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
--set otelInsecure=false \ ```yaml
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ global:
--set global.clusterName=<CLUSTER_NAME> cloud: others
clusterName: <CLUSTER_NAME>
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```

View File

@ -1,24 +1,43 @@
## Install otel-collector in your Kubernetes infra ### Install otel-collector in your Kubernetes infra
&nbsp;
Add the SigNoz Helm Chart repository Add the SigNoz Helm Chart repository
```bash ```bash
helm repo add signoz https://charts.signoz.io helm repo add signoz https://charts.signoz.io
``` ```
&nbsp; &nbsp;
If the chart is already present, update the chart to the latest using: If the chart is already present, update the chart to the latest using:
```bash ```bash
helm repo update helm repo update
``` ```
&nbsp; &nbsp;
Install the Kubernetes Infrastructure chart provided by SigNoz For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
```bash
helm install my-release signoz/k8s-infra \ ```yaml
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \ global:
--set otelInsecure=false \ cloud: others
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \ clusterName: <CLUSTER_NAME>
--set global.clusterName=<CLUSTER_NAME> deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
otelInsecure: false
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
presets:
otlpExporter:
enabled: true
loggingExporter:
enabled: false
``` ```
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster. - Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
&nbsp;
To install the k8s-infra chart with the above configuration, run the following command:
```bash
helm install my-release signoz/k8s-infra -f override-values.yaml
```