Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for Present (0.28 sec)

  1. istioctl/pkg/describe/describe.go

    			return nil
    		},
    	}
    
    	describeCmd.AddCommand(podDescribeCmd(ctx))
    	describeCmd.AddCommand(svcDescribeCmd(ctx))
    	return describeCmd
    }
    
    // Append ".svc.cluster.local" if it isn't already present
    func extendFQDN(host string) string {
    	if host[0] == '*' {
    		return host
    	}
    	if strings.HasSuffix(host, k8sSuffix) {
    		return host
    	}
    	return host + k8sSuffix
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    			// e.g. 1,2, 3 in service and 3,4 in sidecar ingress,
    			// this will still generate listeners for 1,2,3,4 where 3 is picked from sidecar ingress
    			// port present in sidecarIngress listener so let sidecar take precedence
    			continue
    		}
    		localCluster := cb.buildInboundCluster(epPort, bind, proxy, instances[0], instances)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pkg/dns/client/dns.go

    			// if host is productpage, and search namespace is ns1.svc.cluster.local
    			// then the expanded host productpage.ns1.svc.cluster.local is a valid hostname
    			// that is likely to be already present in the altHosts
    			if _, exists := altHosts[expandedHost]; !exists {
    				table.cname[expandedHost] = cname(expandedHost, h)
    				table.allHosts.Insert(expandedHost)
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    in that cluster. Currently, the minimum we require is the security provider (node agent or citadel). ### Install Istio CRDs This is the first step of the installation. Please do not remove or edit any CRD - config currently requires all CRDs to be present. On each upgrade it is recommended to reapply the file, to make sure you get all CRDs. CRDs are separated by release and by component type in the CRD directory. Istio has strong integration with certmanager. Some operators may want to keep their current...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    	connectedMutex            sync.RWMutex
    
    	// Wasm cache and ecds channel are used to replace wasm remote load with local file.
    	wasmCache wasm.Cache
    
    	// ecds version and nonce uses atomic only to prevent race in testing.
    	// In reality there should not be race as istiod will only have one
    	// in flight update for each type of resource.
    	// TODO(bianpengyuan): this relies on the fact that istiod versions all ECDS resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/istio_ca.go

    		} else {
    			if iss == "" {
    				iss = tok.Iss
    			}
    			if len(tok.Aud) > 0 && len(aud) == 0 {
    				aud = tok.Aud[0]
    			}
    		}
    	}
    
    	// TODO: if not set, parse Istiod's own token (if present) and get the issuer. The same issuer is used
    	// for all tokens - no need to configure twice. The token may also include cluster info to auto-configure
    	// networking properties.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/aggregate/controller.go

    }
    
    // GetRegistries returns a copy of all registries
    func (c *Controller) GetRegistries() []serviceregistry.Instance {
    	c.storeLock.RLock()
    	defer c.storeLock.RUnlock()
    
    	// copy registries to prevent race, no need to deep copy here.
    	out := make([]serviceregistry.Instance, len(c.registries))
    	for i := range c.registries {
    		out[i] = c.registries[i]
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    	} else {
    		// Populate each field in case we did not care about it. This avoids confusing errors when we have fields
    		// we don't care about in the test that are present in the result.
    		want.ListenerMatched = r.ListenerMatched
    	}
    	if want.FilterChainMatched != "" && want.FilterChainMatched != r.FilterChainMatched {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. cni/pkg/ipset/nldeps_linux.go

    // starting from the revision 3 and you have installed revision 1 only.
    // Your kernel is behind your ipset utility.
    //
    // This happens with kernels as recent as Fedora38, e.g: 6.4.11-200.fc38.aarch64
    func (m *realDeps) clearEntriesWithComment(name, comment string) error {
    	res, err := netlink.IpsetList(name)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    type serviceAccountKey struct {
    	hostname  host.Name
    	namespace string
    }
    
    // PushContext tracks the status of a push - metrics and errors.
    // Metrics are reset after a push - at the beginning all
    // values are zero, and when push completes the status is reset.
    // The struct is exposed in a debug endpoint - fields public to allow
    // easy serialization as json.
    type PushContext struct {
    	proxyStatusMutex sync.RWMutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top