Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 335 for containerId (0.27 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Container.java

     */
    
    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    
    /**
     * A container classpath entry.
     */
    public class Container extends AbstractClasspathEntry {
    
        public Container(Node node) {
            super(node);
        }
    
        public Container(String path) {
            super(path);
        }
    
        @Override
        public String getKind() {
            return "con";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure.sh

      systemctl stop containerd
      mkdir -p /home/containerd/
      mount --bind /home/containerd /home/containerd
      mount -o remount,exec /home/containerd
      if [[ -n "${COS_INSTALL_CONTAINERD_VERSION:-}" ]]; then
        # containerd versions have slightly different url(s), so try both
        # shellcheck disable=SC2086
        ( curl ${CURL_FLAGS} \
            --location \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    function Start_Containerd {
      # Do the registration only if the containerd service does not exist.
      if ((Get-WMIObject -Class Win32_Service -Filter  "Name='containerd'") -eq $null) {
        Log-Output "Creating containerd service"
        & containerd.exe --register-service --log-file "${env:LOGS_DIR}/containerd.log"
      }
    
      Log-Output "Starting containerd service"
      Restart-Service containerd
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/resetconfiguration_test.go

    				kind: ResetConfiguration
    				criSocket: unix:///var/run/containerd/containerd.sock
    			`),
    			expectErr: true,
    		},
    		{
    			name: "valid v1beta4 is loaded",
    			fileContents: dedent.Dedent(`
    				apiVersion: kubeadm.k8s.io/v1beta4
    				kind: ResetConfiguration
    				force: true
    				cleanupTmpDir: true
    				criSocket: unix:///var/run/containerd/containerd.sock
    				certificatesDir: /etc/kubernetes/pki
    				ignorePreflightErrors:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 06 13:21:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubelet/flags_test.go

    				nodeRegOpts: &kubeadmapi.NodeRegistrationOptions{
    					CRISocket: "unix:///var/run/containerd/containerd.sock",
    					KubeletExtraArgs: []kubeadmapi.Arg{
    						{Name: "hostname-override", Value: "override-name"},
    					},
    				},
    			},
    			expected: []kubeadmapi.Arg{
    				{Name: "container-runtime-endpoint", Value: "unix:///var/run/containerd/containerd.sock"},
    				{Name: "hostname-override", Value: "override-name"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. cluster/gce/gci/README.md

        image: cos-77-12371-274-0
        project: cos-cloud
        metadata: "user-data</go/src/github.com/containerd/cri/test/e2e_node/init.yaml,containerd-configure-sh</go/src/github.com/containerd/cri/cluster/gce/configure.sh,containerd-extra-init-sh</go/src/github.com/containerd/cri/test/e2e_node/gci-init.sh,containerd-env</workspace/test-infra/jobs/e2e_node/containerd/cri-master/env,gci-update-strategy=update_disabled"
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/multi-container.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: app
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: app
      template:
        metadata:
          labels:
            app: app
        spec:
          containers:
          - image: image
            name: name1
          - image: alpine
            name: name2
            ports:
            - containerPort: 123
              name: foo
          - name: name3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 397 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/constants/constants_unix.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package constants
    
    const (
    	// CRISocketContainerd is the containerd CRI endpoint
    	CRISocketContainerd = "unix:///var/run/containerd/containerd.sock"
    	// CRISocketCRIO is the cri-o CRI endpoint
    	CRISocketCRIO = "unix:///var/run/crio/crio.sock"
    	// CRISocketDocker is the cri-dockerd CRI endpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants_windows.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package constants
    
    const (
    	// CRISocketContainerd is the containerd CRI endpoint
    	CRISocketContainerd = "npipe:////./pipe/containerd-containerd"
    	// CRISocketCRIO is the cri-o CRI endpoint
    	// NOTE: this is a placeholder as CRI-O does not support Windows
    	CRISocketCRIO = "npipe:////./pipe/cri-o"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    		}
    	}
    }
    
    func makeContainersByQOS(class v1.PodQOSClass) []v1.Container {
    	resource := newResourceList("100m", "1Gi", "")
    	switch class {
    	case v1.PodQOSGuaranteed:
    		return []v1.Container{newContainer("guaranteed-container", resource, resource)}
    	case v1.PodQOSBurstable:
    		return []v1.Container{newContainer("burtable-container", resource, nil)}
    	case v1.PodQOSBestEffort:
    		fallthrough
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top