-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a playbook that runs sync/publish/promote for both repos and cont…
…ianers
- Loading branch information
1 parent
337cdaa
commit b068171
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
- name: "Import pulp-repo-sync" | ||
import_playbook: pulp-repo-sync.yml | ||
|
||
- name: "Import pulp-repo-publish" | ||
import_playbook: pulp-repo-publish.yml | ||
|
||
- name: "Import pulp-repo-promote-production" | ||
import_playbook: pulp-repo-promote-production.yml | ||
when: repo_promote_production | default(true) | ||
|
||
- name: "Import pulp-container-sync" | ||
import_playbook: pulp-container-sync.yml | ||
|
||
- name: "Import pulp-container-publish" | ||
import_playbook: pulp-container-publish.yml |
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/pulp-sync-publish-promote-playbook-b638be7c77a649dd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
features: | ||
- | | ||
Added a new playbook `pulp_sync_publish_promote` that can be used to sync, | ||
publish and promote a repository in a single step, as well as sync and | ||
publish container repos. If you do not want to publish repos then run with | ||
``-e repo_promote_production=false``. |