Hi there, I'm currently using SigNoz for a POC wit...
# support
n
Hi there, I'm currently using SigNoz for a POC with a Kubernetes cluster. I installed SigNoz using Helm chart version
0.78.0
, but I'm unable to add or invite my teammates. Is there any known restriction or limitation regarding user invitations in this version? Thanks in advance for your help!
n
There is no restriction, Please share what issue you are facing with some screenshots/errors ?
n
After installing SigNoz on a Kubernetes cluster using the Helm chart from ArtifactHub, I attempted to register as the admin. However, it didn’t grant admin access and showed an error message saying "Contact admin." I tried twice, and on the third attempt, it allowed me to log in—but only as a regular user, I believe.
@nitya-signoz
n
That shouldn’t happen. Try checking if all your pods are in running state. Also you can delete the PVC of signoz pod and try again ?
n
We're running SigNoz v0.81.0 in a Kubernetes cluster. When accessing the SigNoz UI via
kubectl port-forward from signoz service
, login and all functionality work as expected. However, when accessing it via Ingress using a custom domain, the following issues occur: • UI loads, but login sometimes fails or behaves inconsistently. • After login, i can see something wend wrong page and missing the invite-team-members PAGE or tab but i can see it when i port-forward from service
Copy code
Here's my helm values yaml
global:
storageClass: "${storage_class_name}" clickhouse: zookeeper: replicaCount: 2 resources: requests: memory: 4Gi cpu: "2" layout: shardsCount: 1 replicasCount: 2 resources: requests: cpu: "2" memory: 6Gi persistence: size: ${clickhouse_persistence_volume} allowedNetworkIps: - ${allowed_network_ips} - "172.20.0.0/16" signoz: replicaCount: 2 smtpVars: enabled: true SMTP_ENABLED: "true" SMTP_FROM: "signoz-noreply@test.com" SMTP_HOST: ${smtp_host} SMTP_PORT: "587" SMTP_USERNAME: ${smtp_user} SMTP_PASSWORD: ${smtp_password} ingress: enabled: true className: nginx annotations: service.beta.kubernetes.io/aws-load-balancer-type: nlb service.beta.kubernetes.io/aws-load-balancer-internal: "true" external-dns.alpha.kubernetes.io/hostname: ${host_name} cert-manager.io/cluster-issuer: letsencrypt-prod nginx.ingress.kubernetes.io/rewrite-target: / hosts: - host: ${host_name} paths: - path: / pathType: ImplementationSpecific port: 8080 tls: - secretName: signoz hosts: - ${host_name} persistence: size: ${signoz_persistence_volume} resources: requests: cpu: "2" memory: 4Gi alertmanager: enabled: true replicaCount: 2 resources: requests: cpu: "2" memory: 3Gi persistence: size: ${alertmanager_persistence_volume} additionalEnvs: ALERTMANAGER_SMTP_FROM: "signoz-noreply@test.com" ALERTMANAGER_SMTP_HOST: ${smtp_host} ALERTMANAGER_SMTP_PORT: "587" ALERTMANAGER_SMTP_AUTH_USERNAME: ${smtp_user} ALERTMANAGER_SMTP_AUTH_PASSWORD: ${smtp_password} otelCollector: replicaCount: 2 ingress: enabled: true className: nginx annotations: service.beta.kubernetes.io/aws-load-balancer-type: nlb service.beta.kubernetes.io/aws-load-balancer-internal: "true" external-dns.alpha.kubernetes.io/hostname: ${cluster_name}-otelcollector.${domain_name} cert-manager.io/cluster-issuer: letsencrypt-staging nginx.ingress.kubernetes.io/ssl-redirect: "true" nginx.ingress.kubernetes.io/backend-protocol: "GRPC" hosts: - host: ${cluster_name}-otelcollector.${domain_name} paths: - path: / pathType: ImplementationSpecific port: 4317 tls: - secretName: ${cluster_name}-otelcollector hosts: - ${cluster_name}-otelcollector.${domain_name} resources: requests: cpu: "4" memory: 6Gi autoscaling: enabled: true minReplicas: 2 maxReplicas: 11 targetCPUUtilizationPercentage: 50 targetMemoryUtilizationPercentage: 50 behavior: scaleDown: stabilizationWindowSeconds: 300 policies: - type: Pods value: 1 periodSeconds: 180 scaleUp: stabilizationWindowSeconds: 300 policies: - type: Pods value: 2 periodSeconds: 60 # keda: # enabled: true # pollingInterval: "30" # cooldownPeriod: "300" # minReplicaCount: "3" # maxReplicaCount: "11" # triggers: # - type: memory # metadata: # type: Utilization # value: "80" # - type: cpu # metadata: # type: Utilization # value: "80"
image.png,image.png