Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DPE-3502] support backup password rotation across sharded cluster #358

Merged
merged 3 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ def _on_set_password(self, event: ActionEvent) -> None:

# rotate password to shards
# TODO in the future support rotating passwords of pbm across shards
if username == OperatorUser.get_username():
if username == OperatorUser.get_username() or username == BackupUser.get_username:
MiaAltieri marked this conversation as resolved.
Show resolved Hide resolved
self.config_server.update_credentials(
MongoDBUser.get_password_key_name_for_user(username),
new_password,
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ async def find_unit(ops_test: OpsTest, leader: bool, app_name=None) -> ops.model
return ret_unit


async def get_leader_id(ops_test: OpsTest) -> int:
async def get_leader_id(ops_test: OpsTest, app_name=None) -> int:
"""Returns the unit number of the juju leader unit."""
app_name = await get_app_name(ops_test)
app_name = app_name or await get_app_name(ops_test)
for unit in ops_test.model.applications[app_name].units:
if await unit.is_leader_from_status():
return int(unit.name.split("/")[1])
Expand Down
48 changes: 48 additions & 0 deletions tests/integration/sharding_tests/test_sharding_backups.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from tenacity import RetryError, Retrying, stop_after_delay, wait_fixed

from ..backup_tests import helpers as backup_helpers
from ..helpers import get_leader_id, get_password, set_password

S3_APP_NAME = "s3-integrator"
SHARD_ONE_APP_NAME = "shard-one"
Expand Down Expand Up @@ -53,6 +54,7 @@ async def test_build_and_deploy(ops_test: OpsTest) -> None:


@pytest.mark.group(1)
@pytest.mark.abort_on_fail
async def test_set_credentials_in_cluster(ops_test: OpsTest, github_secrets) -> None:
"""Tests that sharded cluster can be configured for s3 configurations."""
await backup_helpers.set_credentials(ops_test, github_secrets, cloud="AWS")
Expand Down Expand Up @@ -97,6 +99,7 @@ async def test_set_credentials_in_cluster(ops_test: OpsTest, github_secrets) ->


@pytest.mark.group(1)
@pytest.mark.abort_on_fail
async def test_create_and_list_backups_in_cluster(ops_test: OpsTest, github_secrets) -> None:
"""Tests that sharded cluster can successfully create and list backups."""
leader_unit = await backup_helpers.get_leader_unit(
Expand Down Expand Up @@ -125,3 +128,48 @@ async def test_create_and_list_backups_in_cluster(ops_test: OpsTest, github_secr
assert backups == 1
except RetryError:
assert backups == 1, "Backup not created."


@pytest.mark.group(1)
@pytest.mark.abort_on_fail
async def test_rotate_backup_password(ops_test: OpsTest) -> None:
"""Tests that sharded cluster can successfully create and list backups."""
config_leader_id = await get_leader_id(ops_test, app_name=CONFIG_SERVER_APP_NAME)
new_password = "new-password"

MiaAltieri marked this conversation as resolved.
Show resolved Hide resolved
await set_password(
ops_test, unit_id=config_leader_id, username="backup", password=new_password
)
await ops_test.model.wait_for_idle(
apps=[CONFIG_SERVER_APP_NAME, SHARD_ONE_APP_NAME, SHARD_TWO_APP_NAME],
idle_period=20,
timeout=TIMEOUT,
)

shard_backup_password = get_password(ops_test, username="backup", app_name=SHARD_ONE_APP_NAME)
assert shard_backup_password != new_password, "Application shard-one did not rotate password"

shard_backup_password = get_password(ops_test, username="backup", app_name=SHARD_TWO_APP_NAME)
assert shard_backup_password != new_password, "Application shard-two did not rotate password"

# verify backup actions work after password rotation
leader_unit = await backup_helpers.get_leader_unit(
ops_test, db_app_name=CONFIG_SERVER_APP_NAME
)
action = await leader_unit.run_action(action_name="create-backup")
backup_result = await action.wait()
assert (
"backup started" in backup_result.results["backup-status"]
), "backup didn't start after password rotation"

# verify backup is present in the list of backups
# the action `create-backup` only confirms that the command was sent to the `pbm`. Creating a
# backup can take a lot of time so this function returns once the command was successfully
# sent to pbm. Therefore we should retry listing the backup several times
try:
for attempt in Retrying(stop=stop_after_delay(20), wait=wait_fixed(3)):
with attempt:
backups = await backup_helpers.count_logical_backups(leader_unit)
assert backups == 2
except RetryError:
assert backups == 2, "Backup not created after password rotation."
Loading