Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AsObject (0.29 sec)

  1. pilot/pkg/bootstrap/certcontroller.go

    			// This can rarely happen, just in case.
    			return fmt.Errorf("x509 cert - ParseCertificates() error: %v", err)
    		}
    		for _, c := range x509Cert {
    			log.Infof("x509 cert - Issuer: %q, Subject: %q, SN: %x, NotBefore: %q, NotAfter: %q",
    				c.Issuer, c.Subject, c.SerialNumber,
    				c.NotBefore.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339))
    		}
    	}
    
    	log.Info("Istiod certificates are reloaded")
    	s.certMu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. CREDITS

    Contributor.
    
    2. GRANT OF RIGHTS
    
      a) Subject to the terms of this Agreement, each Contributor hereby
      grants Recipient a non-exclusive, worldwide, royalty-free copyright
      license to reproduce, prepare Derivative Works of, publicly display,
      publicly perform, Distribute and sublicense the Contribution of such
      Contributor, if any, and such Derivative Works.
    
      b) Subject to the terms of this Agreement, each Contributor hereby
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    			},
    		},
    		// Append and forward client cert to backend, if configured
    		ForwardClientCertDetails: ph.ForwardedClientCert,
    		SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    			Subject: proto.BoolTrue,
    			Uri:     true,
    			Dns:     true,
    		},
    		ServerName:                 ph.ServerName,
    		ServerHeaderTransformation: ph.ServerHeaderTransformation,
    		GenerateRequestId:          ph.GenerateRequestID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. cmd/iam.go

    // itself cannot login, but the policy associated with them determines the base
    // policy for the STS credential. The policy mapping can be updated by the
    // administrator.
    //
    // - from `Subject.CommonName` field from the STS request for
    // AssumeRoleWithCertificate. In this case, the policy for the STS credential
    // has the same name as the value of this field.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    			// Append and forward client cert to backend, if configured
    			ForwardClientCertDetails: ph.ForwardedClientCert,
    			SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    				Subject: proto.BoolTrue,
    				Uri:     true,
    				Dns:     true,
    			},
    			ServerName:                 ph.ServerName,
    			ServerHeaderTransformation: ph.ServerHeaderTransformation,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    		knownSans = append(knownSans,
    			fmt.Sprintf("%s.%s.svc", altName, args.Namespace))
    	}
    	sans.InsertAll(knownSans...)
    	dnsNames := sets.SortedList(sans)
    	log.Infof("Discover server subject alt names: %v", dnsNames)
    	return dnsNames
    }
    
    // createPeerCertVerifier creates a SPIFFE certificate verifier with the current istiod configuration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    								}
    								assert.Equal(t, "APPEND_FORWARD", hcm.GetForwardClientCertDetails().String(), "forward client cert details")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetSubject().GetValue(), "subject")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetDns(), "dns")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetUri(), "uri")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top