Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Operator (0.39 sec)

  1. internal/config/dns/operator_dns.go

    // No Op for Operator because operator deals on with bucket entries
    func (c *OperatorDNS) DeleteRecord(record SrvRecord) error {
    	return ErrNotImplemented
    }
    
    // Close closes the internal http client
    func (c *OperatorDNS) Close() error {
    	return nil
    }
    
    // List - Retrieves list of DNS entries for the domain.
    // This is a No Op for Operator because, there is no intent to enforce global
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 06 16:56:10 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  2. cmd/postpolicyform.go

    					}
    				}
    				operator, matchType, value := toLowerString(condt[0]), toLowerString(condt[1]), toString(condt[2])
    				if !strings.HasPrefix(matchType, "$") {
    					return parsedPolicy, fmt.Errorf("Invalid according to Policy: Policy Condition failed: [%s, %s, %s]", operator, matchType, value)
    				}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:45:54 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  3. helm/minio/README.md

    referencing this chart. <br/><br/> MinIO publishes a separate [MinIO Kubernetes Operator and Tenant Helm Chart](https://github.com/minio/operator/tree/master/helm) that is officially maintained and supported. MinIO strongly recommends using the MinIO Kubernetes Operator for production deployments. See [Deploy Operator With Helm](https://min.io/docs/minio/kubernetes/upstream/operations/install-deploy-manage/deploy-operator-helm.html?ref=github) for additional documentation. |
    
    ## Introduction...
    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)
  4. internal/s3select/unused-errors.go

    		code:       "LexerInvalidLiteral",
    		message:    "The SQL expression contains an invalid operator.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errLexerInvalidIONLiteral(err error) *s3Error {
    	return &s3Error{
    		code:       "LexerInvalidIONLiteral",
    		message:    "The SQL expression contains an invalid operator.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  5. cmd/update.go

    		if helmChartVersion != "" {
    			uaAppend(" helm-", helmChartVersion)
    		}
    		// In Kubernetes environment, try to fetch the Operator, VSPHERE plugin version
    		opVersion := env.Get("MINIO_OPERATOR_VERSION", "")
    		if opVersion != "" {
    			uaAppend(" operator-", opVersion)
    		}
    		vsphereVersion := env.Get("MINIO_VSPHERE_PLUGIN_VERSION", "")
    		if vsphereVersion != "" {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. docs/multi-user/admin/README.md

    # MinIO Admin Multi-user Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO supports multiple admin users in addition to default operator credential created during server startup. New admins can be added after server starts up, and server can be configured to deny or allow access to different admin operations for these users. This document explains how to add/remove admin users and modify their access rights.
    
    ## Get started
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Mar 21 06:38:06 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  7. README.md

    This README provides quickstart instructions on running MinIO on bare metal hardware, including container-based installations. For Kubernetes environments, use the [MinIO Kubernetes Operator](https://github.com/minio/operator/blob/master/README.md).
    
    ## Container Installation
    
    Use the following commands to run a standalone MinIO server as a container.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  8. docs/docker/README.md

      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    ## Run Distributed MinIO on Containers
    
    We recommend kubernetes based deployment for production level deployment <https://github.com/minio/operator>.
    
    See the [Kubernetes documentation](https://min.io/docs/minio/kubernetes/upstream/index.html) for more information.
    
    ## MinIO Docker Tips
    
    ### MinIO Custom Access and Secret Keys
    
    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)
  9. cmd/api-errors.go

    		Code:           "LexerInvalidLiteral",
    		Description:    "The SQL expression contains an invalid operator.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrLexerInvalidIONLiteral: {
    		Code:           "LexerInvalidIONLiteral",
    		Description:    "The SQL expression contains an invalid operator.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpectedDatePart: {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 05:26:02 GMT 2024
    - 90.2K bytes
    - Viewed (6)
  10. internal/s3select/sql/evaluate.go

    		cmpRight, cmpRErr := e.ConditionRHS.Compare.Operand.evalNode(r, tableAlias)
    		if cmpRErr != nil {
    			return nil, cmpRErr
    		}
    
    		b, err := opVal.compareOp(strings.ToUpper(e.ConditionRHS.Compare.Operator), cmpRight)
    		return FromBool(b), err
    
    	case e.ConditionRHS.Between != nil:
    		return e.ConditionRHS.Between.evalBetweenNode(r, opVal, tableAlias)
    
    	case e.ConditionRHS.Like != nil:
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 12K bytes
    - Viewed (0)
Back to top