Skip to content

Commit

Permalink
Fix serverless leftovers (#18093)
Browse files Browse the repository at this point in the history
* remove svls component docs

* fix links

* remove assets

* Fix Serverless leftovers
  • Loading branch information
grego952 authored Aug 31, 2023
1 parent fb331fc commit 4785615
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

Out of the box, Kyma offers various functionalities, such as:

- [Serverless](https://kyma-project.io/#/01-overview/serverless/README) development platform to run lightweight Functions in a cost-efficient and scalable way
- [Serverless](https://kyma-project.io/#/serverless-manager/user/README) development platform to run lightweight Functions in a cost-efficient and scalable way
- [System connectivity](https://kyma-project.io/#/01-overview/application-connectivity/README) that provides endpoint to securely register Events and APIs of external applications
- [Eventing](https://kyma-project.io/#/01-overview/eventing/README) that provides messaging channel to receive events, enrich them, and trigger business flows using Functions or services
- [Service Mesh](https://kyma-project.io/#/01-overview/service-mesh/README) for service-to-service communication and proxying
Expand Down
2 changes: 1 addition & 1 deletion components/function-runtimes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

## Overview

This project includes Docker images which are used as a base for serverless Functions. See the [Serverless](../../docs/01-overview/serverless) documentation for more information on serverless Functions.
This project includes Docker images which are used as a base for serverless Functions. See the [Serverless](https://kyma-project.io/#/serverless-manager/user/README) documentation for more information on serverless Functions.
1 change: 0 additions & 1 deletion docs/03-tutorials/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
* [Eventing](/03-tutorials/00-eventing/README.md)
* [Observability](/03-tutorials/00-observability.md)
* [Security](/03-tutorials/00-security/README.md)
* [Serverless](/03-tutorials/00-serverless/README.md)
* [Service Management](/03-tutorials/00-service-management/smgt-01-deploy-service.md)
1 change: 0 additions & 1 deletion docs/04-operation-guides/troubleshooting/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* [Eventing](eventing/README.md)
* [Observability](observability/README.md)
* [Security](security/README.md)
* [Serverless](serverless/README.md)
* [Service Mesh](service-mesh/README.md)
* [Component doesn't work after successful installation](01-component-installation-fails.md)
* [Local Kyma deployment fails with pending Pods](01-deplyoment-fails-pending-pods.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Here's a list of the most commonly used terms that you may come across when brow
| Custom resource | A custom resource (CR) allows you to extend the Kubernetes API to cover use cases that are not directly covered by core Kubernetes. | [Kubernetes - Custom Resource](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/) & [Custom resources provided by Kyma](./05-technical-reference/00-custom-resources) |
| CustomResourceDefinition (CRD) | An object used to define a custom resource. | [CRDs of custom resources provided by Kyma](https://github.com/kyma-project/kyma/tree/main/installation/resources/crds) |
| Deployment | Deployment is a Kubernetes object that represents a replicated application running on your cluster. | [Kubernetes - Deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) |
| Function | A simple code snippet that you can run without provisioning or managing servers. It implements the exact business logic you define. A Function is based on the Function custom resource (CR) and can be written in either Node.js or Python. A Function can perform a business logic of its own. You can also bind it to an instance of a service and configure it to be triggered whenever it receives a particular event type from the service or a call is made to the service's API. Functions are executed only if they are triggered by an event or an API call. | [What is Serverless in Kyma?](./01-overview/serverless) |
| Function | A simple code snippet that you can run without provisioning or managing servers. It implements the exact business logic you define. A Function is based on the Function custom resource (CR) and can be written in either Node.js or Python. A Function can perform a business logic of its own. You can also bind it to an instance of a service and configure it to be triggered whenever it receives a particular event type from the service or a call is made to the service's API. Functions are executed only if they are triggered by an event or an API call. | [What is Serverless in Kyma?](https://kyma-project.io/#/serverless-manager/user/README) |
| Kyma cluster | A Kubernetes cluster with Kyma installed. | [Kubernetes components](https://kubernetes.io/docs/concepts/overview/components/) |
| Kyma Dashboard | Kyma Dashboard is a web-based UI for managing resources within Kyma or any Kubernetes cluster. | [What are the UIs available in Kyma?](./01-overview/ui)
| Microservice | An architectural variant for extensions or applications, where you separate the tasks into smaller pieces that interact with each other as loosely coupled, independently deployable units of code. A failing microservice should not cause your whole application to fail. Microservices are packed in a container that is always running; it's idling if there is no load. The microservice should always be reachable even when the Pods move around. Microservices typically communicate through APIs. | |
Expand Down

0 comments on commit 4785615

Please sign in to comment.