-
Notifications
You must be signed in to change notification settings - Fork 5
feat(deployment): gateway/dataservice feature parity #170
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -214,6 +214,17 @@ resources: {} | |||||
| # cpu: 100m | ||||||
| # memory: 128Mi | ||||||
|
|
||||||
| # startupProbe is optional and rendered only when defined. | ||||||
| # Useful for slow-starting containers to avoid premature liveness kills. | ||||||
| # Example: | ||||||
| # startupProbe: | ||||||
| # httpGet: | ||||||
| # path: /v1/health | ||||||
| # port: 8787 | ||||||
| # initialDelaySeconds: 10 | ||||||
| # periodSeconds: 5 | ||||||
| # failureThreshold: 30 | ||||||
|
|
||||||
| livenessProbe: | ||||||
| httpGet: | ||||||
| path: /v1/health | ||||||
|
|
@@ -263,6 +274,14 @@ volumeMounts: [] | |||||
|
|
||||||
| extraContainerConfig: {} | ||||||
|
|
||||||
| # envFrom allows loading all keys from secrets/configmaps as environment variables. | ||||||
| # Useful for external secret managers (ESO, Vault CSI, AWS Secrets Manager). | ||||||
| # Variables in env (from environment.data) take precedence over envFrom. | ||||||
| envFrom: [] | ||||||
|
|
||||||
| # Additional environment variables appended after commonEnv. | ||||||
| extraEnv: [] | ||||||
|
Comment on lines
+277
to
+283
|
||||||
|
|
||||||
| # Additional sidecar containers injected into the gateway pod. | ||||||
| # Each entry is a full Kubernetes container spec. | ||||||
| # Example: nginx TLS-termination sidecar | ||||||
|
|
@@ -318,12 +337,14 @@ dataservice: | |||||
| containerPort: 8081 | ||||||
| finetuneBucket: "" | ||||||
| logexportsBucket: "" | ||||||
| envFrom: [] | ||||||
| env: | ||||||
| DEBUG_ENABLED: false | ||||||
| SERVICE_NAME: "portkeyenterprise-dataservice" | ||||||
| deployment: | ||||||
| autoRestart: true | ||||||
| replicas: 1 | ||||||
| # terminationGracePeriodSeconds: 30 | ||||||
|
||||||
| # terminationGracePeriodSeconds: 30 | |
| terminationGracePeriodSeconds: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intentional — this mirrors how the gateway template already handles it (added in #156). The commented example documents the field without setting a default that would override Kubernetes's own 30s default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
startupProbeis rendered from.Values.startupProbe, butvalues.yamldoesn’t define/document this value alongside the existinglivenessProbe/readinessProbesettings. Add astartupProbe:section (or commented example) tovalues.yamlso users can discover/configure it consistently.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a commented example in values.yaml in 3593ac8.