Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/src/montagu_deploy/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present Alex <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "0.1.0"
__version__ = "0.1.1"
4 changes: 3 additions & 1 deletion deploy/src/montagu_deploy/montagu_constellation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import constellation
import docker
import yaml
from constellation import acme, docker_util
from constellation import acme, docker_util, vault
from psycopg2 import OperationalError, connect

from montagu_deploy import database
Expand All @@ -25,6 +25,8 @@ def montagu_constellation(cfg):
]

if cfg.use_acme:
if cfg.vault and cfg.vault.url:
vault.resolve_secrets(cfg.acme_config, cfg.vault.client())
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

acme_container = acme.acme_buddy_container(
cfg.acme_config, "acme-buddy", proxy.name_external(cfg.container_prefix), "montagu-tls", cfg.hostname
)
Expand Down
Loading