Created
April 20, 2026 11:07
-
-
Save thojkooi/7a33af2f4efbaa5b63ec0097629adb07 to your computer and use it in GitHub Desktop.
signoz-traefik
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: signoz | |
| --- | |
| apiVersion: source.toolkit.fluxcd.io/v1 | |
| kind: HelmRepository | |
| metadata: | |
| name: signoz | |
| namespace: signoz | |
| spec: | |
| interval: 160m | |
| url: https://charts.signoz.io | |
| --- | |
| apiVersion: helm.toolkit.fluxcd.io/v2 | |
| kind: HelmRelease | |
| metadata: | |
| name: signoz | |
| namespace: signoz | |
| spec: | |
| releaseName: signoz | |
| chart: | |
| spec: | |
| chart: signoz | |
| # version: 9.4.5 | |
| sourceRef: | |
| kind: HelmRepository | |
| name: signoz | |
| namespace: signoz | |
| interval: 30m | |
| values: | |
| global: | |
| storageClass: tc-block | |
| clickhouse: | |
| installCustomStorageClass: true | |
| signoz: | |
| persistence: | |
| size: 1Gi | |
| ingress: | |
| annotations: | |
| cert-manager.io/cluster-issuer: letsencrypt-prod | |
| traefik.ingress.kubernetes.io/router.middlewares: traefik-global-ip-allowlist@kubernetescrd,traefik-redirect-to-https@kubernetescrd | |
| className: "traefik" | |
| enabled: true | |
| hosts: | |
| - host: <signoz.hostname> | |
| paths: | |
| - path: / | |
| pathType: ImplementationSpecific | |
| port: 8080 | |
| tls: | |
| - secretName: signoz-tls | |
| hosts: | |
| - <signoz.hostname> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment