Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 594 for Echo (0.07 sec)

  1. pilot/pkg/networking/grpcgen/grpcecho_test.go

      labels:
        app: echo-app
      name: echo-app
      namespace: default
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: echo
      ports:
      - name: grpc
        targetPort: grpc
        port: 7070
    `,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
      host: echo-app.default.svc.cluster.local
      subsets:
        - name: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. hack/update-vendor-licenses.sh

    export GOFLAGS=-mod=mod
    
    # Check bash version
    if (( BASH_VERSINFO[0] < 4 )); then
      echo
      echo "ERROR: Bash v4+ required."
      # Extra help for OSX
      if [[ "$(uname -s)" == "Darwin" ]]; then
        echo
        echo "Ensure you are up to date on the following packages:"
        echo "$ brew install md5sha1sum bash jq"
      fi
      echo
      exit 9
    fi
    
    # This variable can be injected, as in the verify script.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. hack/verify-test-featuregates.sh

    lines=$(git grep 'genericfeatures[.].*:' -- pkg/features/kube_features.go)
    sorted_lines=$(echo "$lines" | sort -f)
    if [[ "$lines" != "$sorted_lines" ]]; then
      echo "Generic features in pkg/features/kube_features.go not sorted" >&2
      echo >&2
      echo "Expected:" >&2
      echo "$sorted_lines" >&2
      echo >&2
      echo "Got:" >&2
      echo "$lines" >&2
      rc=1
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tools/gen_istio_image_list.sh

        echo 
        echo "USAGE: ./gen_istio_image_list.sh [-v|--version] [-h|--help]"
        echo "      -v|--version : Istio release"
        echo "      -h|--help : Prints usage information"
        exit 1
    }
    
    # Process the input arguments.
    while [[ "$#" -gt 0 ]];
    do
       case "$1" in
          -v|--version )
              if [ -z "$2"  ];
              then
                 echo "Please provide an Istio release."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/config"
    	"istio.io/istio/pkg/test/framework/components/echo/config/param"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. docs/site-replication/run-multi-site-minio-idp.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	cat /tmp/minio1_2.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    EOF
        fi
    
        {
          # authentication
          echo "authentication:"
          echo "  webhook:"
          if [[ "${KUBELET_AUTHENTICATION_WEBHOOK:-}" != "false" ]]; then
            echo "    enabled: true"
          else
            echo "    enabled: false"
          fi
          echo "  x509:"
          if [[ -n "${CLIENT_CA_FILE:-}" ]]; then
            echo "    clientCAFile: \"${CLIENT_CA_FILE}\""
          else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. tools/certs/Makefile.k8s.mk

    .PHONY: %-cacerts
    
    %-cacerts: %/cert-chain.pem
    	@echo "done"
    
    %/cert-chain.pem: %/ca-cert.pem k8s-root-cert.pem
    	@echo "generating $@"
    	@cat $^ > $@
    	@echo "Intermediate certs stored in $(dir $<)"
    	@cp k8s-root-cert.pem $(dir $<)/root-cert.pem
    
    %/ca-cert.pem: %/cluster-ca.csr k8s-root-key.pem k8s-root-cert.pem
    	@echo "generating $@"
    	@openssl x509 -req -days $(INTERMEDIATE_DAYS) \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    			Always := func(echo.Instance, echo.CallOptions) bool {
    				return true
    			}
    			Never := func(echo.Instance, echo.CallOptions) bool {
    				return false
    			}
    			SameNetwork := func(from echo.Instance, to echo.Target) echo.Instances {
    				return match.Network(from.Config().Cluster.NetworkName()).GetMatches(to.Instances())
    			}
    			SupportsHBone := func(from echo.Instance, opts echo.CallOptions) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/run.go

    	oneToOneTest      func(t framework.TestContext, from echo.Instance, to echo.Target)
    	oneToNTest        func(t framework.TestContext, from echo.Instance, dsts echo.Services)
    	oneClusterOneTest func(t framework.TestContext, from cluster.Cluster, to echo.Target)
    	ingressTest       func(t framework.TestContext, from ingress.Instance, to echo.Target)
    )
    
    // Run will generate and run one subtest to send traffic between each combination
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top