Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TrustDomain (0.05 sec)

  1. istioctl/pkg/writer/compare/sds/util.go

    func (s *secretItemBuilder) State(state string) SecretItemBuilder {
    	s.state = state
    	return s
    }
    
    // TrustDomain sets the trust domain of the secret on the agent or sidecar
    func (s *secretItemBuilder) TrustDomain(trustDomain string) SecretItemBuilder {
    	s.trustDomain = trustDomain
    	return s
    }
    
    // Build takes the set fields from the builder and constructs the actual SecretItem
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Oct 28 19:52:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/sds/writer.go

    	if len(secrets) == 0 {
    		fmt.Fprintln(w.w, "No secret items to show.")
    		return nil
    	}
    	var hasUnknownTrustDomain bool
    	for _, secret := range secrets {
    		if secret.SecretMeta.TrustDomain == "" {
    			hasUnknownTrustDomain = true
    			break
    		}
    	}
    	if !hasUnknownTrustDomain {
    		secretItemColumns = append(secretItemColumns, "TRUST DOMAIN")
    	}
    	tw := new(tabwriter.Writer).Init(w.w, 0, 5, 5, ' ', 0)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Oct 28 19:52:53 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top