Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 385 for targetpod2 (0.3 sec)

  1. pkg/kube/inject/testdata/inject/list-frontend.yaml

        apiVersion: v1
        metadata:
          name: frontend
        spec:
          selector:
            app: hello
            tier: frontend
          ports:
            - protocol: "TCP"
              port: 80
              targetPort: 80
          type: LoadBalancer
      - apiVersion: apps/v1
        kind: Deployment
        metadata:
          name: frontend
        spec:
          replicas: 1
          selector:
            matchLabels:
              app: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 893 bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/artifacts/guestbook/redis-master-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: redis-master
      labels:
        app: redis
        role: master
        tier: backend
    spec:
      ports:
      - port: 6379
        targetPort: 6379
      selector:
        app: redis
        role: master
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 233 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_simulation_test.go

    metadata:
      name: service-instance
      namespace: istio-system
      labels:
        experimental.istio.io/disable-gateway-port-translation: "true"
    spec:
      hosts: ["a.example.com"]
      ports:
      - number: 80
        targetPort: 8081
        name: http
        protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          istio: ingressgateway
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. cluster/addons/cluster-loadbalancing/glbc/default-svc.yaml

        addonmanager.kubernetes.io/mode: Reconcile
        kubernetes.io/name: "GLBCDefaultBackend"
    spec:
      # The default backend must be of type NodePort.
      type: NodePort
      ports:
      - port: 80
        targetPort: 8080
        protocol: TCP
        name: http
      selector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 00:53:12 UTC 2017
    - 577 bytes
    - Viewed (0)
  5. releasenotes/notes/48580.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/48580
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 23 16:37:47 UTC 2024
    - 223 bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/templates/service.yaml

      ipFamilyPolicy: {{ .IPFamilyPolicy }}
    {{- end }}
    {{- if .Headless }}
      clusterIP: None
    {{- end }}
      ports:
    {{- range $i, $p := .ServicePorts }}
      - name: {{ $p.Name }}
        port: {{ $p.ServicePort }}
        targetPort: {{ $p.WorkloadPort }}
    {{- end }}
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 917 bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/templates/service.yaml

      labels:
        name: istio-operator
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      ports:
      - name: http-metrics
        port: 8383
        targetPort: 8383
        protocol: TCP
      selector:
        name: istio-operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 28 18:55:36 UTC 2021
    - 337 bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: foo
      labels:
        app: foo
    spec:
      ports:
      - name: grpc
        port: 7070
        targetPort: 7070
      - name: http
        port: 8090
        targetPort: 8090
      selector:
        app: foo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-bar-rev-a
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: foo
          version: bar
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. operator/pkg/object/testdata/well-formed.yaml

        image: nginx
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: myservice
      namespace: default
    spec:
      selector:
        app: MyApp
      ports:
      - protocol: TCP
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 305 bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/fit.go

    func (f *Fit) isResourceScaleDown(targetPod, originalPod, modifiedPod *v1.Pod) bool {
    	if modifiedPod.UID != targetPod.UID && modifiedPod.Spec.NodeName == "" {
    		// If the update event is not for targetPod and a scheduled Pod,
    		// it wouldn't make targetPod schedulable.
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top