Skip to content

Commit

Permalink
Deprecate global.connectivity.network.allowAllEgress (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
nprokopic authored Aug 9, 2024
1 parent fbbe94e commit 7b1490d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Deprecate usage of `.Values.global.connectivity.network.allowAllEgress`.

## [1.1.0] - 2024-08-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion helm/cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Configuration of connectivity and networking options.
| `global.connectivity.bastion.enabled` | **Enable**|**Type:** `boolean`<br/>**Default:** `true`|
| `global.connectivity.bastion.replicas` | **Number of hosts**|**Type:** `integer`<br/>**Default:** `1`|
| `global.connectivity.network` | **Network**|**Type:** `object`<br/>|
| `global.connectivity.network.allowAllEgress` | **Allow all egress**|**Type:** `boolean`<br/>**Default:** `false`|
| `global.connectivity.network.allowAllEgress` | **Allow all egress (DEPRECATED)** - This flag has been deprecated. Currently the default value is false, which means that network-policies app will get installed. Setting this flag to true means that network-policies app is not installed, and that should not be done anymore.|**Type:** `boolean`<br/>**Default:** `false`|
| `global.connectivity.network.pods` | **Pods**|**Type:** `object`<br/>|
| `global.connectivity.network.pods.cidrBlocks` | **Pod subnets**|**Type:** `array`<br/>**Default:** `["100.64.0.0/12"]`|
| `global.connectivity.network.pods.cidrBlocks[*]` | **Pod subnet** - IPv4 address range for pods, in CIDR notation.|**Type:** `string`<br/>**Example:** `"10.244.0.0/16"`<br/>|
Expand Down
3 changes: 2 additions & 1 deletion helm/cluster/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,8 @@
"properties": {
"allowAllEgress": {
"type": "boolean",
"title": "Allow all egress",
"title": "Allow all egress (DEPRECATED)",
"description": "This flag has been deprecated. Currently the default value is false, which means that network-policies app will get installed. Setting this flag to true means that network-policies app is not installed, and that should not be done anymore.",
"default": false
},
"pods": {
Expand Down

0 comments on commit 7b1490d

Please sign in to comment.