Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for inFileNames (0.62 sec)

  1. pkg/test/framework/components/istio/eastwest.go

    	if err := os.WriteFile(iopFile, gwIOP, os.ModePerm); err != nil {
    		return err
    	}
    
    	// Install the gateway
    	s := i.ctx.Settings()
    	var inFileNames []string
    	inFileNames = append(inFileNames, iopFile)
    	if customSettings != "" {
    		inFileNames = append(inFileNames, customSettings)
    	}
    
    	setArgs := []string{
    		"hub=" + s.Image.Hub,
    		"tag=" + s.Image.Tag,
    		"values.global.imagePullPolicy=" + s.Image.PullPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/installer.go

    	if err != nil {
    		return err
    	}
    
    	iArgs := &mesh.InstallArgs{
    		InFilenames:   args.Files,
    		Set:           args.Set,
    		ManifestsPath: filepath.Join(testenv.IstioSrc, "manifests"),
    		Revision:      args.Revision,
    	}
    	if i.ctx.Settings().Ambient {
    		iArgs.InFilenames = append(iArgs.InFilenames, filepath.Join(testenv.IstioSrc, IntegrationTestAmbientDefaultsIOP))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate.go

    	"istio.io/istio/operator/pkg/object"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    )
    
    type ManifestGenerateArgs struct {
    	// InFilenames is an array of paths to the input IstioOperator CR files.
    	InFilenames []string
    	// OutFilename is the path to the generated output directory.
    	OutFilename string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. operator/pkg/manifest/shared.go

    // 2. Profile overlay, if non-default overlay is selected. This also comes either from compiled in or path specified in IOP contained in inFilenames.
    // 3. User overlays stored in inFilenames.
    // 4. setOverlayYAML, which comes from --set flag passed to manifest command.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. operator/cmd/mesh/profile-dump.go

    	"istio.io/istio/operator/pkg/tpath"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/util/clog"
    )
    
    type profileDumpArgs struct {
    	// inFilenames is an array of paths to the input IstioOperator CR files.
    	inFilenames []string
    	// configPath sets the root node for the subtree to display the config for.
    	configPath string
    	// outputFormat controls the format of profile dumps
    	outputFormat string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/install.go

    	"istio.io/istio/pkg/art"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/kube"
    )
    
    type InstallArgs struct {
    	// InFilenames is an array of paths to the input IstioOperator CR files.
    	InFilenames []string
    	// ReadinessTimeout is maximum time to wait for all Istio resources to be ready. wait must be true for this setting
    	// to take effect.
    	ReadinessTimeout time.Duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/operator-init.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/kube"
    	buildversion "istio.io/istio/pkg/version"
    )
    
    type operatorInitArgs struct {
    	// inFilenames is the path to the input IstioOperator CR.
    	inFilename string
    
    	// common is shared operator args
    	common operatorCommonArgs
    }
    
    // kubeClients is a unit test override variable for client interfaces creation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/kube.go

    func (i *istioImpl) installRemoteClusterGateways(c cluster.Cluster) error {
    	inFilenames := []string{
    		filepath.Join(testenv.IstioSrc, IntegrationTestRemoteGatewaysIOP),
    	}
    	if i.gatewayIOP.file != "" {
    		inFilenames = append(inFilenames, i.gatewayIOP.file)
    	}
    	args := installArgs{
    		ComponentName: "ingress and egress gateways",
    		Files:         inFilenames,
    		Set: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook_test.go

    	var inFilenames []string
    	if inFilePath != "" {
    		inFilenames = []string{"testdata/inject/" + inFilePath}
    	}
    
    	l := clog.NewConsoleLogger(os.Stdout, os.Stderr, nil)
    	manifests, _, err := manifest.GenManifests(inFilenames, setFlags, false, nil, nil, l)
    	if err != nil {
    		t.Fatalf("failed to generate manifests: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
Back to top