-
Notifications
You must be signed in to change notification settings - Fork 197
[WIP] [test for ai] Testing pr to see what the coderabbit AI can #365
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -32,33 +32,33 @@ Table end | |||||||||||||
|
|
||||||||||||||
| Installation | ||||||||||||||
| ---------------------- | ||||||||||||||
| Choose either the CentOS Stream 9 or RHEL8 based image: | ||||||||||||||
| Choose either the CentOS Stream 10 or RHEL10 based image: | ||||||||||||||
|
|
||||||||||||||
| * **RHEL8 based image** | ||||||||||||||
| * **RHEL10 based image** | ||||||||||||||
|
|
||||||||||||||
| These images are available in the [Red Hat Container Catalog](https://access.redhat.com/containers/#/registry.access.redhat.com/rhel8/nginx-124). | ||||||||||||||
| These images are available in the [Red Hat Container Catalog](https://access.redhat.com/containers/#/registry.access.redhat.com/rhel10/nginx-126). | ||||||||||||||
| To download it run: | ||||||||||||||
|
|
||||||||||||||
| ``` | ||||||||||||||
| $ podman pull registry.access.redhat.com/rhel9/nginx-124 | ||||||||||||||
| $ podman pull registry.access.redhat.com/rhel10/nginx-126 | ||||||||||||||
| ``` | ||||||||||||||
|
|
||||||||||||||
| To build a RHEL8 based Nginx image, you need to run Docker build on a properly | ||||||||||||||
| To build a RHEL10 based Nginx image, you need to run Docker build on a properly | ||||||||||||||
| subscribed RHEL machine. | ||||||||||||||
|
|
||||||||||||||
| ``` | ||||||||||||||
| $ git clone --recursive https://github.com/sclorg/nginx-container.git | ||||||||||||||
| $ cd nginx-container | ||||||||||||||
| $ git submodule update --init | ||||||||||||||
| $ make build TARGET=rhel9 VERSIONS=1.24 | ||||||||||||||
| $ make build TARGET=rhel10 VERSIONS=1.26 | ||||||||||||||
| ``` | ||||||||||||||
|
|
||||||||||||||
| * **CentOS Stream based image** | ||||||||||||||
|
|
||||||||||||||
| This image is available on DockerHub. To download it run: | ||||||||||||||
|
|
||||||||||||||
| ``` | ||||||||||||||
| $ podman pull quay.io/sclorg/nginx-124-c9s | ||||||||||||||
| $ podman pull quay.io/sclorg/nginx-126-c10s | ||||||||||||||
|
Comment on lines
58
to
+61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix registry wording: DockerHub vs Quay mismatch. Line 58 says DockerHub, but Line 61 pulls from Suggested doc tweak- This image is available on DockerHub. To download it run:
+ This image is available on Quay.io. To download it run:📝 Committable suggestion
Suggested change
🧰 Tools🪛 markdownlint-cli2 (0.21.0)[warning] 60-60: Fenced code blocks should have a language specified (MD040, fenced-code-language) [warning] 61-61: Dollar signs used before commands without showing output (MD014, commands-show-output) 🤖 Prompt for AI Agents |
||||||||||||||
| ``` | ||||||||||||||
|
|
||||||||||||||
| To build a CentOS based Nginx image from scratch, run: | ||||||||||||||
|
|
@@ -67,10 +67,10 @@ Choose either the CentOS Stream 9 or RHEL8 based image: | |||||||||||||
| $ git clone --recursive https://github.com/sclorg/nginx-container.git | ||||||||||||||
| $ cd nginx-container | ||||||||||||||
| $ git submodule update --init | ||||||||||||||
| $ make build TARGET=c9s VERSIONS=1.24 | ||||||||||||||
| $ make build TARGET=c10s VERSIONS=1.26 | ||||||||||||||
| ``` | ||||||||||||||
|
|
||||||||||||||
| For using other versions of Nginx, just replace the `1.24` value by particular version | ||||||||||||||
| For using other versions of Nginx, just replace the `1.26` value by particular version | ||||||||||||||
| in the commands above. | ||||||||||||||
|
Comment on lines
+73
to
74
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version guidance is inconsistent with later sections. Line 73 says to replace 🤖 Prompt for AI Agents |
||||||||||||||
|
|
||||||||||||||
| Note: while the installation steps are calling `podman`, you can replace any such calls by `docker` with the same arguments. | ||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use standard product naming/hyphenation for readability and consistency.
RHEL10 basedshould be written asRHEL 10-based(same pattern for similar phrases). This improves doc clarity and resolves the grammar warnings.Suggested doc tweak
Also applies to: 46-46
🧰 Tools
🪛 LanguageTool
[grammar] ~35-~35: Use a hyphen to join words.
Context: ...- Choose either the CentOS Stream 10 or RHEL10 based image: * RHEL10 based image ...
(QB_NEW_EN_HYPHEN)
[grammar] ~37-~37: Use a hyphen to join words.
Context: ...m 10 or RHEL10 based image: * RHEL10 based image These images are avai...
(QB_NEW_EN_HYPHEN)
🤖 Prompt for AI Agents