Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for artifactId (0.18 sec)

  1. bin/init.sh

    ISTIO_ENVOY_LINUX_DEBUG_URL="${ISTIO_ENVOY_LINUX_DEBUG_URL:-${ISTIO_ENVOY_DEBUG_URL}}"
    ISTIO_ENVOY_LINUX_RELEASE_URL="${ISTIO_ENVOY_LINUX_RELEASE_URL:-${ISTIO_ENVOY_RELEASE_URL}}"
    # Variables for the extracted debug/release Envoy artifacts.
    ISTIO_ENVOY_LINUX_DEBUG_DIR="${ISTIO_ENVOY_LINUX_DEBUG_DIR:-${TARGET_OUT_LINUX}/debug}"
    ISTIO_ENVOY_LINUX_DEBUG_NAME="${ISTIO_ENVOY_LINUX_DEBUG_NAME:-envoy-debug-${ISTIO_ENVOY_LINUX_VERSION}}"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 25 19:11:31 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  2. .gitignore

    # git history files
    .history_rewritten_*
    # Eclipse artifacts
    .project
    .pydevproject
    #Vagrant
    tools/vagrant/.vagrant/
    # Intellij
    *.iml
    .idea/
    .run/
    # Visual Studio Code
    .vscode/
    # Bazel
    /bazel-*
    # vi swap files
    .*.swp
    # vi backups
    *.bak
    # common backups
    *~
    # python artifacts
    *.pyc
    # pilot
    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jun 14 16:23:45 GMT 2022
    - 1K bytes
    - Viewed (0)
  3. common/scripts/lint_go.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    if [[ "${ARTIFACTS}" != "" ]]; then
      golangci-lint run -v -c ./common/config/.golangci.yml --out-format colored-line-number,junit-xml:"${ARTIFACTS}"/junit-lint.xml
    else
      golangci-lint run -v -c ./common/config/.golangci.yml
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 26 21:57:53 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  4. common/scripts/kind_provisioner.sh

    # and deletes the KinD cluster with that name
    function cleanup_kind_cluster() {
      echo "Test exited with exit code $?."
      NAME="${1}"
      kind export logs --name "${NAME}" "${ARTIFACTS}/kind" -v9 || true
      if [[ -z "${SKIP_CLEANUP:-}" ]]; then
        echo "Cleaning up kind cluster"
        kind delete cluster --name "${NAME}" -v9 || true
      fi
    }
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  5. common/scripts/check_clean_repo.sh

          return 0
        fi
        outName="artifacts/${PATCH_OUT#"${ARTIFACTS}"/}"
        patchFile="${PROW_ARTIFACTS_BASE:-https://gcsweb.istio.io/gcs/istio-prow}/pr-logs/pull/${REPO_OWNER}_${REPO_NAME}/${PULL_NUMBER}/${JOB_NAME}/${BUILD_ID}/${outName}"
        echo "You can also try applying the patch file from the build artifacts:
    
    git apply <(curl -sL \"${patchFile}\")
    "
    }
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 11 22:57:12 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  6. Makefile.core.mk

    # that would need the Linux binaries (ex. tests).
    BUILD_DEPS:=
    ifeq ($(IN_BUILD_CONTAINER),1)
      ifneq ($(GOOS_LOCAL),"linux")
        BUILD_DEPS += build-linux
      endif
    endif
    
    export ARTIFACTS ?= $(TARGET_OUT)
    export JUNIT_OUT ?= $(ARTIFACTS)/junit.xml
    export REPO_ROOT := $(shell git rev-parse --show-toplevel)
    
    # Make directories needed by the build system
    $(shell mkdir -p $(TARGET_OUT_LINUX))
    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)
  7. istioctl/pkg/workload/workload_test.go

    			expectedOutput:    "Error: expecting a WorkloadGroup artifact file or the name and namespace of an existing WorkloadGroup\n",
    		},
    		{
    			description:       "Invalid command args - missing valid input spec",
    			args:              strings.Split("entry configure -n bar -o temp --clusterID cid", " "),
    			expectedException: true,
    			expectedOutput:    "Error: expecting a WorkloadGroup artifact file or the name and namespace of an existing WorkloadGroup\n",
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 16:59:05 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/workload.go

    This includes a MeshConfig resource, the cluster.env file, and necessary certificates and security tokens.
    Configure requires either the WorkloadGroup artifact path or its location on the API server.`,
    		Example: `  # configure example using a local WorkloadGroup artifact
      istioctl x workload entry configure -f workloadgroup.yaml -o config
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  9. README.md

    information on the Istio community, including the various documents that govern
    the Istio open source project.
    
    - [istio/istio](README.md). This is the main code repository. It hosts Istio's
    core components, install artifacts, and sample programs. It includes:
    
        - [istioctl](istioctl/). This directory contains code for the
    [_istioctl_](https://istio.io/latest/docs/reference/commands/istioctl/) command line utility.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 15:28:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  10. common/scripts/setup_env.sh

      KUBECONFIG="${container_kubeconfig%?}"
    fi
    
    # LOCAL_OUT should point to architecture where we are currently running versus the desired.
    # This is used when we need to run a build artifact during tests or later as part of another
    # target.
    if [[ "${FOR_BUILD_CONTAINER:-0}" -eq "1" ]]; then
      # Override variables with container specific
      TARGET_OUT=${CONTAINER_TARGET_OUT}
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
Back to top