Skip to content

Commit 9f74697

Browse files
committed
Fix broken links in documentation
Signed-off-by: Willem Pienaar <git@willem.co>
1 parent 6e75a49 commit 9f74697

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

docs/reference/configuration-reference.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# Configuration Reference
22

3-
### Overview
3+
## Overview
44

55
This reference describes how to configure Feast components:
66

77
* [Feast Core and Feast Online Serving](configuration-reference.md#2-feast-core-serving-and-job-controller)
88
* [Feast CLI and Feast Python SDK](configuration-reference.md#3-feast-cli-and-feast-python-sdk)
99
* [Feast Go and Feast Java SDK](configuration-reference.md#4-feast-java-and-go-sdk)
1010

11-
### 1. Feast Core and Feast Online Serving
11+
## 1. Feast Core and Feast Online Serving
1212

1313
Available configuration properties for Feast Core and Feast Online Serving can be referenced from the corresponding `application.yml` of each component:
1414

1515
| Component | Configuration Reference |
1616
| :--- | :--- |
17-
| Core | [core/src/main/resources/application.yml](https://github.com/feast-dev/feast/blob/master/core/src/main/resources/application.yml) |
18-
| Serving \(Online\) | [serving/src/main/resources/application.yml](https://github.com/feast-dev/feast/blob/master/serving/src/main/resources/application.yml) |
17+
| Core | [core/src/main/resources/application.yml](https://github.com/feast-dev/feast-java/blob/master/core/src/main/resources/application.yml) |
18+
| Serving \(Online\) | [serving/src/main/resources/application.yml](https://github.com/feast-dev/feast-java/blob/master/serving/src/main/resources/application.yml) |
1919

2020
Configuration properties for Feast Core and Feast Online Serving are defined depending on Feast is deployed:
2121

2222
* [Docker Compose deployment](configuration-reference.md#docker-compose-deployment) - Feast is deployed with Docker Compose.
2323
* [Kubernetes deployment](configuration-reference.md#kubernetes-deployment) - Feast is deployed with Kubernetes.
2424
* [Direct Configuration](configuration-reference.md#direct-configuration) - Feast is built and run from source code.
2525

26-
### Docker Compose Deployment
26+
## Docker Compose Deployment
2727

2828
For each Feast component deployed using Docker Compose, configuration properties from `application.yml` can be set at:
2929

@@ -32,9 +32,9 @@ For each Feast component deployed using Docker Compose, configuration properties
3232
| Core | `infra/docker-compose/core/core.yml` |
3333
| Online Serving | `infra/docker-compose/serving/online-serving.yml` |
3434

35-
### Kubernetes Deployment
35+
## Kubernetes Deployment
3636

37-
The Kubernetes Feast Deployment is configured using `values.yaml` in the [Helm chart ](https://github.com/feast-dev/feast/blob/master/infra/charts/feast/README.md)included with Feast:
37+
The Kubernetes Feast Deployment is configured using `values.yaml` in the [Helm chart](https://github.com/feast-dev/feast-helm-charts) included with Feast:
3838

3939
```yaml
4040
# values.yaml
@@ -48,8 +48,8 @@ feast-core:
4848

4949
A reference of the sub-chart-specific configuration can found in its `values.yml`:
5050

51-
* [feast-core](https://github.com/feast-dev/feast/blob/master/infra/charts/feast/charts/feast-core)
52-
* [feast-serving](https://github.com/feast-dev/feast/tree/master/infra/charts/feast/charts/feast-serving)
51+
* [feast-core](https://github.com/feast-dev/feast-java/tree/master/infra/charts/feast-core)
52+
* [feast-serving](https://github.com/feast-dev/feast-java/tree/master/infra/charts/feast-serving)
5353

5454
Configuration properties can be set via `application-override.yaml` for each component in `values.yaml`:
5555

@@ -62,18 +62,18 @@ feast-core:
6262
# ...
6363
```
6464

65-
Visit the [Helm chart](https://github.com/feast-dev/feast/blob/master/infra/charts/feast/README.md) included with Feast to learn more about configuration.
65+
Visit the [Helm chart](https://github.com/feast-dev/feast-helm-charts) included with Feast to learn more about configuration.
6666

67-
### Direct Configuration
67+
## Direct Configuration
6868

6969
If Feast is built and running from source, configuration properties can be set directly in the Feast component's `application.yml`:
7070

7171
| Component | Configuration Path |
7272
| :--- | :--- |
73-
| Core | [core/src/main/resources/application.yml](https://github.com/feast-dev/feast/blob/master/core/src/main/resources/application.yml) |
74-
| Serving \(Online\) | [serving/src/main/resources/application.yml](https://github.com/feast-dev/feast/blob/master/serving/src/main/resources/application.yml) |
73+
| Core | [core/src/main/resources/application.yml](https://github.com/feast-dev/feast-java/blob/master/core/src/main/resources/application.yml) |
74+
| Serving \(Online\) | [serving/src/main/resources/application.yml](https://github.com/feast-dev/feast-java/blob/master/serving/src/main/resources/application.yml) |
7575

76-
### 2. Feast CLI and Feast Python SDK
76+
## 2. Feast CLI and Feast Python SDK
7777

7878
Configuration options for both the [Feast CLI](../getting-started/connect-to-feast/feast-cli.md) and [Feast Python SDK](https://api.docs.feast.dev/python/) can be defined in the following locations, in order of precedence:
7979

@@ -106,13 +106,13 @@ project = default
106106
core_url = localhost:6565
107107
```
108108

109-
Visit the [available configuration parameters](https://api.docs.feast.dev/python/#module-feast.constants) for Feast Python SDK and Feast CLI to learn more.
109+
Visit the [available configuration parameters](https://api.docs.feast.dev/python/#module-feast.constants) for Feast Python SDK and Feast CLI to learn more.
110110

111-
### 3. Feast Java and Go SDK
111+
## 3. Feast Java and Go SDK
112112

113113
The [Feast Java SDK](https://javadoc.io/doc/dev.feast/feast-sdk/latest/com/gojek/feast/package-summary.html) and [Feast Go SDK](https://godoc.org/github.com/feast-dev/feast/sdk/go) are configured via arguments passed when instantiating the respective Clients:
114114

115-
#### Go SDK
115+
### Go SDK
116116

117117
```go
118118
// configure serving host and port.
@@ -121,7 +121,7 @@ cli := feast.NewGrpcClient("localhost", 6566)
121121

122122
Visit the[ Feast Go SDK API reference](https://godoc.org/github.com/feast-dev/feast/sdk/go) to learn more about available configuration parameters.
123123

124-
#### Java SDK
124+
### Java SDK
125125

126126
```java
127127
// configure serving host and port.

0 commit comments

Comments
 (0)