-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refs PR 11240 in katello on GitHub Refs 38048 in Redmine
- Loading branch information
1 parent
fb11fdd
commit 03cc547
Showing
3 changed files
with
57 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
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,9 @@ | ||
[id="rolling-content-views"] | ||
= Rolling content views | ||
|
||
A rolling content view is a curated subset of content that your hosts can access. | ||
It is a subset of the Library environment and contains the latest synchronized content from one or multiple repositories. | ||
You can use a rolling content view to provide a continuous stream of synchronized content to hosts. | ||
|
||
When you synchronize repositories to {Project}, all rolling content views that contain them get automatically updated to include the latest changes. | ||
You do not have to publish and/or promote a rolling content view compared to content views or composite content views. |
44 changes: 44 additions & 0 deletions
44
guides/common/modules/proc_creating-a-rolling-content-view.adoc
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,44 @@ | ||
[id="creating-a-rolling-content-view"] | ||
= Creating a rolling content view | ||
|
||
Use this procedure to create a rolling content view. | ||
To use the CLI instead of the {ProjectWebUI}, see the xref:cli-creating-a-rolling-content-view[]. | ||
|
||
.Procedure | ||
. In the {ProjectWebUI}, navigate to *Content* > *Lifecycle* > *Content Views*. | ||
. Click *Create content view*. | ||
. In the *Create content view* window, enter a name for the content view in the *Name* field. | ||
{Project} automatically completes the *Label* field from the name you enter. | ||
. Optional: In the *Description* field, enter a description of the content view. | ||
. On the *Type* tab, select *Rolling content view*. | ||
. Click *Create content view*. | ||
. On the *Repositories* tab, select *All* from the *Status* list. | ||
. Select the repositories that you want to add to your rolling content view. | ||
. Click *Add repositories* to add all selected repositories to your rolling content view. | ||
|
||
[id="cli-creating-a-rolling-content-view"] | ||
.CLI procedure | ||
. Before you create a rolling content views, list all available repositories: | ||
+ | ||
[options="nowrap" subs="+quotes"] | ||
---- | ||
$ hammer repository list \ | ||
--fields id,name,product \ | ||
--organization "_My_Organization_" | ||
---- | ||
. Create your rolling content view: | ||
+ | ||
[options="nowrap" subs="+quotes"] | ||
---- | ||
$ hammer content-view create \ | ||
--name "_My_Rolling_Content_View_" \ | ||
--organization "_My_Organization_" \ | ||
--repository-ids _My_List_Of_Repository_IDs_ \ | ||
--rolling | ||
---- | ||
|
||
.Next steps | ||
* You cannot publish and promote your rolling content view. | ||
Instead, continue with by adding it to your activation key. | ||
For more information, see xref:Creating_an_Activation_Key_{context}[]. | ||
* To register a host to your rolling content view, see {ManagingHostsDocURL}registering-a-host_managing-hosts[Registering a host] in _{ManagingHostsDocTitle}_. |