Move the master repo to Pacific

This change just move the current repository to Pacific, which is
used for both ceph-ansible and cephadm packages.

Change-Id: I13cbe90003e88af9838a7a5867415c66ba075791
This commit is contained in:
Francesco Pantano 2021-03-25 11:42:41 +01:00
parent 2cfaa481b3
commit e3b76d88ff
No known key found for this signature in database
GPG Key ID: 0458D4D1F41BD75C
2 changed files with 2 additions and 2 deletions

View File

@ -468,7 +468,7 @@ def _install_repos(args, base_path):
elif args.branch in ['stein', 'train', 'ussuri', 'victoria']:
content = _create_ceph(args, 'nautilus')
else:
content = _create_ceph(args, 'octopus')
content = _create_ceph(args, 'pacific')
_write_repo(content, args.output_path)
elif repo == 'opstools':
content = OPSTOOLS_REPO_TEMPLATE % {'mirror': args.mirror}

View File

@ -301,7 +301,7 @@ class TestTripleORepos(testtools.TestCase):
'train': 'nautilus',
'ussuri': 'nautilus',
'victoria': 'nautilus',
'master': 'octopus',
'master': 'pacific',
}
args = mock.Mock()
args.repos = ['ceph']