Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 168 for ekvs (0.04 sec)

  1. pkg/test/framework/suitecontext.go

    	c.traces.Store(key, value)
    }
    
    func (c *suiteContext) marshalTraceEvent() []byte {
    	kvs := map[string]any{}
    	c.traces.Range(func(key, value any) bool {
    		kvs[key.(string)] = value
    		return true
    	})
    	outer := map[string]any{
    		fmt.Sprintf("suite/%s", c.settings.TestID): kvs,
    	}
    	d, _ := yaml.Marshal(outer)
    	return d
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. internal/config/constants.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package config
    
    // Config value separator
    const (
    	ValueSeparator = ","
    )
    
    // Top level common ENVs
    const (
    	EnvAccessKey    = "MINIO_ACCESS_KEY"
    	EnvSecretKey    = "MINIO_SECRET_KEY"
    	EnvRootUser     = "MINIO_ROOT_USER"
    	EnvRootPassword = "MINIO_ROOT_PASSWORD"
    
    	// Legacy files
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. cni/pkg/plugin/kubernetes.go

    	b.WriteString(fmt.Sprintf("  Labels: %+v\n", pi.Labels))
    	b.WriteString(fmt.Sprintf("  Annotations: %+v\n", pi.Annotations))
    	b.WriteString(fmt.Sprintf("  Envs: %+v\n", pi.ProxyEnvironments))
    	b.WriteString(fmt.Sprintf("  ProxyConfig: %+v\n", pi.ProxyEnvironments))
    	return b.String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    		"If disabled, Gateway API gateways will ignore workloadSelector policies, only"+
    			"applying policies that select the gateway with a targetRef.").Get()
    
    	// Useful for IPv6-only EKS clusters. See https://aws.github.io/aws-eks-best-practices/networking/ipv6/ why it assigns an additional IPv4 NAT address.
    	// Also see https://github.com/istio/istio/issues/46719 why this flag is required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/volume/util/attach_limit_test.go

    	if csiLimitKey != "attachable-volumes-csi-com.amazon.ebs" {
    		t.Errorf("Expected com.amazon.ebs got %s", csiLimitKey)
    	}
    
    	// When driver is longer than 39 chars
    	longDriverName := "com.amazon.kubernetes.eks.ec2.ebs/csi-driver"
    	csiLimitKeyLonger := GetCSIAttachLimitKey(longDriverName)
    	if !v1helper.IsAttachableVolumeResourceName(v1.ResourceName(csiLimitKeyLonger)) {
    		t.Errorf("Expected %s to have attachable prefix", csiLimitKeyLonger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 05 16:29:00 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  6. docs/sts/etcd.md

    ```
    export MINIO_ETCD_ENDPOINTS=http://localhost:2379
    minio server /data
    ```
    
    NOTE: If `etcd` is configured with `Client-to-server authentication with HTTPS client certificates` then you need to use additional envs such as `MINIO_ETCD_CLIENT_CERT` pointing to path to `etcd-client.crt` and `MINIO_ETCD_CLIENT_CERT_KEY` path to `etcd-client.key` .
    
    ### 4. Test with MinIO STS API
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return nil, cleanupAction, err
    	}
    
    	// set environment variables
    	envs := make([]*runtimeapi.KeyValue, len(opts.Envs))
    	for idx := range opts.Envs {
    		e := opts.Envs[idx]
    		envs[idx] = &runtimeapi.KeyValue{
    			Key:   e.Name,
    			Value: e.Value,
    		}
    	}
    	config.Envs = envs
    
    	return config, cleanupAction, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. cmd/etcd.go

    	if err != nil {
    		etcdLogOnceIf(ctx, err, "etcd-retrieve-keys")
    		return nil, etcdErrToErr(err, client.Endpoints())
    	}
    	if resp.Count == 0 {
    		return nil, errConfigNotFound
    	}
    	for _, ev := range resp.Kvs {
    		if string(ev.Key) == key {
    			return ev.Value, nil
    		}
    	}
    	return nil, errConfigNotFound
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/runtime/runtime.go

    		// Sleep in one millisecond increments until we have a reliable time.
    		timeSleep(1_000_000)
    	}
    	return r
    }
    
    var envs []string
    var argslice []string
    
    //go:linkname syscall_runtime_envs syscall.runtime_envs
    func syscall_runtime_envs() []string { return append([]string{}, envs...) }
    
    //go:linkname syscall_Getpagesize syscall.Getpagesize
    func syscall_Getpagesize() int { return int(physPageSize) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. internal/config/identity/ldap/legacy.go

    func SetIdentityLDAP(s config.Config, ldapArgs LegacyConfig) {
    	if !ldapArgs.Enabled {
    		// ldap not enabled no need to preserve it in new settings.
    		return
    	}
    	s[config.IdentityLDAPSubSys][config.Default] = config.KVS{
    		config.KV{
    			Key:   ServerAddr,
    			Value: ldapArgs.ServerAddr,
    		},
    		config.KV{
    			Key:   GroupSearchFilter,
    			Value: ldapArgs.GroupSearchFilter,
    		},
    		config.KV{
    			Key:   GroupSearchBaseDN,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 08 05:12:36 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top