Skip to content
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

[version-3-4] docs: fix URL (#1622) #1625

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -438,13 +438,8 @@ Result
![Result](static/assets/docs/images/hide_copy_button.png)
### Admonitions - Warning / Info / Tip / Dange
### Admonitions - Warning / Info / Tip / Danger
:::note
Some **content** with _Markdown_ `syntax`.
:::
:::caution
Expand Down
13 changes: 5 additions & 8 deletions docs/docs-content/registries-and-packs/deploy-pack.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
sidebar_label: 'Deploy an Add-On Pack'
title: 'Deploy an Add-On Pack'
description: 'How to create and deploy an add-on pack using the manifest files or Helm charts in Spectro Cloud.'
sidebar_label: 'Deploy a Custom Pack'
title: 'Deploy a Custom Pack'
description: 'How to create and deploy a custom pack using the manifest files or Helm charts in Spectro Cloud.'
icon: ''
hide_table_of_contents: false
toc_min_heading_level: 2
Expand All @@ -11,8 +11,6 @@ tags: ["packs", "tutorial"]
---


# Deploy an Add-On Pack

Custom add-on packs allow you to deploy Kubernetes applications in clusters and reuse them in multiple deployments. This ensures uniformity across your clusters. The primary use cases for creating custom packs are:

- Aggregated configuration and application dependencies simplify deployment and consumption.
Expand Down Expand Up @@ -210,11 +208,10 @@ Ensure you have the following files in the current directory.
### Pack File Structure

Go ahead and review each of the following five files in the pack.
<br />

* **pack.json** - This file contains the pack metadata such as `addonType`, `cloudTypes`, and the `kubeManifests` array that contains the list of manifest files: `layer`, `name`, and `version`. Refer to the [JSON Schema](add-custom-packs#json-schema) for a list of attributes and respective data types. The schema validation will happen when you push a pack to the registry.
* **pack.json** - This file contains the pack metadata such as `addonType`, `cloudTypes`, and the `kubeManifests` array that contains the list of manifest files: `layer`, `name`, and `version`. Refer to the [JSON Schema](add-custom-packs.md#json-schema) for a list of attributes and respective data types. The schema validation will happen when you push a pack to the registry.

<br />


```json
{
Expand Down