Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Live (3.64 sec)

  1. common/scripts/kind_provisioner.sh

          while read -r ip; do
            METALLB_IPS6+=("$ip")
          done < <(cidr_to_ips "$DOCKER_KIND_SUBNET" | tail -n 100)
        fi
      fi
    
      # Give this cluster of those IPs
      RANGE="["
      for i in {0..19}; do
        RANGE+="${METALLB_IPS4[1]},"
        METALLB_IPS4=("${METALLB_IPS4[@]:1}")
        if [[ "${#METALLB_IPS6[@]}" != 0 ]]; then
          RANGE+="${METALLB_IPS6[1]},"
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  2. docs/bucket/replication/setup_2site_existing_replication.sh

    remote_arn=$(./mc replicate ls sitea/bucket --json | jq -r .rule.Destination.Bucket)
    sleep 1
    
    ./mc replicate resync start sitea/bucket/ --remote-bucket "${remote_arn}"
    sleep 30s ## sleep for 30s idea is that we give 300ms per object.
    
    ./mc ls -r --versions sitea/bucket >/tmp/sitea.txt
    ./mc ls -r --versions siteb/bucket >/tmp/siteb.txt
    
    out=$(diff -qpruN /tmp/sitea.txt /tmp/siteb.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top