Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TrustDomain (0.06 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/ztunnel/configdump/api.go

    	CanonicalName         string            `json:"canonicalName"`
    	CanonicalRevision     string            `json:"canonicalRevision"`
    	ClusterID             string            `json:"clusterId"`
    	TrustDomain           string            `json:"trustDomain,omitempty"`
    	Locality              Locality          `json:"locality,omitempty"`
    	Node                  string            `json:"node"`
    	Network               string            `json:"network,omitempty"`
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jul 30 17:26:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. 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