Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkInstallStatus (0.14 sec)

  1. tests/integration/operator/uninstall_test.go

    				iopCRFile = filepath.Join(workDir, "iop_cr.yaml")
    				r := "v2"
    				// later just run `kubectl apply -f newcr.yaml` to apply new installation cr files and verify.
    				applyIop(t, t, cs, "minimal", r)
    
    				if err := checkInstallStatus(cs, r); err != nil {
    					t.Errorf("failed to check install status: %v", err)
    				}
    
    				iopName := revName("test-istiocontrolplane", r)
    
    				log.Infof("delete iop %s", iopName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. tests/integration/operator/switch_cr_test.go

    		err = multierror.Append(err, e)
    	}
    	if err != nil {
    		scopes.Framework.Errorf("failed to cleanup dynamically created resources: %v", err)
    	}
    }
    
    // checkInstallStatus check the status of IstioOperator CR from the cluster
    func checkInstallStatus(cs istioKube.CLIClient, revision string) error {
    	scopes.Framework.Infof("checking IstioOperator CR status")
    	gvr := iopv1alpha1.IstioOperatorGVR
    
    	var unhealthyCN []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top