Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/data/playground-configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ export const chartConfigs: Record<string, ChartConfig> = {
key: 'ingress.ingressClassName',
type: 'select',
default: 'traefik',
options: ['traefik', 'nginx'],
options: ['', 'traefik', 'nginx'],
description: 'Ingress controller class',
},
],
Expand All @@ -1229,6 +1229,20 @@ export const chartConfigs: Record<string, ChartConfig> = {
},
],
},
{
name: 'NetworkPolicy',
collapsible: true,
gateField: 'networkPolicy.enabled',
fields: [
{
label: 'DNS Egress',
key: 'networkPolicy.extraEgress[0].ports[0].port',
type: 'number',
default: '53',
description: 'Example extra egress DNS port',
},
],
},
],
'envoy-gateway': [
{
Expand Down
10 changes: 7 additions & 3 deletions src/pages/docs/charts/github-mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,20 @@ Storage and scaling:
- `persistence.enabled`: optional data volume. The server is stateless by default.
- `persistence.size`, `persistence.storageClass`, `persistence.accessModes`: generated PVC settings.
- `persistence.existingClaim`, `persistence.mountPath`: existing claim and mount path.
- `replicaCount > 1` with persistence requires `ReadWriteMany` or `persistence.enabled=false`.
- `replicaCount > 1` with chart-created persistence requires `ReadWriteMany` or `persistence.enabled=false`.
When `persistence.existingClaim` is set, the external claim controls access modes.

Exposure and operations:

- `serviceAccount.create`, `serviceAccount.name`, `serviceAccount.annotations`, `serviceAccount.automountServiceAccountToken`.
- `service.type`, `service.port`, `service.annotations`, `service.ipFamilyPolicy`, `service.ipFamilies`.
- `ingress.enabled`, `ingress.ingressClassName`, `ingress.annotations`, `ingress.hosts`, `ingress.tls`.
- `ingress.enabled`, `ingress.ingressClassName`, `ingress.annotations`, `ingress.hosts`, `ingress.tls`. Set
`ingress.ingressClassName: ""` to omit `spec.ingressClassName`.
- `gateway.enabled`, `gateway.parentRefs`, `gateway.hostnames`, `gateway.path`, `gateway.pathType`.
- `pdb.enabled`, `pdb.minAvailable`.
- `networkPolicy.enabled`, `networkPolicy.ingressFrom`.
- `networkPolicy.enabled`, `networkPolicy.ingressFrom`, `networkPolicy.extraEgress`.
Enabling only `networkPolicy.enabled` creates an ingress-only policy.
Setting `networkPolicy.extraEgress` adds egress isolation with built-in DNS and HTTPS allowances before appending the supplied rules.
- `probes.startup`, `probes.liveness`, `probes.readiness`: enable flags and timing values.
- `resources`, `podSecurityContext`, `securityContext`, `nodeSelector`, `tolerations`, `affinity`.
- `topologySpreadConstraints`, `priorityClassName`, `terminationGracePeriodSeconds`.
Expand Down
1 change: 1 addition & 0 deletions src/pages/playground.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const siteSyncPlaygroundConfigs: Record<string, string> = {
'adguard-home': 'src/data/playground-configs.ts',
booklore: 'src/data/playground-configs.ts',
changedetection: 'src/data/playground-configs.ts',
'github-mcp-server': 'src/data/playground-configs.ts',
medikeep: 'src/data/playground-configs.ts',
memcached: 'src/data/playground-configs.ts',
notediscovery: 'src/data/playground-configs.ts',
Expand Down