Skip to content

Commit 94b4c2e

Browse files
Merge pull request #75 from bunkerity/dev-mf-docu
docu fix: namespaces to monitor are space separated, not comma separated
2 parents 32468cc + 1ffb533 commit 94b4c2e

7 files changed

Lines changed: 730 additions & 731 deletions

File tree

charts/bunkerweb/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ settings:
6161

6262
# ----- KUBERNETES INTEGRATION -----
6363
kubernetes:
64-
# Comma-separated list of namespaces to monitor for Ingress resources
64+
# Space-separated list of namespaces to monitor for Ingress resources
6565
# Empty string means all namespaces (requires cluster-wide permissions)
66-
# Example: "default,production,staging"
66+
# Example: "default production staging"
6767
namespaces: ""
6868

6969
# Ingress class name that BunkerWeb will handle

docs/values.md

Lines changed: 714 additions & 720 deletions
Large diffs are not rendered by default.

examples/all-in-one.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ settings:
5757

5858
# ----- KUBERNETES INTEGRATION -----
5959
kubernetes:
60-
# Comma-separated list of namespaces to monitor for Ingress resources
60+
# Space-separated list of namespaces to monitor for Ingress resources
6161
# Empty string means all namespaces (requires cluster-wide permissions)
62-
# Example: "default,production,staging"
62+
# Example: "default production staging"
6363
namespaces: ""
6464

6565
# Ingress class name that BunkerWeb will handle

examples/high-availability.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ settings:
9292

9393
# ----- KUBERNETES INTEGRATION -----
9494
kubernetes:
95-
# Comma-separated list of namespaces to monitor for Ingress resources
95+
# Space-separated list of namespaces to monitor for Ingress resources
9696
# Empty string means all namespaces (requires cluster-wide permissions)
97-
# Example: "default,production,staging"
97+
# Example: "default production staging"
9898
namespaces: ""
9999

100100
# Ingress class name that BunkerWeb will handle

examples/mcp-integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ settings:
7878

7979
# ----- KUBERNETES INTEGRATION -----
8080
kubernetes:
81-
# Comma-separated list of namespaces to monitor for Ingress resources
81+
# Space-separated list of namespaces to monitor for Ingress resources
8282
# Empty string means all namespaces (requires cluster-wide permissions)
83-
# Example: "default,production,staging"
83+
# Example: "default production staging"
8484
namespaces: ""
8585

8686
# Ingress class name that BunkerWeb will handle

examples/minimal.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ settings:
7777

7878
# ----- KUBERNETES INTEGRATION -----
7979
kubernetes:
80-
# Comma-separated list of namespaces to monitor for Ingress resources
80+
# Space-separated list of namespaces to monitor for Ingress resources
8181
# Empty string means all namespaces (requires cluster-wide permissions)
82-
# Example: "default,production,staging"
82+
# Example: "default production staging"
8383
namespaces: ""
8484

8585
# Ingress class name that BunkerWeb will handle

scripts/generate-docs.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ def get_default_value(value: Any) -> str:
4040
if value == "":
4141
return '`""`'
4242
else:
43-
return f'`"{value}"`'
43+
# Collapse multi-line values (e.g. redis.config.file) to a single
44+
# line so they don't break the markdown table they sit in.
45+
single_line = "; ".join(
46+
line.strip() for line in value.splitlines() if line.strip()
47+
)
48+
return f'`"{single_line}"`'
4449
elif isinstance(value, bool):
4550
return f"`{str(value).lower()}`"
4651
elif isinstance(value, (int, float)):

0 commit comments

Comments
 (0)