Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 340 for tiers (0.04 sec)

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

        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
              tier: frontend
              track: stable
          template:
    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/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)
  3. 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)
  4. 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)
  5. test/heapsampling.go

    		// Passed on first try, report no error.
    		return nil
    	}
    	allocInterleaved2(iters)
    	if checkAllocations(getMemProfileRecords(), frames[0:2], iters, allocInterleavedSizes) == nil {
    		// Passed on second try, report no error.
    		return nil
    	}
    	allocInterleaved3(iters)
    	// If it fails a third time, we may be onto something.
    	return checkAllocations(getMemProfileRecords(), frames[0:3], iters, allocInterleavedSizes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 27 21:36:06 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    				nil,
    				true,
    				gvk,
    				schemaValidator,
    				nil,
    				sts,
    				nil,
    				nil,
    				nil,
    			)
    
    			iters := 1
    			if tt.iters > 0 {
    				iters = tt.iters
    			}
    			for i := 0; i < iters; i++ {
    				_ = strategy.ValidateUpdate(context.TODO(), tt.obj, tt.old)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/startup_live.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: Tue Aug 18 21:43:45 UTC 2020
    - 952 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-probes-proxyHoldApplication-ProxyConfig.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
          annotations:
            proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 995 bytes
    - Viewed (0)
  9. hack/testdata/redis-slave-replicaset.yaml

      name: redis-slave
      labels:
        app: redis
        role: slave
        tier: backend
    spec:
      # this replicas value is default
      # modify it according to your case
      replicas: 2
      selector:
        matchLabels:
          app: redis
          role: slave
          tier: backend
      template:
        metadata:
          labels:
            app: redis
            role: slave
            tier: backend
        spec:
          containers:
          - name: slave
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 981 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/user-volume.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: user-volume
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: user-volume
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: user-volume
            tier: backend
            track: stable
          annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 874 bytes
    - Viewed (0)
Back to top