Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,041 for certv1 (0.1 sec)

  1. pilot/cmd/pilot-agent/status/test-cert/cert.crt

    Zhonghu Xu <******@****.***> 1554199606 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 10:06:46 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. pkg/test/echo/common/model.go

    	// If not empty, RootCert supplies the extra root cert that will be appended to the system cert pool.
    	RootCert   string
    	ClientCert string
    	Key        string
    	// If provided, override the host name used for the connection
    	// This needed for integration tests, as we are connecting using a port-forward (127.0.0.1), so
    	// any DNS certs will not validate.
    	Hostname string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. security/pkg/k8s/chiron/utils_test.go

    				}
    			}
    		}
    	}()
    	return client
    }
    
    func approved(csr *cert.CertificateSigningRequest) bool {
    	return GetCondition(csr.Status.Conditions, cert.CertificateApproved).Status == corev1.ConditionTrue
    }
    
    func GetCondition(conditions []cert.CertificateSigningRequestCondition, condition cert.RequestConditionType) cert.CertificateSigningRequestCondition {
    	for _, cond := range conditions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. tests/integration/security/util/framework.go

    			},
    		},
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		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",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/sidecarinjector.go

    	}
    	// Patch cert if a webhook config name is provided.
    	// This requires RBAC permissions - a low-priv Istiod should not attempt to patch but rely on
    	// operator or CI/CD
    	if features.InjectionWebhookConfigName != "" {
    		s.addStartFunc("injection patcher", func(stop <-chan struct{}) error {
    			// No leader election - different istiod revisions will patch their own cert.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    func ResourceNames(resources corev1.ResourceList) []corev1.ResourceName {
    	result := []corev1.ResourceName{}
    	for resourceName := range resources {
    		result = append(result, resourceName)
    	}
    	return result
    }
    
    // Contains returns true if the specified item is in the list of items
    func Contains(items []corev1.ResourceName, item corev1.ResourceName) bool {
    	for _, i := range items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe_test.go

    							{
    								Name:       "http",
    								Port:       80,
    								TargetPort: intstr.FromInt32(80),
    								Protocol:   corev1.ProtocolTCP,
    							},
    						},
    					},
    					Status: corev1.ServiceStatus{
    						LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{
    							{
    								IP: "2.2.2.2",
    							},
    						}},
    					},
    				},
    				&corev1.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion_test.go

    		{8888, "https-test", nil, corev1.ProtocolTCP, protocol.HTTPS},
    		{8888, "http2", nil, corev1.ProtocolTCP, protocol.HTTP2},
    		{8888, "http2-test", nil, corev1.ProtocolTCP, protocol.HTTP2},
    		{8888, "grpc", nil, corev1.ProtocolTCP, protocol.GRPC},
    		{8888, "grpc-test", nil, corev1.ProtocolTCP, protocol.GRPC},
    		{8888, "grpc-web", nil, corev1.ProtocolTCP, protocol.GRPCWeb},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/serving_with_loopback.go

    	if err != nil {
    		return fmt.Errorf("failed to generate self-signed certificate for loopback connection: %v", err)
    	}
    
    	// Write to the front of SNICerts so that this overrides any other certs with the same name
    	(*secureServingInfo).SNICerts = append([]dynamiccertificates.SNICertKeyContentProvider{certProvider}, (*secureServingInfo).SNICerts...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:50:06 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    }
    
    func deleteConfigMap(t *testing.T, client kubernetes.Interface, ns string) {
    	t.Helper()
    	_, err := client.CoreV1().ConfigMaps(ns).Get(context.TODO(), CACertNamespaceConfigMap, metav1.GetOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := client.CoreV1().ConfigMaps(ns).Delete(context.TODO(), CACertNamespaceConfigMap, metav1.DeleteOptions{}); err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top