Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for confirm (0.28 sec)

  1. manifests/charts/README.md

    For large-scale gateways it is optionally possible to use a dedicated pilot in the gateway namespace.
    
    ### Additional test templates
    
    A number of helm test setups are general-purpose and should be installable in any cluster, to confirm
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  2. docs/security/README.md

    1b) Receive decrypted data key.
    2)  Decrypt encrypted object key with the KEK derived from the data key.
    3a) Receive new plain data key from the KMS using the master key ID of the server config.
    3b) Receive encrypted form of the data key from the KMS.
    4)  Derive a new KEK from the new data key and re-encrypt the OEK with it.
    5)  Store the encrypted OEK encrypted data key and master key ID in object metadata.
     ```
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 13.8K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/README.md

      scheme: http
      static_configs:
      - targets: ['server1:9000','server2:9000','server3:9000','server4:9000']
    ```
    
    ##### Resource (optional)
    
    Optionally you can also collect resource metrics.
    
    ```yaml
    scrape_configs:
    - job_name: minio-job
      metrics_path: /minio/v2/metrics/resource
      scheme: http
      static_configs:
      - targets: ['localhost:9000']
    ```
    
    ### 4. Update `scrape_configs` section in prometheus.yml
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 12 15:49:30 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  4. docs/config/README.md

    ## Configuration Directory
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Sep 11 21:48:54 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  5. docs/throttle/README.md

    ```sh
    export MINIO_API_REQUESTS_MAX=1600
    export MINIO_ROOT_USER=your-access-key
    export MINIO_ROOT_PASSWORD=your-secret-key
    minio server http://server{1...8}/mnt/hdd{1...16}
    ```
    
    or
    
    ```sh
    mc admin config set myminio/ api requests_max=1600
    mc admin service restart myminio/
    ```
    
    > NOTE: A zero value of `requests_max` means MinIO will automatically calculate requests based on available RAM size and that is the default behavior.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  6. README.md

        - **Citadel** - Responsible for certificate issuance and rotation.
    
        - **Galley** - Responsible for validating, ingesting, aggregating, transforming and distributing config within Istio.
    
    - **Operator** - The component provides user friendly options to operate the Istio service mesh.
    
    ## Repositories
    
    The Istio project is divided across a few GitHub repositories:
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 15:28:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  7. docs/tls/kubernetes/README.md

              mountPath: /<user-running-minio>/.minio/certs
    ```
    
    Here the name of `volumeMount` should match the name of `volume` created previously. Also `mountPath` must be set to the path of
    the MinIO server's config sub-directory that is used to store certificates. By default, the location is
    `/<user-running-minio>/.minio/certs`.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 3K bytes
    - Viewed (0)
  8. manifests/charts/gateway/README.md

    * Utilizes Gateway injection, simplifying upgrades, allowing gateways to run in any namespace, and avoiding repeating config for sidecars and gateways.
    * Published to official Istio Helm repository.
    * Single chart for all gateways (Ingress, Egress, East West).
    
    #### General concerns
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 19:38:07 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  9. docs/docker/README.md

      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    To create a MinIO container with persistent storage, you need to map local persistent directories from the host OS to virtual config. To do this, run the below commands
    
    ### GNU/Linux and macOS
    
    ```sh
    mkdir -p ~/minio/data
    
    docker run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio1 \
      -v ~/minio/data:/data \
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 8.2K bytes
    - Viewed (0)
  10. helm/minio/README.md

    ```
    
    Default upgrade strategies are specified in the `values.yaml` file. Update these fields if you'd like to use a different strategy.
    
    ### Configuration
    
    Refer the [Values file](./values.yaml) for all the possible config fields.
    
    You can specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
    
    ```bash
    helm install --name my-release --set persistence.size=1Ti minio/minio
    ```
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Jan 24 07:27:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top