Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Rm (0.14 sec)

  1. cluster/gce/util.sh

      KUBEPROXY_ARGS="${flags}"
    }
    
    # $1: if 'true', we're rendering config for a master, else a node
    function build-kubelet-config {
      local master="$1"
      local os="$2"
      local file="$3"
    
      rm -f "${file}"
      {
        print-common-kubelet-config
        if [[ "${master}" == "true" ]]; then
          print-master-kubelet-config
        else
          print-common-node-kubelet-config
          if [[ "${os}" == "linux" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    function start-etcd-servers {
      echo "Start etcd pods"
      if [[ -d /etc/etcd ]]; then
        rm -rf /etc/etcd
      fi
      if [[ -e /etc/default/etcd ]]; then
        rm -f /etc/default/etcd
      fi
      if [[ -e /etc/systemd/system/etcd.service ]]; then
        rm -f /etc/systemd/system/etcd.service
      fi
      if [[ -e /etc/init.d/etcd ]]; then
        rm -f /etc/init.d/etcd
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    			}
    			if oi.DeleteMarker && (validReplStatus || replicate) {
    				dsc.Set(newReplicateTargetDecision(tgtArn, replicate, sync))
    				continue
    			}
    			// can be the case that other cluster is down and duplicate `mc rm --vid`
    			// is issued - this still needs to be replicated back to the other target
    			if !oi.VersionPurgeStatus.Empty() {
    				replicate = oi.VersionPurgeStatus == Pending || oi.VersionPurgeStatus == Failed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top