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 50fb8cf commit b340e09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 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
4 changes: 1 addition & 3 deletions standalone/standalone.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,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 @@ -418,7 +417,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 @@ -527,7 +525,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 b340e09

Please sign in to comment.