Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for mage (0.07 sec)

  1. pkg/kubelet/container/runtime.go

    	}
    	return runningContainerStatuses
    }
    
    // Image contains basic information about a container image.
    type Image struct {
    	// ID of the image.
    	ID string
    	// Other names by which this image is known.
    	RepoTags []string
    	// Digests by which this image is known.
    	RepoDigests []string
    	// The size of the image in bytes.
    	Size int64
    	// ImageSpec for the image which include annotations.
    	Spec ImageSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    						{Name: "init1", Image: "initimage"},
    						{Name: "sidecar1", Image: "sidecarimage", RestartPolicy: ptr.To(api.ContainerRestartPolicyAlways)},
    					},
    					Containers: []api.Container{{Name: "container1", Image: "containerimage"}},
    				},
    				Status: api.PodStatus{
    					Phase: "Running",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    }
    
    // ImageStateSummary provides summarized information about the state of an image.
    type ImageStateSummary struct {
    	// Size of the image
    	Size int64
    	// Used to track how many nodes have this image, it is computed from the Nodes field below
    	// during the execution of Snapshot.
    	NumNodes int
    	// A set of node names for nodes having this image present. This field is used for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    		analyzer: &deployment.ApplicationUIDAnalyzer{},
    		expected: []message{
    			{msg.InvalidApplicationUID, "Deployment deploy-con-sec-uid"},
    		},
    	},
    	{
    		name: "Detect `image: auto` in non-injected pods",
    		inputFiles: []string{
    			"testdata/image-auto.yaml",
    		},
    		analyzer: &injection.ImageAutoAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				{
    					Name:    testContainerName,
    					Image:   "img",
    					ImageID: "img1234",
    					State:   v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    				},
    			},
    			Expected: []v1.ContainerStatus{
    				{
    					Name:               testContainerName,
    					ContainerID:        testContainerID.String(),
    					Image:              "img",
    					ImageID:            "img1234",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Added support for building Windows kube-proxy container image.
      A container image for kube-proxy on Windows can now be built with the command
      `make release-images KUBE_BUILD_WINDOWS=y`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. prow/release-commit.sh

    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -eux
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    
    setup_gcloud_credentials
    
    # Old prow image does not set this, so needed explicitly here as this is not called through make
    export GO111MODULE=on
    
    DOCKER_HUB=${DOCKER_HUB:-gcr.io/istio-testing}
    GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
    
    # Enable emulation required for cross compiling a few images (VMs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    			}
    
    			if cleanFlagSet.Changed("pod-infra-container-image") {
    				klog.InfoS("--pod-infra-container-image will not be pruned by the image garbage collector in kubelet and should also be set in the remote runtime")
    				_ = cmd.Flags().MarkDeprecated("pod-infra-container-image", "--pod-infra-container-image will be removed in 1.30. Image garbage collector will get sandbox image information from CRI.")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            /**
             * Whether the undeclared inputs accessed while serializing the task graph will be
             * excluded from input tracking. This is a temporary opt-out flag after a change
             * was made in that behavior.
             */
            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean,
            /**
             * Whether the instrumentation agent was used when computing the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. samples/addons/prometheus.yaml

            
            sidecar.istio.io/inject: "false"
        spec:
          enableServiceLinks: true
          serviceAccountName: prometheus
          containers:
            - name: prometheus-server-configmap-reload
              image: "ghcr.io/prometheus-operator/prometheus-config-reloader:v0.73.2"
              imagePullPolicy: "IfNotPresent"
              args:
                - --watched-dir=/etc/config
                - --reload-url=http://127.0.0.1:9090/-/reload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top