Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for waitForWorkloadCertUpdate (0.41 sec)

  1. tests/integration/security/cacert_rotation/main_test.go

    			}
    
    			lastUpdateTime = waitForWorkloadCertUpdate(t, from[0], istioCtl, lastUpdateTime)
    
    			// step 3: Remove the old root cert
    			if err := cert.CreateCustomCASecret(t,
    				"ca-cert-alt.pem", "ca-key-alt.pem",
    				"cert-chain-alt.pem", "root-cert-alt.pem"); err != nil {
    				t.Errorf("failed to update CA secret: %v", err)
    			}
    
    			waitForWorkloadCertUpdate(t, from[0], istioCtl, lastUpdateTime)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tests/integration/ambient/cacert_rotation_test.go

    			}
    
    			// perform one retry to handle race condition where ztunnel cert is refreshed before Istiod certificates are reloaded
    			retry.UntilSuccess(func() error {
    				newWorkloadCert := waitForWorkloadCertUpdate(t, ztunnelPod, sa, istioCtl, originalWorkloadSecret)
    				return verifyWorkloadCert(t, newWorkloadCert, newX509)
    			}, retry.MaxAttempts(2), retry.Timeout(5*time.Minute))
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top