Skip to content

Commit 39bae94

Browse files
committed
Fixes broken docs links and markdown layout issues.
1 parent 45abc30 commit 39bae94

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,5 @@ nut_webgui has basic probe endpoints to check server health and readiness:
142142
## Building from source and debugging
143143

144144
[Building and Debugging](./docs/building_debugging.md)
145+
145146
[Custom Build Pipeline](./docs/custom_build_pipeline.md)

docs/custom_build_pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Custom build configuration
22

3-
By default, build pipeline *(aka shell scripts glued together)* uses [`build.config.json`](build.config.json) to
3+
By default, build pipeline *(aka shell scripts glued together)* uses [`build.config.json`](../build.config.json) to
44
generate dockerfiles and build binaries. You can provide custom configuration to create custom build pipeline.
55

66
## Example: Alpine Linux as base image with ARM only builds
@@ -95,7 +95,7 @@ generate dockerfiles and build binaries. You can provide custom configuration to
9595
make gen-dockerfiles BUILD_CONFIG="/path/of/custom.config.json" DOCKER_TEMPLATE="/path/of/custom.docker.template";
9696
```
9797

98-
4. (Optional, requires buildah) Build images and manifest locally with [`tools/build_images.sh`](tools/build_images.sh)
98+
4. (Optional, requires buildah) Build images and manifest locally with [`tools/build_images.sh`](../tools/build_images.sh)
9999

100100
```bash
101101
# if your buildah requires sudo access, use it with `sudo -E`

docs/examples/02_compose.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ services:
7777
UPSD_PASS: "test"
7878
PORT: "80" # Outgoing port
7979
LOG_LEVEL: "debug"
80-
81-
volumes:
82-
config-data:
8380
```
8481
8582
## With Secrets

docs/examples/03_kubernetes_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data:
3333
3434
**service.yaml**
3535
36-
```
36+
```yaml
3737
apiVersion: v1
3838
kind: Service
3939
metadata:

docs/examples/04_kubernetes_endpointslice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ endpoints:
5050

5151
**service.yaml**
5252

53-
```
53+
```yaml
5454
apiVersion: v1
5555
kind: Service
5656
metadata:

0 commit comments

Comments
 (0)