-
Notifications
You must be signed in to change notification settings - Fork 49
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
feat: Update docs about recent changes related to kyma-dashboard #3347
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3ec6a69
add docs for kyma
dbadura efd0103
adjust test/kyma dir
dbadura 473fdba
add docs about config
dbadura 4f38e97
improve docs
dbadura b6bab63
fix readmes
dbadura 9152571
fix
dbadura 42c4451
update docs
dbadura 246d10b
Apply suggestions from code review
dbadura 20d062d
update docs review
dbadura e54682e
fix names
dbadura 03c09b4
use Kyma dashboard
dbadura 95f554e
Update kyma/README.md
dbadura File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Kyma Dashboard | ||
|
||
## Overview | ||
The directory contains the configuration of Kyma extensibility for Busola and tools to prepare the configuration for building Kyma dashboard using Busola. | ||
|
||
Files structure: | ||
``` | ||
./extensions/ | ||
├── ... | ||
./environments/ | ||
├── dev | ||
│ ├── config.yaml | ||
│ ├── extensions.json | ||
│ ├── statics.json | ||
│ └── wizards.json | ||
├── prod | ||
│ ├── config.yaml | ||
│ ├── extensions.json | ||
│ ├── statics.json | ||
│ └── wizards.json | ||
└── stage | ||
├── config.yaml | ||
├── extensions.json | ||
├── statics.json | ||
└── wizards.json | ||
|
||
3 directories, 12 files | ||
``` | ||
|
||
The `environments` directory contains configuration per environment. | ||
The environment configuration contains `config.yaml` for Busola and `extensions.json`, `statics.json`, and `wizards.json` with a list of extensibility configurations. | ||
The entries for extensibility can be `relative path to Kyma directory` or `URL to extension yaml`. | ||
|
||
The `extensions` directory contains a general extensibility configuration to avoid duplication in each environment configuration directory. | ||
|
||
## Prerequisites | ||
|
||
- [`npm`](https://www.npmjs.com/) in version 10.x | ||
- [Node.js](https://nodejs.org/en/) in version 20.x | ||
- [Make](https://www.gnu.org/software/make/) | ||
|
||
## Installation | ||
To download all dependencies needed to prepare configurations, run: | ||
|
||
```bash | ||
npm clean-install | ||
``` | ||
|
||
## Usage | ||
|
||
To prepare the final configuration for Busola, run: | ||
```bash | ||
make prepare-all-configuration | ||
``` | ||
|
||
This target fetches and copies the configuration file to the `temp` directory. | ||
Then, all the files are merged and moved to the final `build` directory. |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What is this installation instruction for?
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.
It's used to download all dependencies needed to
make prepare-all-configuration
to work.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.
I suggest adding the information here.