Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for usedBy (0.28 sec)

  1. pkg/config/constants/constants.go

    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    	// AmbientUseWaypointLabelLabel is the label used to specify which waypoint should be used for a given pod, service, etc...
    	AmbientUseWaypointLabel = "istio.io/use-waypoint"
    	// AmbientWaypointForTrafficTypeLabel is the label used to specify which traffic is allowed through the Waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/security/security.go

    	FileRootSystemCACert = "file-root:system"
    )
    
    // TODO: For 1.8, make sure MeshConfig is updated with those settings,
    // they should be dynamic to allow migrations without restart.
    // Both are critical.
    var (
    	// Require3PToken disables the use of K8S 1P tokens. Note that 1P tokens can be used to request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    // - if user-provided root CA is not found, the Secret "istio-ca-secret" is used, with ca-cert.pem and ca-key.pem files.
    // - if neither is found, istio-ca-secret will be created.
    //
    // - a config map "istio-security" with a "caTLSRootCert" file will be used for root cert, and created if needed.
    //   The config map was used by node agent - no longer possible to use in sds-agent, but we still save it for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    	// BlackHole is the name of the virtual host and route name used to block all traffic
    	BlackHole = "block_all"
    	// PassthroughCluster to forward traffic to the original destination requested. This cluster is used when
    	// traffic does not match any listener in envoy.
    	PassthroughCluster = "PassthroughCluster"
    	// Passthrough is the name of the virtual host used to forward traffic to the
    	// PassthroughCluster
    	Passthrough = "allow_any"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    	PilotCertProvider = env.Register("PILOT_CERT_PROVIDER", constants.CertProviderIstiod,
    		"The provider of Pilot DNS certificate. K8S RA will be used for k8s.io/NAME. 'istiod' value will sign"+
    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    | `minio_node_mem_used`          | Used memory on the node.                  |
    | `minio_node_mem_used_avg`      | Used memory on the node (avg).            |
    | `minio_node_mem_used_max`      | Used memory on the node (max).            |
    | `minio_node_mem_used_perc`     | Used memory percentage on the node.       |
    | `minio_node_mem_used_perc_avg` | Used memory percentage on the node (avg). |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server.go

    	// The roots are used by the namespace controller to update Istiod roots and patch webhooks.
    	// The certs are used to refresh Istiod credentials.
    	istiodCertBundleWatcher *keycertbundle.Watcher
    	server                  server.Instance
    
    	readinessProbes map[string]readinessProbe
    	readinessFlags  *readinessFlags
    
    	// duration used for graceful shutdown.
    	shutdownDuration time.Duration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    	// HTTP3AdvertisingRoutes represents the set of HTTP routes which advertise HTTP/3.
    	// This mapping is used to generate alt-svc header that is needed for HTTP/3 server discovery.
    	HTTP3AdvertisingRoutes sets.String
    
    	// GatewayNameForServer maps from server to the owning gateway name.
    	// Used for select the set of virtual services that apply to a port.
    	GatewayNameForServer map[*networking.Server]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // passthroughHttpProtocolOptions are http protocol options used for pass through clusters.
    // nolint
    // revive:disable-next-line
    var passthroughHttpProtocolOptions = protoconv.MessageToAny(&http.HttpProtocolOptions{
    	CommonHttpProtocolOptions: &core.HttpProtocolOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/certcontroller.go

    	return nil
    }
    
    // watchRootCertAndgenKeyCert will watch for the root certs, and regenerate Istiod DNS TLS certificates if the root
    // has changed. This is not used if TLS certificates are loaded from ./var/run/secrets/istiod/tls.
    // TODO(hzxuzonghu): support async notification instead of polling the CA root cert.
    func (s *Server) watchRootCertAndGenKeyCert(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top