Skip to content

feat: Introduce repository management documentation, add OtterScale 0… - #50

Merged
KUASWoodyLIN merged 1 commit into
mainfrom
registry_docs
Dec 19, 2025
Merged

feat: Introduce repository management documentation, add OtterScale 0…#50
KUASWoodyLIN merged 1 commit into
mainfrom
registry_docs

Conversation

@KUASWoodyLIN

Copy link
Copy Markdown
Contributor

….6.0 release banner, and enhance application store configuration details.

Copilot AI review requested due to automatic review settings December 19, 2025 06:04
@KUASWoodyLIN
KUASWoodyLIN requested a review from iasthc as a code owner December 19, 2025 06:04
@gemini-code-assist

Copy link
Copy Markdown

Summary of Changes

Hello @KUASWoodyLIN, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request significantly expands and refines the platform's documentation, primarily by introducing a dedicated section for repository management. It aims to provide users with clear, detailed instructions for handling container images and Helm charts within the registry. Additionally, the update includes an announcement banner for the OtterScale 0.6.0 release and enhances the existing application store configuration guide for improved user experience.

Highlights

  • New Repository Management Documentation: Introduced a comprehensive new documentation page for managing container image and Helm chart repositories, including upload instructions and manifest management.
  • OtterScale 0.6.0 Release Banner: Added a prominent banner to the main documentation page announcing the release of OtterScale 0.6.0, linking to its 'What's New' section.
  • Enhanced Application Store Configuration: Improved the clarity and detail of the application store configuration guide, providing more extensive explanations and an example for customizing values.yaml.
  • Navigation Update: A new 'Repositories' entry has been added to the navigation menu, complete with a Chinese translation, to facilitate access to the new documentation.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

….6.0 release banner, and enhance application store configuration details.
@KUASWoodyLIN
KUASWoodyLIN merged commit 3790300 into main Dec 19, 2025
5 checks passed

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces new documentation for repository management, adds a release banner for OtterScale 0.6.0, and enhances the application store documentation. The changes are mostly good, but I've found a few issues in the new repositories.mdx documentation file. There are a couple of broken links that need to be fixed. Also, a command example uses an insecure flag without a proper warning, which could lead users to insecure practices. I've left specific comments with suggestions to address these points.

docker push <registry_url>/<repository>:<tag>
```

3. After uploading, navigate to the [Applications Store](/service/applications/04-store/) to update the Helm chart configuration to use your custom image:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The link to the Applications Store appears to be incorrect. Starlight automatically removes number prefixes like 04- from filenames when generating page URLs. Therefore, the file service/applications/04-store.mdx will likely be available at /service/applications/store, not /service/applications/04-store/. Please update the link to ensure it works correctly.

    3.  After uploading, navigate to the [Applications Store](/service/applications/store) to update the Helm chart configuration to use your custom image:

helm push <chart_package> oci://<registry_url>/<namespace> --plain-http
```

3. After uploading, navigate to the [Applications Store](/service/applications/04-store/) to deploy the Helm chart.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The link to the Applications Store appears to be incorrect. Starlight automatically removes number prefixes like 04- from filenames when generating page URLs. Therefore, the file service/applications/04-store.mdx will likely be available at /service/applications/store, not /service/applications/04-store/. Please update the link to ensure it works correctly.

    3.  After uploading, navigate to the [Applications Store](/service/applications/store) to deploy the Helm chart.

2. Upload the downloaded chart:

```bash
helm push <chart_package> oci://<registry_url>/<namespace> --plain-http

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The use of the --plain-http flag in the helm push command allows for insecure connections to the registry. This poses a security risk in production environments as credentials and chart data are transmitted unencrypted. It is highly recommended to add a warning about the security implications of this flag. Consider using an <Aside> component to alert users.

For example:

<Aside type="caution" title="Security Warning">
  The `--plain-http` flag allows insecure connections and should only be used for local development. For production, always use a secure registry with TLS enabled.
</Aside>

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR introduces comprehensive repository management documentation, adds a release banner for OtterScale 0.6.0, enhances the application store configuration details with examples, and updates the security card icon for better visual representation.

  • Adds new documentation page for managing container images and Helm charts in the private registry
  • Enhances the application store installation documentation with detailed YAML configuration examples
  • Adds a prominent banner announcing the OtterScale 0.6.0 release

Reviewed changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
src/content/docs/service/repositories.mdx New documentation page explaining repository management, upload instructions for Docker images and Helm charts, and manifest management operations
src/content/docs/service/applications/04-store.mdx Enhanced configuration documentation with detailed YAML example showing common parameters like replicas, resources, and service settings
src/content/docs/index.mdx Added banner announcing OtterScale 0.6.0 release with link to release notes
src/content/docs/introduction.mdx Updated security card icon from "approve-check" to "seti:lock" for better visual consistency
astro.config.mjs Added navigation entry for the new Repositories page with English and Traditional Chinese translations

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

You can upload Docker images and Helm charts to the repository via your local terminal.

<Aside type="tip" title="Registry URL">
To obtain the `<registry_url>`, click the **Commands** button on this page or check the **Applications Services** page.

Copilot AI Dec 19, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reference to "Applications Services" page is ambiguous. Based on the documentation structure, it's unclear which specific page is being referenced. If this refers to the Services page under Applications (service/applications/02-services.mdx), that page is about Kubernetes Services and doesn't appear to contain registry URL information. Consider clarifying this reference or verifying the correct page name where users can find the registry URL.

Suggested change
To obtain the `<registry_url>`, click the **Commands** button on this page or check the **Applications Services** page.
To obtain the `<registry_url>`, click the **Commands** button on this page or refer to your platform documentation for the registry URL.

Copilot uses AI. Check for mistakes.
template: splash # Remove or comment out this line to display the site sidebar on this page.
banner:
content: |
<strong>🚀 OtterScale has shipped!</strong> — <a href="/whats-new/otterscale-0.6.0/">See what's new in OtterScale 0.6.0</a>

Copilot AI Dec 19, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The banner links to "/whats-new/otterscale-0.6.0/" but this page doesn't appear to exist in the repository. This will result in a broken link. Either create the corresponding page at src/content/docs/whats-new/otterscale-0.6.0.mdx or update the link to point to an existing page.

Suggested change
<strong>🚀 OtterScale has shipped!</strong> — <a href="/whats-new/otterscale-0.6.0/">See what's new in OtterScale 0.6.0</a>
<strong>🚀 OtterScale has shipped!</strong> — <a href="/introduction/">See what's new in OtterScale 0.6.0</a>

Copilot uses AI. Check for mistakes.
Comment on lines +78 to +80
helm push <chart_package> oci://<registry_url>/<namespace> --plain-http
```

Copilot AI Dec 19, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The helm push example uses the --plain-http flag, which forces Helm to upload charts over unencrypted HTTP even when a TLS-capable registry is available. This exposes chart contents to interception and tampering on the network, enabling an attacker to inject malicious code into deployments. Update the documentation to use secure HTTPS by default (removing --plain-http and/or clearly scoping its use only to explicitly non-sensitive, internal test setups).

Suggested change
helm push <chart_package> oci://<registry_url>/<namespace> --plain-http
```
helm push <chart_package> oci://<registry_url>/<namespace>
```
If your registry is configured without TLS for local, non-sensitive testing only, you may add the `--plain-http` flag. Do not use `--plain-http` for production or Internet-exposed registries.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants