Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for BindAddress (0.15 sec)

  1. operator/cmd/operator/server.go

    		leaderElectionID += "-" + operatorRevision
    	}
    	log.Infof("Leader election cm: %s", leaderElectionID)
    
    	metricsOptions := metricsserver.Options{BindAddress: fmt.Sprintf("%s:%d", sArgs.monitoring.host, sArgs.monitoring.port)}
    
    	if len(watchNamespaces) > 0 {
    		// Create MultiNamespacedCache with watched namespaces if it's not empty.
    		mgrOpt = manager.Options{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/fuzzer/fuzzer.go

    func Funcs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *kubeproxyconfig.KubeProxyConfiguration, c fuzz.Continue) {
    			c.FuzzNoCustom(obj)
    			obj.BindAddress = fmt.Sprintf("%d.%d.%d.%d", c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(256))
    			obj.ClientConnection.ContentType = c.RandString()
    			obj.Conntrack.MaxPerCore = ptr.To(c.Int31())
    			obj.Conntrack.Min = ptr.To(c.Int31())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(newPath.Child("ConfigSyncPeriod"), config.ConfigSyncPeriod, "must be greater than 0"))
    	}
    
    	if netutils.ParseIPSloppy(config.BindAddress) == nil {
    		allErrs = append(allErrs, field.Invalid(newPath.Child("BindAddress"), config.BindAddress, "not a valid textual representation of an IP address"))
    	}
    
    	if config.HealthzBindAddress != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. samples/bookinfo/src/details/details.rb

    require 'webrick'
    require 'json'
    require 'net/http'
    
    if ARGV.length < 1 then
        puts "usage: #{$PROGRAM_NAME} port"
        exit(-1)
    end
    
    port = Integer(ARGV[0])
    
    server = WEBrick::HTTPServer.new(
        :BindAddress => '*',
        :Port => port,
        :AcceptCallback => -> (s) { s.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1) },
    )
    
    trap 'INT' do server.shutdown end
    
    server.mount_proc '/health' do |req, res|
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    			manifest: KubeProxyConfigMap19,
    			data: struct {
    				ControlPlaneEndpoint, ProxyConfig, ProxyConfigMap, ProxyConfigMapKey string
    			}{
    				ControlPlaneEndpoint: "foo",
    				ProxyConfig:          "  bindAddress: 0.0.0.0\n  clusterCIDR: 192.168.1.1\n  enableProfiling: false",
    				ProxyConfigMap:       "bar",
    				ProxyConfigMapKey:    "baz",
    			},
    		},
    		{
    			name:     "KubeProxyDaemonSet19",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options_test.go

    			DeleteCollectionWorkers: 1,
    			EnableGarbageCollection: true,
    			EnableWatchCache:        true,
    			DefaultWatchCacheSize:   100,
    		},
    		SecureServing: (&apiserveroptions.SecureServingOptions{
    			BindAddress: netutils.ParseIPSloppy("192.168.10.20"),
    			BindPort:    6443,
    			ServerCert: apiserveroptions.GeneratableKeyCert{
    				CertDirectory: "/var/run/kubernetes",
    				PairName:      "apiserver",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/options_test.go

    				DeleteCollectionWorkers: 1,
    				EnableGarbageCollection: true,
    				EnableWatchCache:        true,
    				DefaultWatchCacheSize:   100,
    			},
    			SecureServing: (&apiserveroptions.SecureServingOptions{
    				BindAddress: netutils.ParseIPSloppy("192.168.10.20"),
    				BindPort:    6443,
    				ServerCert: apiserveroptions.GeneratableKeyCert{
    					CertDirectory: "/var/run/kubernetes",
    					PairName:      "apiserver",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. samples/security/spire/spire-quickstart.yaml

      namespace: spire
    data:
      spire-controller-manager-config.yaml: |
        apiVersion: spire.spiffe.io/v1alpha1
        kind: ControllerManagerConfig
        metrics:
          bindAddress: 127.0.0.1:8082
        healthProbe:
          bindAddress: 127.0.0.1:8083
        leaderElection:
          leaderElect: true
          resourceName: 98c9c988.spiffe.io
          resourceNamespace: spire
        clusterName: demo-cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/config.go

    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    	// version skew. If unset, AdvertiseAddress/BindAddress will be used.
    	PeerAdvertiseAddress peerreconcilers.PeerAdvertiseAddress
    
    	ServiceAccountIssuer        serviceaccount.TokenGenerator
    	ServiceAccountMaxExpiration time.Duration
    	ExtendExpiration            bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			}
    
    			// launch server
    			config := setUp(t)
    
    			v := fakeVersion()
    			config.Version = &v
    
    			config.EnableIndex = true
    			secureOptions := (&SecureServingOptions{
    				BindAddress: netutils.ParseIPSloppy("127.0.0.1"),
    				BindPort:    6443,
    				ServerCert: GeneratableKeyCert{
    					CertKey: CertKey{
    						CertFile: serverCertBundleFile,
    						KeyFile:  serverKeyFile,
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top