Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow customizing readiness probe for the Transformer component. #38

Open
Javier162380 opened this issue Nov 4, 2021 · 0 comments
Open

Comments

@Javier162380
Copy link

When I try to deploy Rudderstack, sometimes the Transformer crash. I thought it was a matter of resources. Although, I realize later that the Transformer, was killed by a sigterm from Kubernetes, so I increase, the initialDelaySeconds entity of the liveness probe, and the Transformer start working.

I will propose update the chart to something like this in the values file.

transformer:
  replicaCount: 1
  service:
    port: 9090
  image:
    repository: rudderlabs/rudder-transformer
    version: latest
    pullPolicy: Always
  resources:
    requests:
      memory: 1556Mi
      cpu: 3
    limits:
      memory: 8968Mi
      cpu: 6
  redinessProbe:
    initialDelaySeconds: 30

And update later the Transformer deployment.

{{- if .Values.readinessProbe.initialDelaySeconds }}
          initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
{{- end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant