Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for dockerUp (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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