Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for dockerUp (0.29 sec)

  1. cluster/gce/gci/configure-helper.sh

       fi
    }
    
    function assemble-docker-flags {
      echo "Assemble docker options"
    
        # log the contents of the /etc/docker/daemon.json if already exists
      if [ -f /etc/docker/daemon.json ]; then
        echo "Contents of the old docker config"
        cat /etc/docker/daemon.json
      fi
    
      cat <<EOF >/etc/docker/daemon.json
    {
    EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. go.sum

    github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
    github.com/docker/docker v26.0.2+incompatible h1:yGVmKUFGgcxA6PXWAokO0sQL22BrQ67cgVjko8tGdXE=
    github.com/docker/docker v26.0.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
    github.com/docker/docker-credential-helpers v0.8.1 h1:j/eKUktUltBtMzKqmfLB0PAgqYyMHOp5vfsD1807oKo=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    				// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
    				// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    				perm, err := hu.GetMode(volumePath)
    				if err != nil {
    					return nil, cleanupAction, err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    					Name: containerName,
    					State: v1.ContainerState{
    						Running: &v1.ContainerStateRunning{},
    					},
    					LastTerminationState: v1.ContainerState{
    						Terminated: &v1.ContainerStateTerminated{ContainerID: "docker://fakeid"},
    					},
    				},
    			},
    			success:  true,
    			pSuccess: true,
    		},
    		{
    			statuses: []v1.ContainerStatus{
    				{
    					Name: containerName,
    					State: v1.ContainerState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// sourcesReady records the sources seen by the kubelet, it is thread-safe.
    	sourcesReady config.SourcesReady
    
    	// Optional, defaults to /logs/ from /var/log
    	logServer http.Handler
    	// Optional, defaults to simple Docker implementation
    	runner kubecontainer.CommandRunner
    
    	// cAdvisor used for container information.
    	cadvisor cadvisor.Interface
    
    	// Set to true to have the node register itself with the apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        if [ -n "${ETCD_IMAGE:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_IMAGE: $(yaml-quote "${ETCD_IMAGE}")
    EOF
        fi
        # ETCD_DOCKER_REPOSITORY (if set) allows to use a custom etcd docker repository to pull the etcd image from.
        if [ -n "${ETCD_DOCKER_REPOSITORY:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_DOCKER_REPOSITORY: $(yaml-quote "${ETCD_DOCKER_REPOSITORY}")
    EOF
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    		{
    			devAddresses: map[string][]string{},
    			expectIPs:    []string{},
    		},
    		// case 3
    		{
    			devAddresses: map[string][]string{"encap0": {"10.20.30.40", "fe80::200:ff:fe01:1"}, "lo": {"127.0.0.1", "::1"}, "docker0": {"172.17.0.1"}},
    			expectIPs:    []string{"10.20.30.40", "172.17.0.1"},
    		},
    		// case 4
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

        spec:
          
          serviceAccountName: grafana
          automountServiceAccountToken: true
          enableServiceLinks: true
          containers:
            - name: grafana
              image: "docker.io/grafana/grafana:11.0.0"
              imagePullPolicy: IfNotPresent
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top