Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ApplyYAMLFilesDryRun (0.28 sec)

  1. tests/integration/pilot/validation_test.go

    								}
    							}
    
    							ns := namespace.NewOrFail(t, t, namespace.Config{
    								Prefix: "validation",
    							})
    
    							applyFiles := t.WriteYAMLOrFail(t, "apply", ym)
    							dryRunErr := cluster.ApplyYAMLFilesDryRun(ns.Name(), applyFiles...)
    
    							switch {
    							case dryRunErr != nil && valid:
    								if denied(dryRunErr) {
    									t.Fatalf("got unexpected for valid config: %v", dryRunErr)
    								} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. pkg/kube/client.go

    	// ApplyYAMLContents applies the resources in the given YAML strings.
    	ApplyYAMLContents(namespace string, yamls ...string) error
    
    	// ApplyYAMLFilesDryRun performs a dry run for applying the resource in the given YAML files
    	ApplyYAMLFilesDryRun(namespace string, yamlFiles ...string) error
    
    	// DeleteYAMLFiles deletes the resources in the given YAML files.
    	DeleteYAMLFiles(namespace string, yamlFiles ...string) error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top