Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 385 for targetpod2 (0.36 sec)

  1. tests/integration/pilot/workloadentry_test.go

        topology.istio.io/cluster: {{.clusterName}}
    spec:
      address: "{{.address}}"
      network: "{{.network}}"
    {{- if gt .targetPort 0 }}
      ports:
        http: {{ .targetPort }}
    {{- end }}
    `
    
    			testCases := []struct {
    				name            string
    				addressFunc     func(nw string) string
    				targetPortFunc  func(nw string) int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tests/integration/ambient/testdata/beta-mtls-automtls-workload.yaml

    metadata:
      name: "b-strict"
      annotations:
        test-suite: "beta-mtls-automtls-workload"
    spec:
      selector:
        matchLabels:
          app: b
      mtls:
        mode: STRICT
      portLevelMtls:
        # 8090 is the targetPort for service http port.
        8090:
          mode: DISABLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 560 bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-server-service.yaml

        kubernetes.io/cluster-service: "true"
        kubernetes.io/name: "Metrics-server"
    spec:
      selector:
        k8s-app: metrics-server
      ports:
      - port: 443
        protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 20:14:57 UTC 2017
    - 336 bytes
    - Viewed (0)
  4. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

        addonmanager.kubernetes.io/mode: Reconcile
        kubernetes.io/name: "KubeDNSUpstream"
    spec:
      ports:
      - name: dns
        port: 53
        protocol: UDP
        targetPort: 53
      - name: dns-tcp
        port: 53
        protocol: TCP
        targetPort: 53
      selector:
        k8s-app: kube-dns
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: node-local-dns
      namespace: kube-system
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pkg/volume/util/hostutil/hostutil.go

    	}
    	// err in call to os.Stat
    	if err != nil {
    		return pathType, err
    	}
    
    	// checks whether the mode is the target mode.
    	isSpecificMode := func(mode, targetMode os.FileMode) bool {
    		return mode&targetMode == targetMode
    	}
    
    	mode := info.Mode()
    	if mode.IsDir() {
    		return FileTypeDirectory, nil
    	} else if mode.IsRegular() {
    		return FileTypeFile, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/typha-service.yaml

      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: calico-typha
    spec:
      ports:
        - port: 5473
          protocol: TCP
          targetPort: calico-typha
          name: calico-typha
      selector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 11 23:11:57 UTC 2017
    - 356 bytes
    - Viewed (0)
  7. internal/event/targetlist_test.go

    				t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
    			}
    
    			for _, targetID1 := range result {
    				var found bool
    				for _, targetID2 := range testCase.expectedResult {
    					if reflect.DeepEqual(targetID1, targetID2) {
    						found = true
    						break
    					}
    				}
    				if !found {
    					t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway.yaml

        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-ingressgateway
    spec:
      ports:
      - name: http2
        nodePort: 31380
        port: 80
        protocol: TCP
        targetPort: 8003
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 03 07:52:54 UTC 2023
    - 674 bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe_test.go

    					Spec: corev1.ServiceSpec{
    						Selector: map[string]string{
    							"app": "productpage",
    						},
    						Ports: []corev1.ServicePort{
    							{
    								Name:       "http",
    								Port:       9080,
    								TargetPort: intstr.FromInt32(9080),
    							},
    						},
    					},
    				},
    				&corev1.Service{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "ingress",
    						Namespace: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. samples/ambient-argo/tag-chart/templates/shimservice.yaml

    spec:
      ports:
        - name: grpc-xds
          port: 15010
          protocol: TCP
        - name: https-dns
          port: 15012
          protocol: TCP
        - name: https-webhook
          port: 443
          protocol: TCP
          targetPort: 15017
        - name: http-monitoring
          port: 15014
          protocol: TCP
      selector:
        app: istiod
        istio.io/rev: {{ .Values.base.istiodservice }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 712 bytes
    - Viewed (0)
Back to top