Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 538 for Backend (0.41 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/routes/empty-gateway/output.txt

    NAME     VHOST NAME     DOMAINS     MATCH                  VIRTUAL SERVICE
             backend        *           /healthz/ready*        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 190 bytes
    - Viewed (0)
  2. cmd/format-meta.go

    const (
    	// Format config file carries backend format specific details.
    	formatConfigFile = "format.json"
    )
    
    const (
    	// Version of the formatMetaV1
    	formatMetaVersionV1 = "1"
    )
    
    // format.json currently has the format:
    // {
    //   "version": "1",
    //   "format": "XXXXX",
    //   "XXXXX": {
    //
    //   }
    // }
    // Here "XXXXX" depends on the backend, currently we have "fs" and "xl" implementations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/redis-master-controller.yaml

    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: redis-master
      labels:
        app: redis
        role: master
        tier: backend
    spec:
      replicas: 1
      template:
        metadata:
          labels:
            app: redis
            role: master
            tier: backend
        spec:
          containers:
          - name: master
            image: registry.k8s.io/redis:e2e  # or just image: redis
            resources:
              requests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 502 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-multi.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello-v1
    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
          version: v1
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
            version: v1
        spec:
          containers:
            - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1014 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/list.yaml

          name: hello-v1
        spec:
          replicas: 3
          selector:
            matchLabels:
              app: hello  
              tier: backend
              track: stable
              version: v1
          template:
            metadata:
              labels:
                app: hello
                tier: backend
                track: stable
                version: v1
            spec:
              containers:
                - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-image-pull-secret.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          imagePullSecrets:
            - name: fooSecret
          containers:
            - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 04 18:34:21 UTC 2020
    - 510 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/testdata/overlay.yaml

          http:
            paths:
              - backend:
                  service:
                    name: service1
                    port:
                      number: 4200
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo2
      namespace: ns
    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - path: /second
                backend:
                  service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 596 bytes
    - Viewed (0)
  8. cmd/notification-summary.go

    	for _, disk := range diskInfo {
    		// Ignore invalid.
    		if disk.PoolIndex < 0 || len(s.Backend.StandardSCData) <= disk.PoolIndex {
    			// https://github.com/minio/minio/issues/16500
    			continue
    		}
    		// Ignore parity disks
    		if disk.DiskIndex < s.Backend.StandardSCData[disk.PoolIndex] {
    			capacity += disk.TotalSpace
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-host-network.yaml.injected

      name: hello-host-network
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello-host-network
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          creationTimestamp: null
          labels:
            app: hello-host-network
            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 628 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/auth.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 460 bytes
    - Viewed (0)
Back to top