Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setup_kind_clusters (0.21 sec)

  1. common/scripts/kind_provisioner.sh

    # Cleans up the clusters created by setup_kind_clusters
    # It expects CLUSTER_NAMES to be present which means that
    # load_cluster_topology must be called before invoking it
    function cleanup_kind_clusters() {
      echo "Test exited with exit code $?."
      for c in "${CLUSTER_NAMES[@]}"; do
        cleanup_kind_cluster "${c}"
      done
    }
    
    # setup_kind_clusters sets up a given number of kind clusters with given topology
    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)
Back to top