Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for running_containers (0.17 sec)

  1. .github/workflows/arm-ci.yml

          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
            shell: bash
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. .github/workflows/arm-ci-extended.yml

          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
              docker image prune -af
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. .github/workflows/arm-ci-extended-cpp.yml

          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
              docker image prune -af
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. .github/workflows/arm-cd.yml

          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
            shell: bash
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/metrics.go

    	VolumeStatsHealthStatusAbnormalKey = "volume_stats_health_status_abnormal"
    	RunningPodsKey                     = "running_pods"
    	RunningContainersKey               = "running_containers"
    	DesiredPodCountKey                 = "desired_pods"
    	ActivePodCountKey                  = "active_pods"
    	MirrorPodCountKey                  = "mirror_pods"
    	WorkingPodCountKey                 = "working_pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_termination_order.go

    	to := &terminationOrdering{
    		prereqs:    map[string][]chan struct{}{},
    		terminated: map[string]chan struct{}{},
    	}
    
    	runningContainers := map[string]struct{}{}
    	for _, name := range runningContainerNames {
    		runningContainers[name] = struct{}{}
    	}
    
    	var mainContainerChannels []chan struct{}
    	// sidecar containers need to wait on main containers, so we create a channel per main container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	for _, s := range podStatus.ContainerStatuses {
    		if s.State == kubecontainer.ContainerStateRunning {
    			runningContainers = append(runningContainers, s.ID.String())
    		}
    		if klogVEnabled {
    			containers = append(containers, container{Name: s.Name, State: string(s.State), ExitCode: s.ExitCode, FinishedAt: s.FinishedAt.UTC().Format(time.RFC3339Nano)})
    		}
    	}
    	if klogVEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top