Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Isha (0.17 sec)

  1. bin/update_crds.sh

        # not an official release or release candidate, so get the commit sha
        SHA=$(echo "${SHA}" | awk -F '-' '{ print $NF }')
      fi
    fi
    
    if [ -z "${SHA}" ]; then
      fail "Unable to retrieve the commit SHA of istio/api from go.mod file. Not updating the CRD file. Please make sure istio/api exists in the Go module.";
    fi
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 14:28:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. bin/update_deps.sh

    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      git ls-remote "https://github.com/istio/${1}.git" "refs/heads/${UPDATE_BRANCH}" | cut -f 1
    }
    
    make update-common
    
    export GO111MODULE=on
    go get -u "istio.io/api@${UPDATE_BRANCH}"
    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    sed -i "s/^BUILDER_SHA=.*\$/BUILDER_SHA=$(getSha release-builder)/" prow/release-commit.sh
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Sep 12 14:07:30 GMT 2023
    - 2K bytes
    - Viewed (0)
  3. istio.deps

    [
      {
        "_comment": "",
        "name": "PROXY_REPO_SHA",
        "repoName": "proxy",
        "file": "",
        "lastStableSHA": "22f0f1295c038d8336576455836c420ed2d8d906"
      },
      {
        "_comment": "",
        "name": "ZTUNNEL_REPO_SHA",
        "repoName": "ztunnel",
        "file": "",
        "lastStableSHA": "1b006e93c232769cff8f3d7d61cf01593d2a3578"
      }
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 24 14:33:22 GMT 2024
    - 335 bytes
    - Viewed (0)
  4. common/scripts/tracing.sh

        "ci.pipeline.run.repo=${REPO_OWNER:-unknown}/${REPO_NAME:-unknown},"\
        "ci.pipeline.run.base=${PULL_BASE_REF:-none},"\
        "ci.pipeline.run.pull_number=${PULL_NUMBER:-none},"\
        "ci.pipeline.run.pull_sha=${PULL_PULL_SHA:-${PULL_BASE_SHA:-none}}"
    }
    
    # Usage: tracing::run <span name> [command ...]
    function tracing::run() {
      # If not running in a prow job or otel-cli is not available (e.g. build system without otel-cli) just run the command
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jul 28 15:25:47 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  5. common/.commonfiles.sha

    Istio Automation <******@****.***> 1713901948 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 41 bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json

    {
        "bootstrap": {
            "node": {
                "metadata": {
                        "ISTIO_PROXY_SHA": "istio-proxy:436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                        "ISTIO_VERSION": "1.10.0"
                    },
                "userAgentBuildVersion": {
                    "version": {
                        "majorNumber": 1,
                        "minorNumber": 18,
                        "patch": 3
                    },
                    "metadata": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu May 05 11:02:00 GMT 2022
    - 739 bytes
    - Viewed (0)
  7. bin/build_ztunnel.sh

      AUTH_HEADER="Authorization: Bearer $(gcloud auth print-access-token)"
      export AUTH_HEADER
    fi
    
    ZTUNNEL_REPO_SHA="${ZTUNNEL_REPO_SHA:-$(grep ZTUNNEL_REPO_SHA istio.deps  -A 4 | grep lastStableSHA | cut -f 4 -d '"')}"
    ISTIO_ZTUNNEL_VERSION="${ISTIO_ZTUNNEL_VERSION:-${ZTUNNEL_REPO_SHA}}"
    ISTIO_ZTUNNEL_RELEASE_URL="${ISTIO_ZTUNNEL_RELEASE_URL:-${ISTIO_ZTUNNEL_BASE_URL}/ztunnel-${ISTIO_ZTUNNEL_VERSION}-${TARGET_ARCH}}"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 21:46:06 GMT 2024
    - 5K bytes
    - Viewed (0)
  8. Makefile.core.mk

    endif
    
    # For dockerx builds, allow HUBS which is a space separated list of hubs. Default to HUB.
    HUBS ?= $(HUB)
    
    # If tag not explicitly set in users' .istiorc.mk or command line, default to the git sha.
    TAG ?= $(shell git rev-parse --verify HEAD)
    ifeq ($(TAG),)
      $(error "TAG cannot be empty")
    endif
    
    PULL_POLICY ?= IfNotPresent
    ifeq ($(TAG),latest)
      PULL_POLICY = Always
    endif
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/configdump.go

    	const (
    		istioVersionKey  = "ISTIO_VERSION"
    		istioProxyShaKey = "ISTIO_PROXY_SHA"
    	)
    
    	md := bootstrapDump.GetBootstrap().GetNode().GetMetadata().GetFields()
    
    	if versionPB, ok := md[istioVersionKey]; ok {
    		version = versionPB.GetStringValue()
    	}
    	if shaPB, ok := md[istioProxyShaKey]; ok {
    		sha = shaPB.GetStringValue()
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 20:46:41 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                              description: An optional list of hex-encoded SHA-256 hashes
                                of the authorized client certificates.
                              items:
                                type: string
                              type: array
                            verifyCertificateSpki:
                              description: An optional list of base64-encoded SHA-256
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
Back to top