Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for tproxy (0.13 sec)

  1. cmd/bucket-replication.go

    	if !proxy.Proxy {
    		return nil, proxy, nil
    	}
    	fn, _, _, err := NewGetObjectReader(nil, oi, opts, h)
    	if err != nil {
    		return nil, proxy, err
    	}
    	gopts := minio.GetObjectOptions{
    		VersionID:            opts.VersionID,
    		ServerSideEncryption: opts.ServerSideEncryption,
    		Internal: minio.AdvancedGetOptions{
    			ReplicationProxyRequest: "true",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. buildscripts/upgrade-tests/compose.yml

      command: server http://minio{1...4}/data{1...3}
      env_file:
        - ./minio.env
      expose:
        - "9000"
        - "9001"
    
    # starts 4 docker containers running minio server instances.
    # using nginx reverse proxy, load balancing, you can access
    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - data1-1:/data1
          - data1-2:/data2
          - data1-3:/data3
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			var oi ObjectInfo
    			oi, proxy = proxyHeadToReplicationTarget(ctx, bucket, object, rs, opts, proxytgts)
    			if proxy.Proxy {
    				objInfo = oi
    			}
    			if proxy.Err != nil {
    				globalReplicationStats.incProxy(bucket, headObjectAPI, true)
    				writeErrorResponseHeadersOnly(w, toAPIError(ctx, proxy.Err))
    				return
    			}
    		}
    	}
    
    	if objInfo.UserTags != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. manifests/charts/gateway/templates/deployment.yaml

              value: "0"
          {{- end }}
          {{- with .Values.volumes }}
          volumes:
            {{ toYaml . | nindent 8 }}
          {{- end }}
          containers:
            - name: istio-proxy
              # "auto" will be populated at runtime by the mutating webhook. See https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection
              image: auto
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    }
    
    // NB: Un-typed SAN validation is ignored when typed is used, so only typed version must be used with this function.
    func buildCommonConnectTLSContext(proxy *model.Proxy, push *model.PushContext) *tls.CommonTlsContext {
    	ctx := &tls.CommonTlsContext{}
    	security.ApplyToCommonTLSContext(ctx, proxy, nil, "", nil, true)
    	aliases := authn.TrustDomainsForValidation(push.Mesh)
    	validationCtx := ctx.GetCombinedValidationContext().DefaultValidationContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. go.mod

    	github.com/google/s2a-go v0.1.7 // indirect
    	github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
    	github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
    	github.com/googleapis/gax-go/v2 v2.12.4 // indirect
    	github.com/gorilla/websocket v1.5.2 // indirect
    	github.com/hashicorp/errwrap v1.1.0 // indirect
    	github.com/hashicorp/go-hclog v1.2.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.APIServer.ExtraEnvs = []kubeadm.EnvVar{}
    	obj.Scheduler.ExtraEnvs = []kubeadm.EnvVar{}
    	obj.Etcd.Local.ExtraEnvs = []kubeadm.EnvVar{}
    	obj.EncryptionAlgorithm = kubeadm.EncryptionAlgorithmRSA2048
    	obj.Proxy.Disabled = false
    	obj.CertificateValidityPeriod = &metav1.Duration{Duration: constants.CertificateValidityPeriod}
    	obj.CACertificateValidityPeriod = &metav1.Duration{Duration: constants.CACertificateValidityPeriod}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/list.md

    | `minio_bucket_replication_proxied_get_tagging_requests_failures` |Number of failures in GET tagging proxy requests to replication target                          |
    | `minio_bucket_replication_proxied_put_tagging_requests_failures` | Number of failures in PUT tagging proxy requests to replication target                          |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  9. cmd/logging.go

    import (
    	"context"
    	"errors"
    
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/minio/internal/logger"
    )
    
    func proxyLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "proxy", err, errKind...)
    }
    
    func replLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "replication", err, errKind...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_logging.go

    		cfg.Attributes = &otlpcommon.KeyValueList{
    			Values: ConvertStructToAttributeKeyValues(labels.Fields),
    		}
    	}
    
    	// it's unnecessary to check proxy version here,
    	// users should add CEL/METADATA/REQ_WITHOUT_QUERY commands after all proxy upgraded to 1.23+.
    	// Otherwise, the configuration will be rejected.
    	cfg.Formatters = accessLogFormatters(format, labels)
    
    	return cfg
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top