Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 341 for svc5 (0.07 sec)

  1. src/runtime/sys_netbsd_arm64.s

    	MOVD	$0, R1			// arg 2 - rmtp
    	SVC	$SYS___nanosleep50
    	RET
    
    TEXT runtime·lwp_kill(SB),NOSPLIT,$0-16
    	MOVW	tid+0(FP), R0		// arg 1 - target
    	MOVD	sig+8(FP), R1		// arg 2 - signo
    	SVC	$SYS__lwp_kill
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$16
    	SVC	$SYS_getpid
    					// arg 1 - pid (from getpid)
    	MOVD	sig+0(FP), R1		// arg 2 - signo
    	SVC	$SYS_kill
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/cluster_local_test.go

    			host:     "s.kube-system.svc.cluster.local",
    			expected: true,
    		},
    		{
    			name:     "api server local is local",
    			m:        mesh.DefaultMeshConfig(),
    			host:     "kubernetes.default.svc.cluster.local",
    			expected: true,
    		},
    		{
    			name:     "discovery server is local",
    			m:        mesh.DefaultMeshConfig(),
    			host:     "istiod.istio-system.svc.cluster.local",
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      name: tls-tls-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      tls:
      - match:
        - sniHosts:
          - echo-1.default.svc.domain.suffix
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
      tcp:
      - match:
        - port: 80
        route:
        - destination:
            host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            subset: external-svc-tcp
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    		log.Warnf("%s failed creating ServiceExport %s/%s: %v", c.logPrefix(), svc.Namespace, svc.Name, err)
    		return err
    	}
    
    	log.Debugf("%s created ServiceExport %s/%s", c.logPrefix(), svc.Namespace, svc.Name)
    	return nil
    }
    
    func (c *autoServiceExportController) isClusterLocalService(svc *v1.Service) bool {
    	hostname := serviceRegistryKube.ServiceHostname(svc.Name, svc.Namespace, c.DomainSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    	svc, err := services.Services(namespace).Get(id)
    	if err != nil {
    		return nil, err
    	}
    
    	switch {
    	case svc.Spec.Type == v1.ServiceTypeClusterIP, svc.Spec.Type == v1.ServiceTypeLoadBalancer, svc.Spec.Type == v1.ServiceTypeNodePort:
    		// these are fine
    	default:
    		return nil, fmt.Errorf("unsupported service type %q", svc.Spec.Type)
    	}
    
    	svcPort, err := findServicePort(svc, port)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    cluster/inbound-vip|8000|http|httpbin.default.svc.cluster.local     httpbin.default.svc.cluster.local     8000     http       inbound-vip     EDS        
    cluster/prometheus_stats                                            cluster/prometheus_stats              -        -          -               STATIC     
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/tls_config.json

                          "operation": "productpage.default.svc.cluster.local:9080/productpage"
                        }
                      },
                      {
                        "match": {
                          "prefix": "/static",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml

        name: echo
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: allowed-my-svc
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: my-svc
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 34000
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/api/service/testing/make.go

    	for _, tweak := range tweaks {
    		tweak(svc)
    	}
    
    	return svc
    }
    
    // SetTypeClusterIP sets the service type to ClusterIP and clears other fields.
    func SetTypeClusterIP(svc *api.Service) {
    	svc.Spec.Type = api.ServiceTypeClusterIP
    	for i := range svc.Spec.Ports {
    		svc.Spec.Ports[i].NodePort = 0
    	}
    	svc.Spec.ExternalName = ""
    	svc.Spec.ExternalTrafficPolicy = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top