Klaus Post
94fbcd8ebe
Add TLS cert checksum ( #18557 )
...
It allows validation of whether all certs match across clusters.
2023-11-30 12:13:50 -08:00
Harshavardhana
e9babf3dac
(chore): update all our deps ( #18525 )
2023-11-28 14:44:44 -08:00
Harshavardhana
8d9e83fd99
support passing signatureAge conditional ( #18529 )
...
this PR allows following policy
```
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Deny a presigned URL request if the signature is more than 10 min old",
"Effect": "Deny",
"Action": "s3:*",
"Resource": "arn:aws:s3:::DOC-EXAMPLE-BUCKET1/*",
"Condition": {
"NumericGreaterThan": {
"s3:signatureAge": 600000
}
}
}
]
}
```
This is to basically disable all pre-signed URLs that are older than 10 minutes.
2023-11-27 11:30:19 -08:00
jiuker
be02333529
feat: drive sub-sys to max timeout reload ( #18501 )
2023-11-27 09:15:06 -08:00
Anis Eleuch
70fbcfee4a
Implement batch snowball ( #18485 )
2023-11-22 10:51:46 -08:00
Harshavardhana
891c60d83d
fix: go mod was point to personal repos with replace remove it
2023-11-21 15:50:39 -08:00
Shubhendu
58306a9d34
Replicate Expiry ILM configs while site replication ( #18130 )
...
Signed-off-by: Shubhendu Ram Tripathi <shubhendu@minio.io>
2023-11-21 09:48:06 -08:00
Klaus Post
51aa59a737
perf: websocket grid connectivity for all internode communication ( #18461 )
...
This PR adds a WebSocket grid feature that allows servers to communicate via
a single two-way connection.
There are two request types:
* Single requests, which are `[]byte => ([]byte, error)`. This is for efficient small
roundtrips with small payloads.
* Streaming requests which are `[]byte, chan []byte => chan []byte (and error)`,
which allows for different combinations of full two-way streams with an initial payload.
Only a single stream is created between two machines - and there is, as such, no
server/client relation since both sides can initiate and handle requests. Which server
initiates the request is decided deterministically on the server names.
Requests are made through a mux client and server, which handles message
passing, congestion, cancelation, timeouts, etc.
If a connection is lost, all requests are canceled, and the calling server will try
to reconnect. Registered handlers can operate directly on byte
slices or use a higher-level generics abstraction.
There is no versioning of handlers/clients, and incompatible changes should
be handled by adding new handlers.
The request path can be changed to a new one for any protocol changes.
First, all servers create a "Manager." The manager must know its address
as well as all remote addresses. This will manage all connections.
To get a connection to any remote, ask the manager to provide it given
the remote address using.
```
func (m *Manager) Connection(host string) *Connection
```
All serverside handlers must also be registered on the manager. This will
make sure that all incoming requests are served. The number of in-flight
requests and responses must also be given for streaming requests.
The "Connection" returned manages the mux-clients. Requests issued
to the connection will be sent to the remote.
* `func (c *Connection) Request(ctx context.Context, h HandlerID, req []byte) ([]byte, error)`
performs a single request and returns the result. Any deadline provided on the request is
forwarded to the server, and canceling the context will make the function return at once.
* `func (c *Connection) NewStream(ctx context.Context, h HandlerID, payload []byte) (st *Stream, err error)`
will initiate a remote call and send the initial payload.
```Go
// A Stream is a two-way stream.
// All responses *must* be read by the caller.
// If the call is canceled through the context,
//The appropriate error will be returned.
type Stream struct {
// Responses from the remote server.
// Channel will be closed after an error or when the remote closes.
// All responses *must* be read by the caller until either an error is returned or the channel is closed.
// Canceling the context will cause the context cancellation error to be returned.
Responses <-chan Response
// Requests sent to the server.
// If the handler is defined with 0 incoming capacity this will be nil.
// Channel *must* be closed to signal the end of the stream.
// If the request context is canceled, the stream will no longer process requests.
Requests chan<- []byte
}
type Response struct {
Msg []byte
Err error
}
```
There are generic versions of the server/client handlers that allow the use of type
safe implementations for data types that support msgpack marshal/unmarshal.
2023-11-20 17:09:35 -08:00
Anis Eleuch
02331a612c
batch-repl: Replicate missing metadata and standard headers ( #18484 )
...
- Replicate Expires when the source is local or remote
- Replicate metadata when the source is remote
2023-11-18 19:12:44 -08:00
Sveinn
15137d0327
refactor SFTP to use the new minio/pkg implementation ( #18406 )
2023-11-08 09:47:05 -08:00
Harshavardhana
754f7a8a39
replace io.Discard usage to fix some NUMA copy() latencies ( #18394 )
...
replace io.Discard usage to fix NUMA copy() latencies
On NUMA systems copying from 8K buffer allocated via
io.Discard leads to large latency build-up for every
```
copy(new8kbuf, largebuf)
```
can in-cur upto 1ms worth of latencies on NUMA systems
due to memory sharding across NUMA nodes.
2023-11-06 14:26:08 -08:00
Harshavardhana
57aaeafd2f
update dperf to include NUMA fixes ( #18391 )
2023-11-04 20:16:14 -07:00
Harshavardhana
a79c390cca
update console v0.41.0 ( #18385 )
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-11-02 18:47:09 -07:00
Shireesh Anjal
f6e581ce54
Capture network device info in health report ( #18381 )
2023-11-02 09:49:49 -07:00
dependabot[bot]
55e713db0a
build(deps): bump github.com/nats-io/nkeys from 0.4.5 to 0.4.6 ( #18360 )
...
Bumps [github.com/nats-io/nkeys](https://github.com/nats-io/nkeys ) from 0.4.5 to 0.4.6.
- [Release notes](https://github.com/nats-io/nkeys/releases )
- [Changelog](https://github.com/nats-io/nkeys/blob/main/.goreleaser.yml )
- [Commits](https://github.com/nats-io/nkeys/compare/v0.4.5...v0.4.6 )
---
updated-dependencies:
- dependency-name: github.com/nats-io/nkeys
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-31 18:57:10 -07:00
Harshavardhana
0594d37230
update go mod and CREDITS ( #18289 )
2023-10-25 08:32:59 -07:00
dependabot[bot]
c5636143c6
build(deps): bump github.com/nats-io/nats-server/v2 from 2.9.20 to 2.9.23 ( #18282 )
...
build(deps): bump github.com/nats-io/nats-server/v2
Bumps [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server ) from 2.9.20 to 2.9.23.
- [Release notes](https://github.com/nats-io/nats-server/releases )
- [Changelog](https://github.com/nats-io/nats-server/blob/main/.goreleaser.yml )
- [Commits](https://github.com/nats-io/nats-server/compare/v2.9.20...v2.9.23 )
---
updated-dependencies:
- dependency-name: github.com/nats-io/nats-server/v2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 16:40:59 -07:00
Shireesh Anjal
bf1c6edb76
Revert "Capture network device info in health report" ( #18241 )
...
Introducing a new version of healthinfo struct for adding this info is
not correct. It needs to be implemented differently without adding a new
version.
This reverts commit 8737025d940f80360ed4b3686b332db5156f6659.
2023-10-13 07:46:36 -07:00
Shireesh Anjal
a66a7f3e97
Capture network device info in health report ( #18213 )
2023-10-12 15:33:31 -07:00
dependabot[bot]
b32014549c
build(deps): bump golang.org/x/net from 0.15.0 to 0.17.0 ( #18219 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.15.0 to 0.17.0.
- [Commits](https://github.com/golang/net/compare/v0.15.0...v0.17.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-10-12 01:54:36 -07:00
Cesar N
bb77b89da0
Update MinIO Console version ( #18168 )
...
Co-authored-by: cesnietor <>
2023-10-04 16:25:59 -07:00
Shireesh Anjal
2b5d9428b1
Use latest madmin-go (v3.0.21) ( #18138 )
...
This ensures that drive model is included in the partition data inside
the health diagnostics report.
2023-09-29 11:25:34 -07:00
Harshavardhana
3c470a6b8b
fix: the inspect script to use scheme per deployment ( #18118 )
2023-09-27 08:22:50 -07:00
Poorna
50a8f13e85
site replication: allow setting bandwidth default for bucket ( #18062 )
...
This can still be overridden at the bucket level
2023-09-25 15:50:52 -07:00
Harshavardhana
5afb459113
upgrade all dependencies ( #18085 )
2023-09-22 14:45:19 -07:00
Harshavardhana
373d48c8a3
allow admin actions to have proper condition map ( #18080 )
...
upgrade minio/pkg to v2.0.2
fixes #18078
2023-09-21 13:22:09 -07:00
Harshavardhana
ce05bb69dc
update console v0.39.0 ( #18038 )
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-09-15 14:01:52 -07:00
Harshavardhana
65939913b4
update all dependencies ( #18012 )
2023-09-12 13:16:46 -07:00
Harshavardhana
5aa7c38035
update pkg to v2.0.1 to extend admin actions ( #18008 )
2023-09-12 01:11:52 -07:00
Harshavardhana
f7ca6c63c2
fix: bucket quota clear and honor existing quota config ( #17988 )
2023-09-06 19:03:58 -07:00
Aditya Manthramurthy
1c99fb106c
Update to minio/pkg/v2 ( #17967 )
2023-09-04 12:57:37 -07:00
Poorna
b48bbe08b2
Add additional info for replication metrics API ( #17293 )
...
to track the replication transfer rate across different nodes,
number of active workers in use and in-queue stats to get
an idea of the current workload.
This PR also adds replication metrics to the site replication
status API. For site replication, prometheus metrics are
no longer at the bucket level - but at the cluster level.
Add prometheus metric to track credential errors since uptime
2023-08-30 01:00:59 -07:00
Harshavardhana
1067dd3011
update minio-go v7.0.63 ( #17937 )
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-08-28 20:02:14 -07:00
Harshavardhana
adb8be069e
tune-kafka targets to ensure timeout triggers on hung brokers ( #17898 )
...
hung brokers can cause slowness to the entire system
when many callers are hung, leading to large goroutine
build-up.
2023-08-22 20:26:35 -07:00
Andreas Auernhammer
8f8f8854f0
update `minio/kes-go` dep to v0.2.0 ( #17850 )
...
This commit updates the minio/kes-go dependency
to v0.2.0 and updates the existing code to work
with the new KES APIs.
The `SetPolicy` handler got removed since it
may not get implemented by KES at all and could
not have been used in the past since stateless KES
is read-only w.r.t. policies and identities.
Signed-off-by: Andreas Auernhammer <hi@aead.dev>
2023-08-19 07:37:53 -07:00
Harshavardhana
d09351bb10
update console release to v0.37.0
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-08-16 13:17:30 -07:00
Harshavardhana
0d2b7bf94d
upgrade console dependency to v0.36.0 ( #17839 )
2023-08-10 15:48:11 -07:00
jiuker
b1391d1991
feat: support perf client to show `TX` from client to server ( #17718 )
2023-08-10 07:14:46 -07:00
Harshavardhana
e0329cfdbb
update console v0.35.1
2023-08-03 20:25:21 -07:00
Harshavardhana
a7a7533190
add new errors for Disks with timeouts ( #17770 )
2023-08-01 12:47:50 -07:00
Harshavardhana
48a3e9bc82
update NTP package to fix ipv6 bug ( #17752 )
2023-07-29 17:43:50 -07:00
Harshavardhana
ad2a70ba06
update console v0.34.0
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-07-28 17:24:05 -07:00
Harshavardhana
c2edbfae55
update all deps and add credits ( #17740 )
2023-07-27 12:43:25 -07:00
Klaus Post
aea7b08a47
Update nats server dependency ( #17734 )
...
I don't see why we shouldn't.
Fixes #17730
2023-07-27 07:35:52 -07:00
Harshavardhana
de684dc122
update console release v0.33.0
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-07-21 01:20:13 -07:00
Krishnan Parthasarathi
0120ff93bc
admin-info: add DeleteMarkers count ( #17659 )
2023-07-18 10:49:40 -07:00
Harshavardhana
76510dac8a
upgrade all deps to their latest releases ( #17671 )
2023-07-17 21:12:48 -07:00
jiuker
183428db03
fear: Implement 'mc support top net' ( #17598 )
2023-07-13 11:41:19 -07:00
Shubhendu
9b9871cfbb
Added `endpoint` and `versions` attributes to KMS details ( #17350 )
...
Now it would list details of all KMS instances with additional
attributes `endpoint` and `version`. In the case of k8s-based
deployment the list would consist of a single entry.
Signed-off-by: Shubhendu Ram Tripathi <shubhendu@minio.io>
2023-07-12 23:50:38 -07:00
Harshavardhana
524ed7ccd0
update go.mod pointing to wrong repo
2023-07-10 20:10:39 -07:00
Poorna
fb49aead9b
replication: add validation API ( #17520 )
...
To check if replication is set up properly on a bucket.
2023-07-10 20:09:20 -07:00
Harshavardhana
08acd9c43d
update all our deps ( #17590 )
2023-07-06 21:47:46 -07:00
Alex
899b429094
Update Console to v0.32.0 ( #17587 )
...
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
2023-07-06 15:13:07 -07:00
Alex
37cbd114de
Updated console to v0.31.0 ( #17578 )
2023-07-06 00:37:56 -07:00
jiuker
2dbb1cff4a
feat: support perf site replication ( #17477 )
2023-07-05 22:28:26 -07:00
Harshavardhana
e37c4efc6e
fix: upon DNS refresh() failure use previous values ( #17561 )
...
DNS refresh() in-case of MinIO can safely re-use
the previous values on bare-metal setups, since
bare-metal arrangements do not change DNS in any
manner commonly.
This PR simplifies that, we only ever need DNS caching
on bare-metal setups.
- On containerized setups do not enable DNS
caching at all, as it may have adverse effects on
the overall effectiveness of k8s DNS systems.
k8s DNS systems are dynamic and expect applications
to avoid managing DNS caching themselves, instead
provide a cleaner container native caching
implementations that must be used.
- update IsDocker() detection, including podman runtime
- move to minio/dnscache fork for a simpler package
2023-07-03 12:30:51 -07:00
Shireesh Anjal
c1943ea3af
Capture realtime metrics in health report ( #17516 )
2023-06-27 01:39:18 -07:00
Harshavardhana
2a82c15bf1
update all our deps ( #17497 )
2023-06-26 15:36:56 -07:00
Aditya Manthramurthy
5a1612fe32
Bump up madmin-go and pkg deps ( #17469 )
2023-06-19 17:53:08 -07:00
Harshavardhana
1443b5927a
allow quorum fileInfo to pick same parityBlocks ( #17454 )
...
Bonus: allow replication to proceed for 503 errors such as
with error code SlowDownRead
2023-06-18 18:20:15 -07:00
Harshavardhana
22b7c8cd8a
upgrade pkg and dperf to latest packages ( #17448 )
...
- dperf improvements in benchmarking read and write tests
- upgrade mimedb to use latest content-types
2023-06-17 07:31:36 -07:00
Harshavardhana
e98309eb75
update minio-go/v7 v7.0.57 ( #17439 )
2023-06-15 16:29:19 -07:00
Alex
87051872a7
Update console to v0.30.0 ( #17438 )
2023-06-15 15:30:56 -07:00
Klaus Post
4a562d6732
fix: fanout error response - error must be string for marshaling ( #17433 )
...
Uses https://github.com/minio/minio-go/pull/1839
2023-06-15 09:21:53 -07:00
dependabot[bot]
6278679ffd
build(deps): bump github.com/lestrrat-go/jwx from 1.2.25 to 1.2.26 ( #17425 )
...
Bumps [github.com/lestrrat-go/jwx](https://github.com/lestrrat-go/jwx ) from 1.2.25 to 1.2.26.
- [Release notes](https://github.com/lestrrat-go/jwx/releases )
- [Changelog](https://github.com/lestrrat-go/jwx/blob/v1.2.26/Changes )
- [Commits](https://github.com/lestrrat-go/jwx/compare/v1.2.25...v1.2.26 )
---
updated-dependencies:
- dependency-name: github.com/lestrrat-go/jwx
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-14 12:17:22 -07:00
Harshavardhana
69f819e199
move to pkg@v1.7.3 to support aws:kms string in policy conditions ( #17414 )
2023-06-14 07:42:03 -07:00
Harshavardhana
d1448adbda
use slices package and remove some helpers ( #17342 )
2023-06-06 10:12:52 -07:00
Kaan Kabalak
0649aca219
Add expiration to ListServiceAccounts function ( #17249 )
2023-06-02 16:17:26 -07:00
Harshavardhana
fb328b1a64
upgrade all dependencies ( #17276 )
2023-05-26 16:31:28 -07:00
Harshavardhana
d0a0eb9738
support fan-out objects via PostUpload() ( #17233 )
2023-05-24 22:51:07 -07:00
Harshavardhana
7875efbf61
update minio/dperf to latest release v0.4.4 ( #17267 )
2023-05-22 19:17:17 -07:00
Aditya Manthramurthy
9d96b18df0
Add "name" and "description" params to service acc ( #17172 )
2023-05-17 17:05:36 -07:00
Aditya Manthramurthy
77db9686fb
Update console to v0.27.0 ( #17188 )
2023-05-11 12:18:17 -07:00
Alex
0c0820caef
Updated Console version to v0.26.4 ( #17119 )
...
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
2023-05-03 11:00:23 -07:00
WGH
ab34f0065c
Support systemd notify protocol ( #17062 )
2023-05-01 23:15:08 -07:00
Anis Eleuch
5c83c9724f
audit: Add request path and host to audit event ( #17099 )
2023-04-27 22:18:24 -07:00
Anis Eleuch
d5aff735be
info: Add drives per set and sets count per pool information ( #17100 )
2023-04-27 15:24:03 -07:00
Praveen raj Mani
72802a5972
Use 'minio/pkg/sync/errgroup' and 'minio/pkg/workers' ( #17069 )
2023-04-25 22:57:40 -07:00
Shireesh Anjal
c61c4b71b2
Upgrade madmin-go to 2.0.20 ( #17054 )
2023-04-20 10:56:55 -07:00
Harshavardhana
dd9ed85e22
implement support for FTP/SFTP server ( #16952 )
2023-04-15 07:34:02 -07:00
Harshavardhana
f3682b6149
allow writes to pools with inconsistent xl.meta ( #17008 )
2023-04-11 11:17:46 -07:00
Anis Eleuch
1f1c267b6c
Add used inodes to disk info ( #16994 )
2023-04-07 07:52:14 -07:00
Aditya Manthramurthy
ceebd35ef7
Bump up console to 0.26.3 ( #16995 )
2023-04-06 20:18:14 -07:00
Alex
2b71b659e0
Update Console to v0.26.2 ( #16981 )
...
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
2023-04-06 01:31:09 -07:00
Shireesh Anjal
12591cd241
Upgrade madmin-go to 2.0.18 ( #16961 )
2023-04-05 04:55:55 -07:00
Praveen raj Mani
51f7f9aaa3
Generalize the event store using go generics ( #16910 )
2023-04-04 10:52:24 -07:00
Harshavardhana
8e02660a0d
update all our deps ( #16899 )
2023-03-28 03:45:24 -07:00
Poorna
74040b457b
Allow setting sync mode for site replication ( #16876 )
2023-03-24 14:41:23 -07:00
dependabot[bot]
035791669e
build(deps): bump github.com/nats-io/nats-streaming-server from 0.24.1 to 0.24.3 ( #16752 )
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-03-21 23:36:24 -07:00
Harshavardhana
6c11dbffd5
add crash protection from backend modifications ( #16846 )
2023-03-20 09:08:42 -07:00
Poorna
440ad20c1d
Add support for batch job cancellation ( #16843 )
2023-03-17 23:42:43 -07:00
Harshavardhana
3fdd574f54
update go dependencies ( #16798 )
2023-03-15 11:59:17 -07:00
Nitish Tiwari
50dbd2cacc
Update audit log flow to use new headers with unit ( #16797 )
2023-03-13 22:50:19 -07:00
Klaus Post
d85da9236e
Add Object Version count histogram ( #16739 )
2023-03-10 08:53:59 -08:00
Daniel Valdivia
18f9cccfa7
Upgrade Console to v0.25.0 ( #16782 )
...
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
2023-03-08 12:15:13 -08:00
Harshavardhana
4636d3a9c3
upgrade all dependencies ( #16753 )
2023-03-03 18:22:40 -08:00
Praveen raj Mani
4d708cebe9
Support adding service accounts with expiration ( #16430 )
...
Co-authored-by: Harshavardhana <harsha@minio.io>
2023-02-27 10:10:22 -08:00
Krishnan Parthasarathi
fe7bf6cbbc
Support tier-add if tier backend not empty ( #16715 )
2023-02-27 09:26:26 -08:00
Harshavardhana
f678bcf7ba
update dependencies to the latest releases ( #16694 )
2023-02-22 10:23:45 -08:00
Daniel Valdivia
fb17f97cf3
move audit and logger message structure to minio/pkg ( #16655 )
...
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
2023-02-21 21:21:17 -08:00
Klaus Post
fd6622458b
Add detailed scanner trace output and notifications ( #16668 )
2023-02-21 09:33:33 -08:00
Harshavardhana
82dcfd4e10
update dependencies to latest releases ( #16651 )
2023-02-20 16:05:20 +05:30
Klaus Post
626a4efaad
Update reedsolomon to v1.11.7 ( #16624 )
2023-02-15 05:07:35 -08:00
Andreas Auernhammer
74887c7372
kms: add support for KES API keys and switch to KES Go SDK ( #16617 )
...
Signed-off-by: Andreas Auernhammer <hi@aead.dev>
2023-02-14 07:19:20 -08:00
Anis Elleuch
689179bf18
ServerInfo: return per erasure set information ( #16583 )
2023-02-11 18:31:56 +05:30
Aditya Manthramurthy
e101384aa4
Update console to v0.23.1 ( #16574 )
2023-02-08 20:01:53 -08:00
Anis Elleuch
095b518802
Show a better error msg when internal data encryption key is incorrect ( #16549 )
2023-02-07 05:22:54 -08:00
Harshavardhana
14cf8f1b22
upgrade deps for minio/pkg v1.6.1 to include groups conditions ( #16538 )
2023-02-06 09:27:29 -08:00
Aditya Manthramurthy
50d58e9b2d
Bump up console to v0.23.0 ( #16470 )
2023-01-24 16:19:54 -08:00
Harshavardhana
3683673fb0
add missing gorilla/mux migration, update credits ( #16461 )
2023-01-23 08:46:37 -08:00
Harshavardhana
31b0decd46
migrate to minio/mux from gorilla/mux ( #16456 )
2023-01-23 16:42:47 +05:30
Poorna
1b02e046c2
Fix bandwidth monitoring to be per remote target ( #16360 )
2023-01-19 18:52:16 +05:30
Anis Elleuch
3039fd4519
Optimize background heal status to use LocalStorageInfo ( #16414 )
2023-01-17 05:02:00 +05:30
Aditya Manthramurthy
7bc95c47a3
Update console to 0.22.5 ( #16400 )
2023-01-11 18:06:16 -08:00
Anis Elleuch
1ece3d1dfe
Add comment field to service accounts ( #16380 )
2023-01-10 21:57:52 +04:00
Harshavardhana
57fd02ee57
update console v0.22.4 ( #16374 )
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2023-01-05 22:15:51 -08:00
Anis Elleuch
0333412148
fix: heal only once per disk per set among multiple disks ( #16358 )
2023-01-05 20:41:19 -08:00
Harshavardhana
a2514ffeed
update klauspost/compress dependency ( #16343 )
2023-01-03 10:41:14 -08:00
Harshavardhana
75faef888e
disable builds for go1.18 ( #16332 )
2022-12-30 11:37:07 -08:00
Harshavardhana
b67d97b1ba
add missing fields in audit logs for non-compressed handlers ( #16328 )
2022-12-30 10:20:19 -08:00
Poorna
6423e4c767
Remove site replication config if it succeeded locally ( #16279 )
2022-12-22 01:31:20 -08:00
Harshavardhana
1dd8f0e8f3
update console v0.22.3 ( #16292 )
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2022-12-21 23:47:51 -08:00
Anis Elleuch
34167c51d5
trace: Add bootstrap tracing events ( #16286 )
2022-12-21 15:52:29 -08:00
Aditya Manthramurthy
a469e6768d
Add LDAP DNS SRV record lookup support ( #16201 )
2022-12-12 11:27:27 -08:00
Minio Trusted
c233c8e329
update console to v0.22.2
2022-12-09 21:10:13 -08:00
Aditya Manthramurthy
e06127566d
Add IAM API to attach/detach policies for LDAP ( #16182 )
2022-12-09 13:08:33 -08:00
Klaus Post
3eb2d086b2
Replace filepathx with fork ( #16192 )
2022-12-08 10:42:44 -08:00
Javier Adriel
04ae9058ed
Populate end_session_endpoint ( #16183 )
2022-12-06 16:56:37 -08:00
Aditya Manthramurthy
a30cfdd88f
Bump up madmin-go to v2 ( #16162 )
2022-12-06 13:46:50 -08:00
Harshavardhana
625677b189
update reedsolomon v1.11.3 ( #16149 )
2022-11-30 13:39:03 -08:00
Harshavardhana
be92cf5959
change dependency from amqp -> amqp091 (RabbitMQ) official ( #16142 )
2022-11-28 16:05:06 -08:00
Andreas Auernhammer
4c9cac0b47
update KES dependency to v0.22.0 ( #16077 )
...
Signed-off-by: Andreas Auernhammer <hi@aead.dev>
2022-11-16 03:03:04 -08:00
Minio Trusted
1a0b68498b
update console release v0.21.3
...
Signed-off-by: Harshavardhana <harsha@minio.io>
2022-11-15 16:47:25 -08:00
Krishnan Parthasarathi
3bb82ef60d
top-locks: Include lock-held duration ( #16061 )
2022-11-15 07:57:52 -08:00
Harshavardhana
752e18e795
upgrade console to v0.21.2
2022-11-07 21:27:07 -08:00
Aditya Manthramurthy
76d822bf1e
Add LDAP policy entities API ( #15908 )
2022-11-07 14:35:09 -08:00
Shireesh Anjal
19d0340ddf
Update version of madmin-go to v1.7.3 ( #15994 )
2022-11-07 09:32:18 -08:00
yanggang
797fa7f97b
update Elasticsearch dependency to 7.17.7 ( #15992 )
2022-11-04 08:23:33 -07:00
Anis Elleuch
7e73fc2870
Implement inspect data API v2 ( #15474 )
...
Co-authored-by: Klaus Post <klauspost@gmail.com>
2022-11-02 13:36:38 -07:00
Harshavardhana
3b7292b637
update console v0.21.1
2022-10-24 02:20:47 -07:00
Harshavardhana
e4f469ae7a
update console dependency to master
2022-10-23 22:36:24 -07:00
Poorna
e4e90b53c1
fix: delete-marker replication check properly ( #15923 )
2022-10-21 14:45:06 -07:00
Aditya Manthramurthy
2d16e74f38
Add LDAP IDP Configuration APIs ( #15840 )
2022-10-19 11:00:10 -07:00
Aditya Manthramurthy
85fc7cea97
Pass role ARN for OIDC providers to console ( #15862 )
2022-10-15 12:57:03 -07:00
Poorna
0e3c92c027
attempt delete marker replication after object is replicated ( #15857 )
...
Ensure delete marker replication success, especially since the
recent optimizations to heal on HEAD, LIST and GET can force
replication attempts on delete marker before underlying object
version could have synced.
2022-10-13 17:45:23 -07:00
Anis Elleuch
ff5fca76ab
Bump golang.org/x/text to 0.3.8 to fix CVE-2022-32149 ( #15855 )
2022-10-13 11:43:18 -07:00
Harshavardhana
97112c69be
fix: replication stats() to not crash under any situation ( #15851 )
...
Co-authored-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
2022-10-12 15:47:41 -07:00
Javier Adriel
2939000342
Add metrics, version and apis handlers ( #15839 )
2022-10-12 12:08:03 -07:00
Klaus Post
6220875803
Add missing server info fields ( #15826 )
2022-10-11 11:31:26 -07:00
Aditya Manthramurthy
64cf887b28
use LDAP config from minio/pkg to share with console ( #15810 )
2022-10-07 22:12:36 -07:00