Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 690 for ContainerT (0.22 sec)

  1. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{- end }}
      {{- end }}
    {{- end }}
    {{ $nativeSidecar := (eq (env "ENABLE_NATIVE_SIDECARS" "false") "true") }}
    {{- $containers := list }}
    {{- range $index, $container := .Spec.Containers }}{{ if not (eq $container.Name "istio-proxy") }}{{ $containers = append $containers $container.Name }}{{end}}{{- end}}
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	}
    	if quotaExists && periodExists {
    		f.cpuHardcapping = true
    	}
    	return f, nil
    }
    
    // TODO(vmarmol): Add limits to the system containers.
    // Takes the absolute name of the specified containers.
    // Empty container name disables use of the specified container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.injected

        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"securityContext":{"runAsUser":1234,"runAsGroup":4321}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. hack/testdata/multi-resource-yaml.yaml

    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
        spec:
          containers:
          - name: mock-container
            image: registry.k8s.io/pause:3.10
            ports:
            - containerPort: 9949
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 511 bytes
    - Viewed (0)
  5. hack/testdata/multi-resource-yaml-modify.yaml

    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
            status: replaced
        spec:
          containers:
          - name: mock-container
            image: registry.k8s.io/pause:3.10
            ports:
            - containerPort: 9949
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 557 bytes
    - Viewed (0)
  6. hack/testdata/multi-resource-json.json

         "selector":{
           "app":"mock"
         },
         "template":{
           "metadata":{
             "labels":{
               "app":"mock"
             }
           },
           "spec":{
             "containers":[{
               "name": "mock-container",
               "image": "registry.k8s.io/pause:3.10",
               "ports":[{
                 "containerPort":9949,
                 "protocol":"TCP"
               }]
             }]
           }
         }
       }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 879 bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.MarkDeprecated("maximum-dead-containers-per-container", "Use --eviction-hard or --eviction-soft instead. Will be removed in a future version.")
    	fs.Int32Var(&f.MaxContainerCount, "maximum-dead-containers", f.MaxContainerCount, "Maximum number of old instances of containers to retain globally.  Each container takes up some disk space. To disable, set to a negative number.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    		return req.pod
    	}
    	// We found a previous status annotation. Possibly we are re-injecting the pod
    	// To ensure idempotency, remove our injected containers first
    	for _, c := range prevStatus.Containers {
    		pod.Spec.Containers = modifyContainers(pod.Spec.Containers, c, Remove)
    	}
    	for _, c := range prevStatus.InitContainers {
    		pod.Spec.InitContainers = modifyContainers(pod.Spec.InitContainers, c, Remove)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.cni.injected

        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"securityContext":{"runAsUser":1234,"runAsGroup":4321}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/kubelet/config/config_test.go

    	config.Sync()
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.SET, kubetypes.AllSource, CreateValidPod("foo", "new")))
    
    	// container updates are separated as UPDATE
    	pod := *podUpdate.Pods[0]
    	pod.Spec.Containers = []v1.Container{{Name: "bar", Image: "test", ImagePullPolicy: v1.PullIfNotPresent, TerminationMessagePolicy: v1.TerminationMessageReadFile}}
    	channel <- CreatePodUpdate(kubetypes.ADD, TestSource, &pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top