Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setup_kind_registry (0.32 sec)

  1. prow/integ-suite-kind.sh

        export INTEGRATION_TEST_KUBECONFIG
        INTEGRATION_TEST_KUBECONFIG=NONE
      fi
    fi
    
    if [[ -z "${SKIP_BUILD:-}" ]]; then
      trace "setup kind registry" setup_kind_registry
      trace "build images" build_images "${PARAMS[*]}"
    fi
    
    # Run the test target if provided.
    if [[ -n "${PARAMS:-}" ]]; then
      trace "test" make "${PARAMS[*]}"
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. prow/lib.sh

      fi
    }
    
    # Creates a local registry for kind nodes to pull images from. Expects that the "kind" network already exists.
    function setup_kind_registry() {
      # create a registry container if it not running already
      running="$(docker inspect -f '{{.State.Running}}' "${KIND_REGISTRY_NAME}" 2>/dev/null || true)"
      if [[ "${running}" != 'true' ]]; then
          docker run \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top