Skip to content

Fix readme (added backend config) #4765

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
19 changes: 19 additions & 0 deletions workspaces/kiali/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,25 @@ The following table describes the parameters that you can configure to enable th
| `caFile` | Filesystem path (on the host where the Backstage process is running) to a certificate authority bundle in PEM format | "" | No |
| `sessionTime` | Time in seconds that session is enabled | 60 | No |

#### Setting up the Kiali backend package

1. Install the Kiali backend plugin using the following command:

```console
yarn workspace backend add @backstage-community/plugin-kiali-backend
```

2. Add the Kiali backend in the `packages/backend/src/index.ts` file as follows:

```tsx title="packages/backend/src/index.ts"
const backend = createBackend();

// kiali
backend.add(import('@backstage-community/plugin-kiali-backend'));

backend.start();
```

## For users

We have 2 ways to consume the Kiali plugin, entity view or full view.
Expand Down