Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for TERMINATE (0.12 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    			wantErr: false,
    			runtimePods: []*containertest.FakePod{
    				{
    					Pod: runtimePod(simplePod()),
    				},
    			},
    			terminatingErr: errors.New("unable to terminate"),
    			prepareWorker: func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord) {
    				// send a create
    				pod := simplePod()
    				w.UpdatePod(UpdatePodOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		kl.podWorkers.UpdatePod(UpdatePodOptions{
    			UpdateType: kubetypes.SyncPodKill,
    			Pod:        pod,
    		})
    	}
    
    	// Finally, terminate any pods that are observed in the runtime but not present in the list of
    	// known running pods from config. If we do terminate running runtime pods that will happen
    	// asynchronously in the background and those will be processed in the next invocation of
    	// HandlePodCleanups.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

         [[ "${LOGGING_DESTINATION:-}" == "elasticsearch" ]] && \
         [[ "${ENABLE_CLUSTER_LOGGING:-}" == "true" ]]; then
        echo "fluentd-elasticsearch addon is no longer included here. Terminate cluster initialization."
        echo "The addon can be installed from https://github.com/kubernetes-sigs/instrumentation-addons"
        exit 1
      fi
      if [[ "${ENABLE_NODE_LOGGING:-}" == "true" ]] && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    			klog.ErrorS(err, "Failed to update pod cache", "pod", klog.KObj(pod))
    			return false, err
    		}
    	}
    
    	return false, nil
    }
    
    // SyncTerminatingPod is expected to terminate all running containers in a pod. Once this method
    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  5. cluster/gce/util.sh

      if [[ -n "${NODE_ACCELERATORS}" ]]; then
        accelerator_args+=(--maintenance-policy TERMINATE --restart-on-failure --accelerator "${NODE_ACCELERATORS}")
        gcloud="gcloud beta"
      fi
    
      local preemptible_minions=()
      if [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
        preemptible_minions+=(--preemptible --maintenance-policy TERMINATE)
      fi
    
      local local_ssds=()
      local_ssd_ext_count=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      for (Node* control_ret : control_ret_nodes) {
        auto* inst = node_values_[control_ret->id()];
        inst_to_return.push_back(*std::prev(inst->result_end()));
      }
    
      // Terminate the function by adding a Fetch operation to terminate the graph
      // and a return operation to return the Graph results.
      builder_.setInsertionPointToEnd(&graph_op.getBody().front());
      builder_.create<mlir::tf_executor::FetchOp>(graph_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	destroyFunc := func() {
    		dFunc()
    		server.Terminate(t)
    	}
    	if hasCacheEnabled {
    		config := cacherstorage.Config{
    			Storage:        s,
    			Versioner:      storage.APIObjectVersioner{},
    			GroupResource:  schema.GroupResource{Resource: "pods"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	require.False(t, ok, "Expected syncLoopIteration to return !ok since update chan was closed")
    
    	// this should terminate immediately; if it hangs then the syncLoopIteration isn't aborting properly
    	kubelet.syncLoop(ctx, ch, kubelet)
    }
    
    func TestSyncPodsStartPod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

              },
              "deletionGracePeriodSeconds": {
                "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
                "format": "int64",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
Back to top