Skip to content

Commit

Permalink
remove redundant pydantic class, fix bug (#2426)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-D-Lewis authored Apr 29, 2024
1 parent 2f85ece commit 3e0f41d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/_nebari/stages/infrastructure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,14 @@ class DigitalOceanInputVars(schema.Base):
kubeconfig_filename: str = get_kubeconfig_filename()


class GCPGuestAccelerators(schema.Base):
name: str
count: int


class GCPNodeGroupInputVars(schema.Base):
name: str
instance_type: str
min_size: int
max_size: int
labels: Dict[str, str]
preemptible: bool
guest_accelerators: List[GCPGuestAccelerators]
guest_accelerators: List["GCPGuestAccelerator"]


class GCPPrivateClusterConfig(schema.Base):
Expand Down

0 comments on commit 3e0f41d

Please sign in to comment.