-
Notifications
You must be signed in to change notification settings - Fork 599
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Service Catalog landing page (#7739) * Add sections and content (that needs to be paired down) Signed-off-by: Diana <[email protected]> * Revise intro paragraph and terminology table, also placeholder for FAQ and diagrams Signed-off-by: Diana <[email protected]> * Finish draft of Service Catalog overview and appease Vale Signed-off-by: Diana <[email protected]> * Improve the Service Catalog diagram Signed-off-by: Diana <[email protected]> * Apply Miko's feedback Signed-off-by: Diana <[email protected]> * Appease Vale Signed-off-by: Diana <[email protected]> * Fix related info link text Signed-off-by: Diana <[email protected]> * Apply suggestions from code review Co-authored-by: Angel <[email protected]> * Apply more feedback like making a use case table Signed-off-by: Diana <[email protected]> * Apply more feedback, fix expander menus Signed-off-by: Diana <[email protected]> * Small fixes Signed-off-by: Diana <[email protected]> * Fix naming of Service Catalog service and Gateway service Signed-off-by: Diana <[email protected]> * Generalize the integrations/resources in the diagram, fix diagram styling, apply Miko's feedback Signed-off-by: Diana <[email protected]> * Apply suggestions from code review to improve diagram Co-authored-by: lena-larionova <[email protected]> --------- Signed-off-by: Diana <[email protected]> Co-authored-by: Angel <[email protected]> Co-authored-by: lena-larionova <[email protected]> * Service Catalog: teams and roles (#7849) * teams and roles * Apply suggestions from code review Co-authored-by: lena-larionova <[email protected]> * Update app/konnect/org-management/teams-and-roles/roles-reference.md Co-authored-by: lena-larionova <[email protected]> --------- Co-authored-by: lena-larionova <[email protected]> * feat: Service Catalog Integrations landing page (#7862) * integrations landing page * drafts for integrations * github, traceable, pagerduty * fix icons + replace with smaller icons; clean up * add bindable to dictionary * create include for discovery info --------- Co-authored-by: Angel <[email protected]> * Apply suggestions from code review * Apply suggestions from code review * fix include * vale * Update app/konnect/service-catalog/integrations/traceable.md Co-authored-by: lena-larionova <[email protected]> --------- Signed-off-by: Diana <[email protected]> Co-authored-by: Diana <[email protected]> Co-authored-by: lena-larionova <[email protected]> Co-authored-by: lena-larionova <[email protected]>
- Loading branch information
1 parent
d09ea53
commit e45ec61
Showing
15 changed files
with
359 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,6 +153,7 @@ backporting | |
backtrace | ||
Bagdi | ||
bcc | ||
bindable | ||
Bintray | ||
Bitnami | ||
blockquote | ||
|
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,21 @@ | ||
integrations: | ||
- name: PagerDuty | ||
icon: pagerduty.svg | ||
slug: pagerduty | ||
description: Alert service teams via PagerDuty alerts and provide information on current open incidents | ||
- name: GitHub | ||
icon: github.svg | ||
slug: github | ||
description: Associate a service to one or more GitHub repositories | ||
- name: Traceable.io | ||
icon: traceable.svg | ||
slug: traceable | ||
description: Manage and secure services that Traceable discovers by analyzing API traffic across your entire application landscape | ||
|
||
##### Using this file ###### | ||
# - name: Name of the integration | ||
# icon: The filename + extension of the icon for the integration, e.g. pagerduty.svg | ||
# Put icon in /assets/images/icons/third-party/<file>. | ||
# slug: The filename of the integration page itself, used for links. Don't include the file extension (e.g. .md) | ||
# E.g. if the page is at /konnect/service-catalog/integrations/pagerduty, the slug is pagerduty | ||
# description: Short description (100 char max) of the integration |
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,4 @@ | ||
* Discovery {% if include.discovery_support == true %}is{% else %}isn't{% endif %} supported by this integration | ||
* Discovery {% if include.discovery_default == true %}is{% else %}isn't{% endif %} enabled by default | ||
* Bindable entities: {{ include.bindable_entities }} | ||
* Discovery mechanism: {{ include.mechanism }} |
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,13 @@ | ||
<div class="docs-grid-install max-3"> | ||
{% for i in site.data.tables.konnect.integrations.integrations %} | ||
<a class="docs-grid-install-block docs-grid-install-block__bottom" href="/konnect/service-catalog/integrations/{{i.slug}}/"> | ||
<img class="install-icon no-image-expand small" src="/assets/images/icons/third-party/{{i.icon }}" style="width:32px" alt=""> | ||
<div class="install-block-column"> | ||
<div class="install-text"> | ||
<span style="font-size: 22px;display:block;margin-bottom:8px;">{{ i.name }}</span> | ||
</div> | ||
<div class="install-description">{{i.description}}</div> | ||
</div> | ||
</a> | ||
{% endfor %} | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: GitHub Integration | ||
content-type: reference | ||
|
||
discovery_support: true | ||
discovery_default: true | ||
bindable_entities: "Repositories" | ||
mechanism: "pull/ingestion model" | ||
--- | ||
|
||
_Type: External_ | ||
|
||
The GitHub integration allows you to associate your Service Catalog service to one or more GitHub repositories. | ||
|
||
For each linked Repository, the UI can show a **Repository Summary** with simple data pulled from the GitHub API, such as the number of open issues, open pull requests, most recently closed pull requests, languages, and more. | ||
|
||
## Authorize the GitHub integration | ||
|
||
1. From {{site.konnect_product_name}} select **[Integrations](https://cloud.konghq.com/us/service-catalog/integrations)**. | ||
2. Select **GitHub**, then **Install Github**. | ||
3. Select **Authorize**. | ||
|
||
This will take you to GitHub where you can grant {{site.konnect_product_name}} access to either **All Repositories** or **Select repositories**. | ||
|
||
The {{site.konnect_product_name}} application can be managed from GitHub as a [GitHub Application](https://docs.github.com/en/apps/using-github-apps/authorizing-github-apps). | ||
|
||
## Resources | ||
|
||
Entity | Description | ||
-------|------------- | ||
Repository | A GitHub repository relating to the service | ||
|
||
## Discovery information | ||
|
||
<!-- vale off--> | ||
|
||
{% include_cached service-catalog-discovery.html | ||
discovery_support=page.discovery_support | ||
discovery_default=page.discovery_default | ||
bindable_entities=page.bindable_entities | ||
mechanism=page.mechanism %} | ||
|
||
<!-- vale on--> |
Oops, something went wrong.