Skip to content

Commit

Permalink
Let Kubernetes default the PVC StorageClass
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti committed Oct 9, 2024
1 parent b1d174a commit 93c6b77
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions standalone/standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ def cli():
@click.option(
"--storage-class",
type=str,
default="standard",
help="Storage class to use for the PersistentVolumeClaim - for SDG only",
)
@click.option(
Expand Down Expand Up @@ -433,7 +432,6 @@ def show(
@click.option(
"--storage-class",
type=str,
default="standard",
help="Storage class to use for the PersistentVolumeClaim - for SDG only",
)
@click.option(
Expand Down Expand Up @@ -542,7 +540,7 @@ def run(
taxonomy_repo_url: str = "",
taxonomy_repo_branch: typing.Optional[str] = "",
taxonomy_repo_pr: typing.Optional[str] = "",
storage_class: typing.Optional[str] = "standard",
storage_class: typing.Optional[str] = None,
serving_endpoint: typing.Optional[str] = None,
serving_model: typing.Optional[str] = None,
nproc_per_node: typing.Optional[int] = 1,
Expand Down

0 comments on commit 93c6b77

Please sign in to comment.