Skip to content

Commit 5f6102c

Browse files
Fix links found by Link Checker (#415)
Co-authored-by: Natalia Sitko <[email protected]>
1 parent b722e56 commit 5f6102c

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Code of conduct
22

3-
Each contributor and maintainer of this project agrees to follow the [community Code of Conduct](https://github.com/kyma-project/community/blob/main/contributing/01-code-of-conduct.md) that relies on the CNCF Code of Conduct. Read it to learn about the agreed standards of behavior, shared values that govern our community, and details on how to report any suspected Code of Conduct violations.
3+
Each contributor and maintainer of this project agrees to follow the [community Code of Conduct](https://github.com/kyma-project/community/blob/main/docs/contributing/01-code-of-conduct.md) that relies on the CNCF Code of Conduct. Read it to learn about the agreed standards of behavior, shared values that govern our community, and details on how to report any suspected Code of Conduct violations.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ kubectl apply -f https://github.com/kyma-project/serverless-manager/releases/lat
100100

101101
- Use external registry.
102102

103-
The following example shows how you can modify the Serverless docker registry address using the `serverless.operator.kyma-project.io` CR:
103+
The following example shows how you can modify the Serverless Docker registry address using the `serverless.operator.kyma-project.io` CR:
104104

105105
```bash
106106
kubectl create secret generic my-secret \
@@ -112,6 +112,7 @@ kubectl apply -f https://github.com/kyma-project/serverless-manager/releases/lat
112112
```
113113

114114
> **NOTE:** For DockerHub:
115+
<!-- markdown-link-check-disable-next-line -->
115116
> - SERVER_ADDRESS is "https://index.docker.io/v1/",
116117
> - USERNAME and REGISTRY_ADDRESS must be identical.
117118

components/serverless/design/glossary_proposal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Currently, Serverless in Kyma consists of two projects:
66

7-
- [function-controller](https://github.com/kyma-project/kyma/tree/main/components/function-controller) -
7+
- [function-controller](../README.md)() -
88
responsible for running a Function on a Kubernetes cluster
99
- [serverless-manager](https://github.com/kyma-project/serverless-manager) - responsible for installation and
1010
configuration of Serverless

config/serverless/charts/webhook/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ This project contains the chart for the Webhook.
66

77
## Details
88

9-
For more information, read the Webhooks [README](https://github.com/kyma-project/kyma/tree/main/components/function-controller/README.md) file.
9+
For more information, read the Webhooks [README](../../../../components/serverless/README.md) file.

docs/user/technical-reference/07-20-function-processing-stages.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Function processing stages
22

3-
From the moment you [create a Function](01-10-create-inline-function.md) (Function CR) until the time it is ready, it goes through three processing stages that are defined as these condition types:
3+
From the moment you [create a Function](../tutorials/01-10-create-inline-function.md) (Function CR) until the time it is ready, it goes through three processing stages that are defined as these condition types:
44

55
1. `ConfigurationReady` (PrinterColumn `CONFIGURED`)
66
2. `BuildReady` (PrinterColumn `BUILT`)
@@ -17,13 +17,13 @@ When you update an existing Function, conditions change asynchronously depending
1717

1818
The diagrams illustrate all three core status changes in the Function processing circle that the Function Controller handles. They also list all custom resources involved in this process and specify in which cases their update is required.
1919

20-
>**NOTE:** Before you start reading, see the [Function CR](resources/06-10-function-cr.md) document for the custom resource detailed definition, the list of all Function's condition types, and reasons for their success or failure.
20+
>**NOTE:** Before you start reading, see the [Function CR](../resources/06-10-function-cr.md) document for the custom resource detailed definition, the list of all Function's condition types, and reasons for their success or failure.
2121
2222
## Configured
2323

2424
This initial phase starts when you create a Function CR with configuration specifying the Function's setup. It ends with creating a ConfigMap that is used as a building block for a Function image.
2525

26-
![Function configured](../assets/svls-configured.svg)
26+
![Function configured](../../assets/svls-configured.svg)
2727

2828
## Built
2929

docs/user/technical-reference/07-70-function-specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,6 @@ You can use a custom runtime image to override the existing one. Your image must
257257
- Fetch sources from the path under the `KUBELESS_INSTALL_VOLUME` environment
258258
- Security support. Kyma runtimes are secure by default. You only need to protect your images.
259259

260-
> **NOTE:** For better understanding, you can look at the [main Docker files](https://github.com/kyma-project/kyma/blob/main/resources/serverless/templates/runtimes.yaml). They are responsible for building the final image based on the `base_image` argument. You, as a user, can override it and what we are doing in [this tutorial](../tutorials/01-110-override-runtime-image.md).
260+
> **NOTE:** For better understanding, you can look at the [main Docker files](../../../config/serverless/templates/runtimes.yaml). They are responsible for building the final image based on the `base_image` argument. You, as a user, can override it and what we are doing in [this tutorial](../tutorials/01-110-override-runtime-image.md).
261261
262262
Every Function's Pods container has the same system environments, which helps you configure the Functions server. For more information, read the [Environment variables](05-20-env-variables.md) page.

docs/user/tutorials/01-50-sync-function-with-gitops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ These sections will lead you through the whole installation, configuration, and
3838
kubectl cluster-info
3939
```
4040

41-
3. Apply the `functions.serverless.kyma-project.io` CRD from sources in the [`kyma`](https://github.com/kyma-project/kyma/tree/main/installation/resources/crds/serverless) repository. You will need it to create the Function CR on the cluster.
41+
3. Apply the `functions.serverless.kyma-project.io` CRD from sources in the [`serverless`](https://github.com/kyma-project/serverless/tree/main/components/serverless/config/crd) repository. You will need it to create the Function CR on the cluster.
4242

4343
```bash
44-
kubectl apply -f https://raw.githubusercontent.com/kyma-project/kyma/main/installation/resources/crds/serverless/functions.serverless.crd.yaml
44+
kubectl apply -f https://raw.githubusercontent.com/kyma-project/serverless/main/components/serverless/config/crd/bases/serverless.kyma-project.io_functions.yaml
4545
```
4646
4. Run this command to make sure the CRs are applied:
4747

docs/user/tutorials/_sidebar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* [Manage Functions through Kyma CLI](01-30-manage-functions-with-kyma-cli.md)
77
* [Debug a Function](01-40-debug-function.md)
88
* [Log into a private package registry](01-80-log-into-private-packages-registry.md)
9-
* [Set asynchronous communication between Functions](01-90-set-asynchronous-connection)
9+
* [Set asynchronous communication between Functions](01-90-set-asynchronous-connection.md)
1010
* [Customize Function traces](01-100-customize-function-traces.md)
1111
* [Override runtime image](01-110-override-runtime-image.md)
1212
* [Inject environment variables](01-120-inject-envs.md)

0 commit comments

Comments
 (0)