Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for makefile (0.41 sec)

  1. pilot/docker/Dockerfile.pilot

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. bin/init.sh

    # limitations under the License.
    
    # Init script downloads or updates envoy and the go dependencies. Called from Makefile, which sets
    # the needed environment variables.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    if [[ "${TARGET_OUT_LINUX:-}" == "" ]]; then
      echo "Environment variables not set. Make sure you run through the makefile (\`make init\`) rather than directly."
      exit 1
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. tools/skip-image.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -eu
    
    # This is a dedicated script to allow reference from script and makefile
    
    # Determine if we should skip an image
    # $1 = docker target
    # $2 = variant
    # We will filter out test image distroless variant; they do not need to support distroless
    if [[ $2 == "distroless" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 18:51:04 UTC 2020
    - 933 bytes
    - Viewed (0)
  4. hack/dev-build-and-push.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Build a dev release
    if ! make -f "${KUBE_ROOT}"/Makefile quick-release
    then
            echo "Building a release failed!"
            exit 1
    fi
    
    # Now push this out to the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 22 00:39:55 UTC 2019
    - 987 bytes
    - Viewed (0)
  5. cni/deployments/kubernetes/Dockerfile.install-cni

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  6. hack/dev-build-and-up.sh

    # release.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Build a dev release
    
    
    if ! make -f "${KUBE_ROOT}"/Makefile quick-release
    then
            echo "Building the release failed!"
            exit 1
    fi
    
    # Now bring a new cluster up with that release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 22 00:39:55 UTC 2019
    - 1014 bytes
    - Viewed (0)
  7. hack/e2e-node-test.sh

        ARGHELP="${ARGHELP}SKIP='${SKIP}'"
    fi
    
    echo "NOTE: $0 has been replaced by 'make test-e2e-node'"
    echo
    echo "This script supports a number of parameters passed as environment variables."
    echo "Please see the Makefile for more details."
    echo
    echo "The equivalent of this invocation is: "
    echo "    make test-e2e-node ${ARGHELP}"
    echo
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. pilot/docker/Dockerfile.proxyv2

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. hack/build-go.sh

    # limitations under the License.
    
    # This script is a vestigial redirection.  Please do not add "real" logic.
    
    # This script runs `make all` command.
    # The command compiles all Makefile configs.
    # Args:
    #   WHAT: Directory names to build.  If any of these directories has a 'main'
    #     package, the build will produce executable files under $(OUT_DIR)/go/bin.
    #     If not specified, "everything" will be built.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. cluster/addons/dns/kube-dns/README.md

    This directory contains the base UNDERSCORE templates that can be used to
    generate the kube-dns.yaml.in needed in Salt format.
    
    Due to a varied preference in templating language choices, the transform
    Makefile in this directory should be enhanced to generate all required formats
    from the base underscore templates.
    
    **N.B.**: When you add a parameter you should also update the various scripts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top