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
14 changes: 14 additions & 0 deletions src/data/playground-configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7088,6 +7088,20 @@ export const chartConfigs: Record<string, ChartConfig> = {
default: 'true',
description: 'Allow DNS egress',
},
{
label: 'Extra Egress CIDR',
key: 'networkPolicy.egress.extraEgress[0].to[0].ipBlock.cidr',
type: 'text',
default: '10.80.0.0/16',
description: 'Additional egress destination',
},
{
label: 'Extra Egress Port',
key: 'networkPolicy.egress.extraEgress[0].ports[0].port',
type: 'number',
default: '443',
description: 'Additional TCP egress port',
},
],
},
{
Expand Down
8 changes: 8 additions & 0 deletions src/pages/docs/charts/memcached.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,13 @@ networkPolicy:
egress:
enabled: true
allowDNS: true
extraEgress:
- to:
- ipBlock:
cidr: 10.80.0.0/16
ports:
- port: 443
protocol: TCP

pdb:
enabled: true
Expand Down Expand Up @@ -301,6 +308,7 @@ Memcached authentication is disabled.
| `metrics.memcachedTLS.enabled` | `false` | Uses TLS between the exporter and local Memcached process. |
| `networkPolicy.enabled` | `false` | Renders NetworkPolicy rules for cache and metrics access. |
| `networkPolicy.egress.enabled` | `false` | Adds optional egress policy rules. |
| `networkPolicy.egress.extraEgress` | `[]` | Appends full custom NetworkPolicy egress rules to generated egress. |
| `autoscaling.enabled` | `false` | Enables HPA for distributed mode only. |
| `pdb.enabled` | `false` | Renders a PodDisruptionBudget. |
| `service.type` | `ClusterIP` | Client Service type; use `LoadBalancer` if external TCP exposure is required. |
Expand Down