Skip to content

Commit

Permalink
remove refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
SK1Y101 committed Jul 28, 2024
1 parent 44a83ee commit 2faf410
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions anvil-python/anvil/commands/haproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ def haproxy_install_steps(
fqdn: str,
accept_defaults: bool,
preseed: dict[Any, Any],
refresh: bool = False,
) -> List[BaseStep]:
return [
TerraformInitStep(manifest.get_tfhelper("haproxy-plan")),
Expand All @@ -228,7 +227,6 @@ def haproxy_install_steps(
model,
accept_defaults=accept_defaults,
deployment_preseed=preseed,
refresh=refresh,
),
AddHAProxyUnitsStep(client, fqdn, jhelper, model),
]
Expand Down
3 changes: 1 addition & 2 deletions anvil-python/anvil/commands/maas_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,11 @@ def maas_agent_install_steps(
jhelper: JujuHelper,
model: str,
fqdn: str,
refresh: bool = False,
) -> List[BaseStep]:
return [
TerraformInitStep(manifest.get_tfhelper("maas-agent-plan")),
DeployMAASAgentApplicationStep(
client, manifest, jhelper, model, refresh=refresh
client, manifest, jhelper, model,
),
AddMAASAgentUnitsStep(client, fqdn, jhelper, model),
]
Expand Down
2 changes: 0 additions & 2 deletions anvil-python/anvil/commands/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def postgresql_install_steps(
fqdn: str,
accept_defaults: bool,
preseed: dict[Any, Any],
refresh: bool = False,
) -> List[BaseStep]:
return [
TerraformInitStep(manifest.get_tfhelper("postgresql-plan")),
Expand All @@ -62,7 +61,6 @@ def postgresql_install_steps(
model,
accept_defaults=accept_defaults,
deployment_preseed=preseed,
refresh=refresh,
),
AddPostgreSQLUnitsStep(client, fqdn, jhelper, model),
]
Expand Down

0 comments on commit 2faf410

Please sign in to comment.