Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for credNames (0.11 sec)

  1. tests/integration/security/sds_ingress/util/util.go

    					GatewayLabel:   inst.Settings().IngressGatewayIstioLabel,
    				})
    				credNames = append(credNames, cred)
    			}
    			SetupConfig(ctx, ns.Get(), tests...)
    			return nil
    		}).
    		To(echotest.SimplePodServiceAndAllSpecial(1)).
    		RunFromClusters(func(ctx framework.TestContext, fromCluster cluster.Cluster, to echo.Target) {
    			for _, cn := range credNames {
    				CreateIngressKubeSecret(ctx, cn, Mtls, IngressCredentialA, false)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/ingress_test.go

    						// Verify the call works
    						ingressutil.SendRequestOrFail(t, ing, host, credName, ingressutil.TLS, tlsContextA,
    							ingressutil.ExpectedResponse{StatusCode: http.StatusOK})
    
    						// Now rotate the key/cert
    						ingressutil.RotateSecrets(t, credName, ingressutil.TLS,
    							ingressutil.IngressCredentialB, false)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/wait.go

    	}
    	return isReady, notReady, resourceDebugInfo, nil
    }
    
    func waitForCRDs(objects object.K8sObjects, client kube.Client) error {
    	var crdNames []string
    	for _, o := range object.KindObjects(objects, name.CRDStr) {
    		crdNames = append(crdNames, o.Name)
    	}
    	if len(crdNames) == 0 {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. tests/integration/security/egress_gateway_origination_test.go

    func TestSimpleTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleNetwork(). // https://github.com/istio/istio/issues/37134
    		Run(func(t framework.TestContext) {
    			var (
    				credName        = "tls-credential-cacert"
    				fakeCredName    = "fake-tls-credential-cacert"
    				credNameMissing = "tls-credential-not-created-cacert"
    			)
    
    			credentialA := ingressutil.IngressCredential{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top