Skip to content

Commit

Permalink
Mark registry_external_url config as deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Dec 10, 2024
1 parent f317642 commit ee225a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions conda-store-server/conda_store_server/_internal/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class CondaStoreServer(Application):
)

enable_registry = Bool(
False, help="enable the docker registry for conda-store", config=True
False, help="(deprecated) enable the docker registry for conda-store", config=True
)

enable_metrics = Bool(
Expand All @@ -100,7 +100,7 @@ class CondaStoreServer(Application):

registry_external_url = Unicode(
"localhost:8080",
help='external hostname and port to access docker registry cannot contain "http://" or "https://"',
help='(deprecated) external hostname and port to access docker registry cannot contain "http://" or "https://"',
config=True,
)

Expand Down
1 change: 0 additions & 1 deletion examples/ubuntu2004/templates/conda_store_config.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ c.S3Storage.external_secure = False
c.CondaStoreServer.log_level = logging.INFO
c.CondaStoreServer.enable_ui = True
c.CondaStoreServer.enable_api = True
c.CondaStoreServer.enable_registry = True
c.CondaStoreServer.enable_metrics = True
c.CondaStoreServer.address = "0.0.0.0"
c.CondaStoreServer.port = 8080
Expand Down

0 comments on commit ee225a1

Please sign in to comment.