From 9bf00f6e0ab7f6e2e73381ad210163f296ed3667 Mon Sep 17 00:00:00 2001 From: Jordan Godau Date: Tue, 11 Jun 2024 08:53:33 -0700 Subject: [PATCH] Changed min and max data members in DaskAutoscalerSpec struct from 'string' to 'int' --- .../go_client/pkg/apis/kubernetes.dask.org/v1/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dask_kubernetes/operator/go_client/pkg/apis/kubernetes.dask.org/v1/types.go b/dask_kubernetes/operator/go_client/pkg/apis/kubernetes.dask.org/v1/types.go index d8527f809..0c5ae023b 100644 --- a/dask_kubernetes/operator/go_client/pkg/apis/kubernetes.dask.org/v1/types.go +++ b/dask_kubernetes/operator/go_client/pkg/apis/kubernetes.dask.org/v1/types.go @@ -124,9 +124,9 @@ type DaskAutoscalerSpec struct { // Name of the cluster to associate this autoscaler with Cluster string `json:"cluster"` // Minimum number of workers - Minimum string `json:"minimum"` + Minimum int `json:"minimum"` // Maximum number of workers - Maximum string `json:"maximum"` + Maximum int `json:"maximum"` } // +genclient