- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for GetValidationContext (0.17 sec)
-
istioctl/pkg/writer/compare/sds/util.go
if err != nil { return []SecretItem{}, err } certChainSecret := secretTyped. GetTlsCertificate(). GetCertificateChain(). GetInlineBytes() caDataSecret := secretTyped. GetValidationContext(). GetTrustedCa(). GetInlineBytes() // seems as though the most straightforward way to tell whether this is a root ca or not
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:52:53 UTC 2024 - 8.5K bytes - Viewed (0) -
istioctl/pkg/util/configdump/secret.go
if err := anySec.UnmarshalTo(&secret); err != nil { return "", fmt.Errorf("failed to unmarshall ROOTCA secret: %v", err) } var returnStr string var returnErr error rCASecret := secret.GetValidationContext() if rCASecret != nil { trustCA := rCASecret.GetTrustedCa() if trustCA != nil { inlineBytes := trustCA.GetInlineBytes() if inlineBytes != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Feb 25 04:09:53 UTC 2023 - 2.2K bytes - Viewed (0)