Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for ServiceName (0.54 sec)

  1. samples/addons/loki.yaml

        app.kubernetes.io/component: single-binary
        app.kubernetes.io/part-of: memberlist
    spec:
      replicas: 1
      podManagementPolicy: Parallel
      updateStrategy:
        rollingUpdate:
          partition: 0
      serviceName: loki-headless
      revisionHistoryLimit: 10
      
      persistentVolumeClaimRetentionPolicy:
        whenDeleted: Delete
        whenScaled: Delete
      selector:
        matchLabels:
          app.kubernetes.io/name: loki
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters_test.go

    	return f.Config().Ports.MustForName(name)
    }
    
    func (f fakeInstance) Config() echo.Config {
    	cfg := echo.Config(f)
    	_ = cfg.FillDefaults(nil)
    	return cfg
    }
    
    func (f fakeInstance) ServiceName() string {
    	return f.Config().Service
    }
    
    func (f fakeInstance) NamespaceName() string {
    	return f.Config().NamespaceName()
    }
    
    func (f fakeInstance) ServiceAccountName() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    		name = name[:chainNameBaseLengthMax-3] + "..."
    	}
    	return name
    }
    
    // servicePortChainNameBase returns the base name for a chain for the given ServicePort.
    // This is something like "HASH-namespace/serviceName/protocol/portName", e.g,
    // "ULMVA6XW-ns1/svc1/tcp/p80".
    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	return
    }
    
    func CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    			continue
    		}
    		serviceName := service.Name
    
    		// We always want to add environment variabled for master services
    		// from the default namespace, even if enableServiceLinks is false.
    		// We also add environment variables for other services in the same
    		// namespace, if enableServiceLinks is true.
    		if service.Namespace == metav1.NamespaceDefault && masterServices.Has(serviceName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"foo": "bar"},
    			},
    			Replicas:             ptr.To(replicas),
    			Template:             template,
    			VolumeClaimTemplates: claims,
    			ServiceName:          "governingsvc",
    			UpdateStrategy:       apps.StatefulSetUpdateStrategy{Type: apps.RollingUpdateStatefulSetStrategyType},
    			PersistentVolumeClaimRetentionPolicy: &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils.go

    func initIdentity(set *apps.StatefulSet, pod *v1.Pod) {
    	updateIdentity(set, pod)
    	// Set these immutable fields only on initial Pod creation, not updates.
    	pod.Spec.Hostname = pod.Name
    	pod.Spec.Subdomain = set.Spec.ServiceName
    }
    
    // updateIdentity updates pod's name, hostname, and subdomain, and StatefulSetPodNameLabel to conform to set's name
    // and headless service.
    func updateIdentity(set *apps.StatefulSet, pod *v1.Pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    func maybeApplyEdsConfig(c *cluster.Cluster) {
    	if c.GetType() != cluster.Cluster_EDS {
    		return
    	}
    
    	c.EdsClusterConfig = &cluster.Cluster_EdsClusterConfig{
    		ServiceName: c.Name,
    		EdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_Ads{
    				Ads: &core.AggregatedConfigSource{},
    			},
    			InitialFetchTimeout: durationpb.New(0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    			return nil, &ConfigError{Reason: InvalidDestination, Message: "port is required in backendRef"}
    		}
    		if strings.Contains(string(to.Name), ".") {
    			return nil, &ConfigError{Reason: InvalidDestination, Message: "serviceName invalid; the name of the Service must be used, not the hostname."}
    		}
    		hostname := fmt.Sprintf("%s.%s.svc.%s", to.Name, namespace, ctx.Domain)
    		if ctx.Context.GetService(hostname, namespace) == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    								},
    							},
    						},
    					},
    					"serviceName": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top