Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 310 for clientCert (0.16 sec)

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

    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    			Key:        mustReadCert("key.pem"),
    			// Override hostname to match the SAN in the cert we are using
    			Hostname: "server.default.svc",
    		},
    		Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    		}
    	}
    	return nil
    }
    
    // EnsureRBACFunc defines a function type that can be passed to EnsureAdminClusterRoleBinding().
    type EnsureRBACFunc func(context.Context, clientset.Interface, clientset.Interface, time.Duration, time.Duration) (clientset.Interface, error)
    
    // EnsureAdminClusterRoleBinding constructs a client from admin.conf and optionally
    // constructs a client from super-admin.conf if the file exists. It then proceeds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. tests/integration/security/egress_sidecar_tls_origination_test.go

    				CaCert:      file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			}, true, apps.Ns1.Namespace.Name())
    
    			// Create a kubernetes secret with an invalid ClientCert
    			ingressutil.CreateIngressKubeSecretInNamespace(t, fakeCredName, ingressutil.Mtls, ingressutil.IngressCredential{
    				Certificate: file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/fake-cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options_test.go

    				EnableContentionProfiling: true,
    			},
    			Authentication: &kubeoptions.BuiltInAuthenticationOptions{
    				Anonymous: &kubeoptions.AnonymousAuthenticationOptions{
    					Allow: false,
    				},
    				ClientCert: &apiserveroptions.ClientCertAuthenticationOptions{
    					ClientCA: "/client-ca",
    				},
    				WebHook: &kubeoptions.WebHookAuthenticationOptions{
    					CacheTTL:     180000000000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/helper_test.go

    					Name:        "tcp-conflict",
    					Protocol:    protocol.TCP,
    					ServicePort: 9091,
    				},
    			},
    			TLSSettings: &common.TLSSettings{
    				// Echo has these test certs baked into the docker image
    				ClientCert: mustReadCert(t, "cert.crt"),
    				Key:        mustReadCert(t, "cert.key"),
    			},
    		}).BuildOrFail(t)
    
    	if err := t.ConfigIstio().YAML(serviceNamespace.Name(), ServiceEntry).Apply(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication_test.go

    			}
    		})
    	}
    }
    
    func TestToAuthenticationConfig(t *testing.T) {
    	testOptions := &BuiltInAuthenticationOptions{
    		Anonymous: &AnonymousAuthenticationOptions{
    			Allow: false,
    		},
    		ClientCert: &apiserveroptions.ClientCertAuthenticationOptions{
    			ClientCA: "testdata/root.pem",
    		},
    		WebHook: &WebHookAuthenticationOptions{
    			CacheTTL:   180000000000,
    			ConfigFile: "/token-webhook-config",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/config.go

    			if err != nil {
    				return nil, nil, err
    			}
    		}
    	}
    
    	clientCAProvider, err := opts.Authentication.ClientCert.GetClientCAContentProvider()
    	if err != nil {
    		return nil, nil, err
    	}
    	config.ClusterAuthenticationInfo.ClientCA = clientCAProvider
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. cmd/config-current.go

    		userAgent := getUserAgent(getMinioMode())
    		for n, l := range loggerCfg.HTTP {
    			if l.Enabled {
    				l.LogOnceIf = configLogOnceConsoleIf
    				l.UserAgent = userAgent
    				l.Transport = NewHTTPTransportWithClientCerts(l.ClientCert, l.ClientKey)
    			}
    			loggerCfg.HTTP[n] = l
    		}
    		if errs := logger.UpdateHTTPWebhooks(ctx, loggerCfg.HTTP); len(errs) > 0 {
    			configLogIf(ctx, fmt.Errorf("Unable to update logger webhook config: %v", errs))
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  9. tests/integration/security/egress_gateway_origination_test.go

    				CaCert:      file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			}, true)
    
    			// Configured with an invalid ClientCert
    			ingressutil.CreateIngressKubeSecret(t, fakeCredNameA, ingressutil.Mtls, ingressutil.IngressCredential{
    				Certificate: file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/fake-cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. helm/minio/values.yaml

    ## ETCD settings: https://github.com/minio/minio/blob/master/docs/sts/etcd.md
    ## Define endpoints to enable this section.
    etcd:
      endpoints: []
      pathPrefix: ""
      corednsPathPrefix: ""
      clientCert: ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top