Skip to content

Commit

Permalink
Merge branch 'nebari-dev:develop' into 2284-keda-conda-store-worker-hpa
Browse files Browse the repository at this point in the history
  • Loading branch information
pt247 authored May 1, 2024
2 parents 92537ae + 6ee3c86 commit 164f548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies = [
"prompt-toolkit==3.0.36",
"pydantic==2.4.2",
"pynacl==1.5.0",
"python-keycloak>=3.9.0",
"python-keycloak>=3.9.0,<4.0.0",
"questionary==2.0.0",
"requests-toolbelt==1.0.0",
"rich==13.5.1",
Expand Down
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 164f548

Please sign in to comment.