Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add scaling adapter
Signed-off-by: Julien Mancuso <[email protected]>
  • Loading branch information
julienmancuso committed Dec 1, 2025
commit 2c7bd1752d68060ecc7b071ebf5a528e242846df
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,9 @@ func (r *DynamoGraphDeploymentReconciler) reconcileScalingAdapters(ctx context.C
}

// generateAdapterName creates a consistent name for a DynamoGraphDeploymentScalingAdapter
// Service names are lowercased to comply with Kubernetes DNS subdomain naming requirements
func generateAdapterName(dgdName, serviceName string) string {
return fmt.Sprintf("%s-%s", dgdName, serviceName)
return fmt.Sprintf("%s-%s", dgdName, strings.ToLower(serviceName))
}

func (r *DynamoGraphDeploymentReconciler) FinalizeResource(ctx context.Context, dynamoDeployment *nvidiacomv1alpha1.DynamoGraphDeployment) error {
Expand Down