Skip to content

Commit

Permalink
Fix Admonitions
Browse files Browse the repository at this point in the history
  • Loading branch information
amayer5125 committed Oct 31, 2024
1 parent 86be272 commit 424bc9f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/dev/guides/plugin_maintenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ It is also possible (and sometimes useful) to run the plugin template locally.
Make sure you clone the `plugin_template` repository in the same folder as the `pulp_deb` repository.
You can then issue the below template commands within the root of the plugin template repository to apply changes.

!!! important
!!! warning
The following commands are usually applied via the GitHub actions pipeline, which is the preferred way for creating the needed PRs.

```none
./plugin-template --generate-config pulp_deb
./plugin-template --github pulp_deb
```

!!! important
!!! warning
The following plugin template commands are primarily intended for creating the skeleton for a new plugin.
It sometimes makes sense to apply them to an existing plugin, but the applied changes will clash with the existing plugin content, and need to be manually evaluated.

Expand Down
2 changes: 1 addition & 1 deletion docs/user/guides/checksums.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

What checksum algorithems are available on any given Pulp instance, is controlled by the pulpcore `ALLOWED_CONTENT_CHECKSUMS` setting. If enabled, `pulp_deb` will make use of MD5, SHA-1, SHA-256, and SHA-512. SHA-256 is required and cannot be disabled.

!!! important
!!! warning
For compliance reasons, MD5 and SHA-1 have been disabled by default since pulpcore 3.11.

!!! note
Expand Down
9 changes: 3 additions & 6 deletions docs/user/guides/sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,9 @@ pulp deb distribution create --name=${NAME} --base-path=${NAME} --repository=${N
- Since flat repositories do not contain components, there is no reason to use the `--component` flag.
- You may still filter by architecture using the `--architecture` flag.

```
:::{important}
```
Even though you are synchronizing a flat repository, `pulp_deb` will convert it to a regular structured APT repository on the publish.
A distribution of `/` will be converted into a single distribution named `flat-repo`, which will contain a single component named `flat-repo-component`.

!!! warning
Even though you are synchronizing a flat repository, `pulp_deb` will convert it to a regular structured APT repository on the publish.
A distribution of `/` will be converted into a single distribution named `flat-repo`, which will contain a single component named `flat-repo-component`.

To configure the above repo in the `/etc/apt/sources.list` file on a consuming host:

Expand Down
2 changes: 1 addition & 1 deletion docs/user/guides/upload.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ deb http://<your_pulp_host>/pulp/content/quickstart-uploaded-vim-amd64/ pulp upl
In other words, you can upload the same package to your Pulp repository multiple times, and the task will succeed each time, but only the first time will result in any changes to your Pulp repository.


!!! important
!!! warning
It is possible to have an uploaded package added to an arbitrary distribution-component combination, by supplying the `distribution` and `component` parameters to the package upload API endpoint.
However, at the time of writing it is not possible to do this via Pulp CLI.
It is also not possible to use Pulp CLI to create a release content in order to customize the release file fields.
Expand Down

0 comments on commit 424bc9f

Please sign in to comment.