- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for trust_domain (0.06 sec)
-
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) -
istioctl/pkg/workload/workload.go
} md["CANONICAL_SERVICE"], md["CANONICAL_REVISION"] = labels.CanonicalService(lbls, wg.Name) md["POD_NAMESPACE"] = wg.Namespace md["SERVICE_ACCOUNT"] = we.ServiceAccount md["TRUST_DOMAIN"] = meshConfig.TrustDomain md["ISTIO_META_CLUSTER_ID"] = clusterID md["ISTIO_META_MESH_ID"] = meshConfig.DefaultConfig.MeshId md["ISTIO_META_NETWORK"] = we.Network
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0) -
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) -
istioctl/pkg/writer/envoy/configdump/testdata/secret/spire/config_dump.json
"name": "envoy.tls.cert_validator.spiffe", "typed_config": { "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.SPIFFECertValidatorConfig", "trust_domains": [ { "name": "east.local", "trust_bundle": {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:52:53 UTC 2024 - 9.3K bytes - Viewed (0) -
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)