Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for pathPrefix (0.18 sec)

  1. helm/minio/templates/deployment.yaml

                - name: MINIO_ETCD_CLIENT_CERT_KEY
                  value: "/tmp/credentials/etcd_client_cert_key.pem"
                {{- end }}
                {{- if .Values.etcd.pathPrefix }}
                - name: MINIO_ETCD_PATH_PREFIX
                  value: {{ .Values.etcd.pathPrefix }}
                {{- end }}
                {{- if .Values.etcd.corednsPathPrefix }}
                - name: MINIO_ETCD_COREDNS_PATH
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. cmd/kms-router.go

    )
    
    type kmsAPIHandlers struct{}
    
    // registerKMSRouter - Registers KMS APIs
    func registerKMSRouter(router *mux.Router) {
    	kmsAPI := kmsAPIHandlers{}
    	kmsRouter := router.PathPrefix(kmsPathPrefix).Subrouter()
    
    	KMSVersions := []string{
    		kmsAPIVersionPrefix,
    	}
    
    	gz, err := gzhttp.NewWrapper(gzhttp.MinSize(1000), gzhttp.CompressionLevel(gzip.BestSpeed))
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	// no-op for default prefix of '/registry'.
    	// keeps compatibility with etcd2 impl for custom prefixes that don't start with '/'
    	pathPrefix := path.Join("/", prefix)
    	if !strings.HasSuffix(pathPrefix, "/") {
    		// Ensure the pathPrefix ends in "/" here to simplify key concatenation later.
    		pathPrefix += "/"
    	}
    
    	w := &watcher{
    		client:        c,
    		codec:         codec,
    		newFunc:       newFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		"/../foo",
    		"/foo/bar/../",
    		".",
    		"/.",
    		"./",
    		"/./",
    		"/foo/.",
    		"./bar",
    		"/foo/./bar/",
    	}
    	const (
    		pathPrefix   = "/first/second"
    		expectPrefix = pathPrefix + "/"
    	)
    	_, store, _ := testSetup(t, withPrefix(pathPrefix))
    
    	for _, key := range validKeys {
    		k, err := store.prepareKey(key)
    		if err != nil {
    			t.Errorf("key %q should be valid; unexpected error: %v", key, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. cmd/metrics-router.go

    	prometheusPublic prometheusAuthType = "public"
    )
    
    // registerMetricsRouter - add handler functions for metrics.
    func registerMetricsRouter(router *mux.Router) {
    	// metrics router
    	metricsRouter := router.NewRoute().PathPrefix(minioReservedBucketPath).Subrouter()
    	authType := prometheusAuthType(strings.ToLower(env.Get(EnvPrometheusAuthType, string(prometheusJWT))))
    
    	auth := AuthMiddleware
    	if authType == prometheusPublic {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. cmd/iam-object-store.go

    		err = errNoSuchGroup
    	}
    	return err
    }
    
    // Lists objects in the minioMetaBucket at the given path prefix. All returned
    // items have the pathPrefix removed from their names.
    func listIAMConfigItems(ctx context.Context, objAPI ObjectLayer, pathPrefix string) <-chan itemOrErr[string] {
    	ch := make(chan itemOrErr[string])
    
    	go func() {
    		defer xioutil.SafeClose(ch)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                    '/' when type one of ['Exact', 'PathPrefix']
                                  rule: '(self.type in [''Exact'',''PathPrefix'']) ? self.value.startsWith(''/'')
                                    : true'
                                - message: must not contain '//' when type one of ['Exact',
                                    'PathPrefix']
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/policy/v1beta1/generated.proto

    message AllowedHostPath {
      // pathPrefix is the path prefix that the host volume must match.
      // It does not support `*`.
      // Trailing slashes are trimmed when validating the path prefix with a host path.
      //
      // Examples:
      // `/foo` would allow `/foo`, `/foo/` and `/foo/bar`
      // `/foo` would not allow `/food` or `/etc/foo`
      optional string pathPrefix = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/builder_test.go

    						Port:                         9000,
    						Timeout:                      &durationpb.Duration{Seconds: 10},
    						FailOpen:                     true,
    						StatusOnError:                "403",
    						PathPrefix:                   "/check",
    						IncludeRequestHeadersInCheck: []string{"x-custom-id", "x-prefix-*", "*-suffix"},
    						//nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_test.go

    kind: HTTPRoute
    metadata:
      name: http
    spec:
      hostnames: ["my.domain.example"]
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get/
        backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
    spec:
      parentRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top