Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for cpsr (1.49 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    	}{
    		{
    			name:     "Creation of a CSR request for renewal of a PKI certificate",
    			certName: "apiserver",
    			createCertFunc: func() *x509.Certificate {
    				return writeTestCertificate(t, dir, "apiserver", testCACert, testCAKey, testCertOrganization, time.Time{}, time.Time{})
    			},
    		},
    		{
    			name:     "Creation of a CSR request for renewal of a certificate embedded in a kubeconfig file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tests/fuzz/security_fuzzer.go

    	server, err := ca.New(mockCa, 1, []security.Authenticator{auth}, nil)
    	if err != nil {
    		return 0
    	}
    	csrString, err := f.GetString()
    	if err != nil {
    		return 0
    	}
    	request := &pb.IstioCertificateRequest{Csr: csrString}
    	ctx := context.Background()
    
    	certChain, err := fuzzedCertChain(f)
    	if err != nil {
    		return 0
    	}
    	tlsInfo := credentials.TLSInfo{
    		State: tls.ConnectionState{VerifiedChains: certChain},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. architecture/security/istio-agent.md

    at two levels. For distributing workload certificates, Envoy will send [SDS](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret)
    requests to the agent, causing the agent to submit a CSR to the configured CA (generally Istiod). For other configuration,
    Envoy will send [ADS](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/operations/dynamic_configuration#aggregated-xds-ads)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certlist_test.go

    				kubeadmConfig: validKubeadmConfig,
    				cert:          nil,
    			},
    			wantErr: true,
    		},
    		{
    			name: "key and CSR do not exist",
    			args: args{
    				kubeadmConfig: validKubeadmConfig,
    				cert:          validKubeadmCert,
    			},
    			wantErr: false,
    		},
    		{
    			name: "key or CSR already exist",
    			args: args{
    				kubeadmConfig: validKubeadmConfig,
    				cert:          validKubeadmCert,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	KeyFilePath string
    	// The path for an existing root certificate bundle
    	RootCertFilePath string
    }
    
    // Client interface defines the clients need to implement to talk to CA for CSR.
    // The Agent will create a key pair and a CSR, and use an implementation of this
    // interface to get back a signed certificate. There is no guarantee that the SAN
    // in the request will be returned - server may replace it.
    type Client interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. cluster/common.sh

                        "server auth",
                        "client auth"
                    ]
                }
            }
        }
    }
    EOF
      fi
    
      if [ ! -r "ca-csr.json" ]; then
        cat >ca-csr.json <<EOF
    {
        "CN": "Kubernetes",
        "key": {
            "algo": "ecdsa",
            "size": 256
        },
        "names": [
            {
                "C": "US",
                "L": "CA",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    func ParseCertificateRequest(asn1Data []byte) (*CertificateRequest, error) {
    	var csr certificateRequest
    
    	rest, err := asn1.Unmarshal(asn1Data, &csr)
    	if err != nil {
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    
    	return parseCertificateRequest(&csr)
    }
    
    func parseCertificateRequest(in *certificateRequest) (*CertificateRequest, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/lib/panels.libsonnet

          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('s'),
    
        connections(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('cps'),
    
        dns(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('qps'),
    
        bytes(title, targets, desc=''):
          self.base(title, targets, desc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (1)
  9. manifests/charts/ztunnel/values.yaml

      # Used to locate the XDS and CA, if caAddress or xdsAddress are not set explicitly.
      revision: ""
    
      # The customized CA address to retrieve certificates for the pods in the cluster.
      # CSR clients such as the Istio Agent and ingress gateways can use this to specify the CA endpoint.
      caAddress: ""
    
      # The customized XDS address to retrieve configuration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    					t.Errorf("resp: got %+v, expected %v", resp, tc.expectedCert)
    				}
    			}
    
    			if tc.expectRetry {
    				mt.Assert("num_outgoing_retries", map[string]string{"request_type": monitoring.CSR}, monitortest.AtLeast(1))
    			}
    		})
    	}
    }
    
    type mockTokenCAServer struct {
    	pb.UnimplementedIstioCertificateServiceServer
    	Certs []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top