1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

Updates for two October releases (#1065)

- Adds additional flag for `mc admin trace`
- Adds info about supported secret types for k8s

Closes #1039 

For the `mc admin trace --stats` flag, also adding example output.

Closes #1045
This commit is contained in:
Daryl White
2023-11-15 11:58:16 -05:00
committed by GitHub
parent 1af11084ec
commit 09ce8edb48
3 changed files with 55 additions and 1 deletions

View File

@ -562,6 +562,21 @@ The :guilabel:`Security` section displays TLS certificate settings for the MinIO
MinIO also supports uploading Certificate Authority certificates for validating client certificates minted by that CA.
.. admonition:: Supported Secret Types
:class: note
MinIO supports three types of :kube-docs:`secrets in Kubernetes <concepts/configuration/secret/#secret-types>`.
#. ``opaque``
Using ``private.key`` and ``public.crt`` files.
#. ``tls``
Using ``tls.key`` and ``tls.crt`` files.
#. `cert-manager <https://cert-manager.io/>`__ 1.7.x or later
Running on Kubernetes 1.21 or later.
.. versionadded:: Console 0.23.1
A message displays under the certificate with the date of expiration and length of time until expiration.
@ -576,7 +591,7 @@ The :guilabel:`Security` section displays TLS certificate settings for the MinIO
.. _create-tenant-encryption-section:
8) The :guilabel:`Encryption` Section
1) The :guilabel:`Encryption` Section
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The :guilabel:`Encryption` section displays the :ref:`Server-Side Encryption (SSE) <minio-sse>` settings for the MinIO Tenant.

View File

@ -207,6 +207,27 @@ Enabling TLS
You may also need to update URLs used by applications or clients.
.. cond:: k8s
Supported Secret Types
~~~~~~~~~~~~~~~~~~~~~~
MinIO supports three types of :kube-docs:`secrets in Kubernetes <concepts/configuration/secret/#secret-types>`.
#. ``opaque``
Using ``private.key`` and ``public.crt`` files.
#. ``tls``
Using ``tls.key`` and ``tls.crt`` files.
#. `cert-manager <https://cert-manager.io/>`__ 1.7.x or later
Running on Kubernetes 1.21 or later.
.. note::
For the best support of *tls* or *cert-manager* secrets, upgrade to Operator version 5.0.10 or later.
Multiple Domain-Based TLS Certificates
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~