-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Description of the change Even if we have changed several things during recent months, our docs didn't get updated at the same pace. This PR (still a WIP draft) is trying to go through the docs and add TODOs where required and/or to add easy fixes. ### Benefits We will know which doc pages need a revamp/update/etc (screenshots, wording, etc...) ### Possible drawbacks N/A ### Applicable issues N/A ### Additional information Once finished, an issue summarizing all the TODOs should be created --------- Signed-off-by: Antonio Gamez Diaz <agamez@vmware.com>
- Loading branch information
Showing
20 changed files
with
235 additions
and
70 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
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# Basic Form Support | ||
|
||
**NOTE:** Support for the basic form support feature had to be removed in v2.6.0 when the Bitnami catalog updated to include standard json schema files for each chart. We hope to re-enable the ability to define basic forms for users (see [#5988](https://github.com/vmware-tanzu/kubeapps/issues/5988)) rather than the current display of all fields from the values.yaml. | ||
|
||
In the meanwhile, have a look at the [how to use the dashboard documentation](./dashboard.md#deploy-an-application). | ||
|
||
<!-- TODO(agamez): piece of docs requiring update. Reason: add docs around the new feature --> | ||
<!-- | ||
https://github.com/vmware-tanzu/kubeapps/issues/5982 | ||
https://github.com/vmware-tanzu/kubeapps/issues/5499 | ||
--> |
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
2 changes: 2 additions & 0 deletions
2
site/content/docs/latest/howto/deploying-to-multiple-clusters.md
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
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
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
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
45 changes: 45 additions & 0 deletions
45
site/content/docs/latest/reference/developer/oci-catalog.md
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,45 @@ | ||
# OCI Catalog Developer Guide | ||
|
||
> This section is still in development. | ||
<!-- TODO(agamez): piece of docs requiring update. Reason: new section--> | ||
|
||
## Prerequisites | ||
|
||
- [Git](https://git-scm.com/) | ||
- [Rust programming language](https://www.rust-lang.org/tools/install) | ||
|
||
## Running in development | ||
|
||
[`cargo`](https://doc.rust-lang.org/cargo/) is the Rust package manager tool is used for most development activities. Assuming you are already in the `cmd/oci-catalog` directory, you can always compile and run the executable with: | ||
|
||
```bash | ||
cargo run | ||
``` | ||
|
||
and pass command-line options to the executable after a double-dash, for example: | ||
|
||
```bash | ||
cargo run -- --help | ||
Compiling oci-catalog v0.1.0 (/mnt/c/repos/kubeapps/cmd/oci-catalog) | ||
Finished dev [unoptimized + debuginfo] target(s) in 1m 47s | ||
Running `target/debug/oci-catalog --help` | ||
A service that returns catalog information for an OCI repository. | ||
|
||
The OCI Catalog service uses a strategy pattern to enable listing catalog information for different OCI provider registries, until a standard is set for requesting namespaced repositories of a registry in the OCI Distribution specification. | ||
|
||
Usage: oci-catalog [OPTIONS] | ||
|
||
Options: | ||
-p, --port <PORT> | ||
Specify the port on which oci-catalog gRPC service listens. | ||
|
||
[env: OCI_CATALOG_PORT=] | ||
[default: 50001] | ||
|
||
-h, --help | ||
Print help (see a summary with '-h') | ||
|
||
-V, --version | ||
Print version | ||
``` |
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
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
Oops, something went wrong.