Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GRPC_ECHO_IMAGE (0.17 sec)

  1. pkg/test/env/istio.go

    	// ECHO_IMAGE is the image to use when deploying echo services.
    	// nolint: golint, revive, stylecheck
    	ECHO_IMAGE Variable = "ECHO_IMAGE"
    
    	// GRPC_ECHO_IMAGE is the image to use for a separate gRPC-only container in echo Pods.
    	// nolint: golint, revive, stylecheck
    	GRPC_ECHO_IMAGE Variable = "GRPC_ECHO_IMAGE"
    
    	// KUBECONFIG is the list of Kubernetes configuration files. If configuration files are specified on
    	// the command-line, that takes precedence.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/flags.go

    		s.Image.PullPolicy = env.PULL_POLICY.ValueOrDefault("Always")
    	}
    
    	if s.EchoImage == "" {
    		s.EchoImage = env.ECHO_IMAGE.ValueOrDefault("")
    	}
    
    	if s.CustomGRPCEchoImage == "" {
    		s.CustomGRPCEchoImage = env.GRPC_ECHO_IMAGE.ValueOrDefault("")
    	}
    
    	if s.HelmRepo == "" {
    		s.HelmRepo = "https://istio-release.storage.googleapis.com/charts"
    	}
    
    	if err = validate(s); err != nil {
    		return nil, err
    	}
    
    	return s, nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top