Skip to content

Commit

Permalink
Merge branch 'main' into meowchinist/mbe-578-add-prometheus-export-po…
Browse files Browse the repository at this point in the history
…int-to-the-agent-pod
  • Loading branch information
meowjesty authored Dec 19, 2024
2 parents c17482c + 8deaa2c commit 1d9ab6f
Show file tree
Hide file tree
Showing 45 changed files with 2,715 additions and 872 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,43 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [3.128.0](https://github.com/metalbear-co/mirrord/tree/3.128.0) - 2024-12-19


### Added

- Added to mirrord config a new experimental field
`.experimental.readonly_file_buffer`. If set to a value greater than 0,
mirrord will fetch remote readonly files in chunks of at least this size (in bytes).
This is to improve performance with applications that make many small reads
from remote files.
[#2069](https://github.com/metalbear-co/mirrord/issues/2069)
- Added `mirrord container-ext` command that should be used by extension and
works similarly to `mirrord ext` but for containers.
- Added runAsNonRoot and RO file system to operator deployment
- Added custom resource definition for cluster-wide mirrord policy -
`MirrordClusterPolicy`.
- Added mapping option for env vars config, allowing the user to map multiple env
vars to another value based on regexes.
[#2920](https://github.com/metalbear-co/mirrord/issues/2920)
- Added mkdir support
[#2221](https://github.com/metalbear-co/mirrord/issues/2221)


### Fixed

- Added debugger port detection type for the node `--inspect`, `--inspect-wait`
and `--inspect-brk` flags.
[#2936](https://github.com/metalbear-co/mirrord/issues/2936)
- Fixed `mirrord operator setup` - added missing `/tmp` volume to the operator
deployment.


### Internal

- Added E2E test for `MirrordClusterPolicy` that blocks incoming traffic
mirroring.

## [3.127.0](https://github.com/metalbear-co/mirrord/tree/3.127.0) - 2024-12-10


Expand Down
59 changes: 30 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resolver = "2"

# latest commits on rustls suppress certificate verification
[workspace.package]
version = "3.127.0"
version = "3.128.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/+cluster-policy.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+operator-deployment-strict.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+operator-tmp-volume.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2920.changed.md

This file was deleted.

18 changes: 18 additions & 0 deletions mirrord-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,14 @@
"string",
"null"
]
},
"cli_prevent_cleanup": {
"title": "container.cli_prevent_cleanup {#container-cli_extra_args}",
"description": "Don't add `--rm` to sidecar command to prevent cleanup.",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
Expand Down Expand Up @@ -815,6 +823,16 @@
"null"
]
},
"readonly_file_buffer": {
"title": "_experimental_ readonly_file_buffer {#experimental-readonly_file_buffer}",
"description": "Sets buffer size for readonly remote files (in bytes, for example 4096). If set, such files will be read in chunks and buffered locally. This improves performace when the user application reads data in small portions.\n\nSetting to 0 disables file buffering.\n\n<https://github.com/metalbear-co/mirrord/issues/2069>",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"tcp_ping4_mock": {
"title": "_experimental_ tcp_ping4_mock {#experimental-tcp_ping4_mock}",
"description": "<https://github.com/metalbear-co/mirrord/issues/2421#issuecomment-2093200904>",
Expand Down
Loading

0 comments on commit 1d9ab6f

Please sign in to comment.