Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,563 for service2 (0.34 sec)

  1. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

    # Same service as cluster1, should not report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    							// Delete the echo Service and verify that the ServiceExport is automatically removed.
    							ctx.NewSubTest("delete").Run(func(ctx framework.TestContext) {
    								err := cluster.Kube().CoreV1().Services(echos.Namespace.Name()).Delete(
    									context.TODO(), common.ServiceB, metav1.DeleteOptions{})
    								if err != nil {
    									ctx.Fatalf("failed deleting service %s/%s in cluster %s: %v",
    										echos.Namespace, common.ServiceB, cluster.Name(), err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/services/tests/services.sample.conf

    # tag::cli[]
    # gradle build
    # end::cli[]
    executable: gradle
    args: build -q
    expected-output-file: services.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 170 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

            services.get(SomeGlobalService).is(globalService)
            services.get(GradleUserHomeDirProvider).is(userHomeDirProvider)
            services.get(SomeHomeDirService).is(homeDirService)
            services.get(SomeHomeDirService).homeDir == dir
            !services.get(SomeHomeDirService).closed
        }
    
        def "does not close services when registry is released"() {
            def dir = new File("home-dir")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. hack/testdata/service-revision1.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: a
    spec:
      selector:
        app: test
      clusterIP: None
      ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 09 14:59:02 UTC 2018
    - 123 bytes
    - Viewed (0)
  6. prow/config/mixedlb-service.yaml

        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
            dataDir: /tmp/kind-cluster-etcd
        apiServer:
          extraArgs:
            "service-account-issuer": "kubernetes.default.svc"
            "service-account-signing-key-file": "/etc/kubernetes/pki/sa.key"
    containerdConfigPatches:
      - |-
        [plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:5000"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 02 18:38:35 UTC 2023
    - 801 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

    # Same service as cluster2, should not report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/validation_test.go

    			instance: &ServiceInstance{
    				Service: service1,
    				Endpoint: &IstioEndpoint{
    					Address:      "192.168.1.2",
    					EndpointPort: 1000000,
    				},
    			},
    		},
    		{
    			name: "endpoint missing service port",
    			instance: &ServiceInstance{
    				Service: service1,
    				ServicePort: &Port{
    					Name:     service1.Ports[1].Name + "-extra",
    					Port:     service1.Ports[1].Port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. samples/ratelimit/rate-limit-service.yaml

    #   limitations under the License.
    
    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/forward-proxy/service.tmpl.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: external-forward-proxy
    spec:
      selector:
        app: external-forward-proxy
      ports:
    {{- range $idx, $port := .ports }}
      - name: {{$port.Name}}
        port: {{$port.Port}}
        targetPort: {{$port.TargetPort}}
        protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 13:42:37 UTC 2022
    - 280 bytes
    - Viewed (0)
Back to top