Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for It (0.03 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	// Add a new pod to the service, we should see it
    	s.addWorkloadEntries(t, "127.0.0.4", "name4", "sa4", map[string]string{"app": "a"})
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_HEALTHY, "name1", "name2", "name3", "name4")
    	s.assertWorkloads(t, s.addrXdsName("10.0.0.1"), workloadapi.WorkloadStatus_HEALTHY, "name1", "name2", "name4")
    	s.assertEvent(t, s.wleXdsName("name4"))
    
    	// Delete it, should remove from the Service as well
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. tools/docker-builder/main.go

    }
    
    func StandardEnv(args Args) []string {
    	env := os.Environ()
    	if len(sets.New(args.Targets...).Delete("proxyv2")) <= 1 {
    		// If we are building multiple, it is faster to build all binaries in a single invocation
    		// Otherwise, build just the single item. proxyv2 is special since it is always built separately with tag=agent.
    		// Ideally we would just always build the targets we need but our Makefile is not that smart
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook.go

    			string(req.Object.Raw)))
    		return toAdmissionResponse(err)
    	}
    	// Managed fields is sometimes extremely large, leading to excessive CPU time on patch generation
    	// It does not impact the injection output at all, so we can just remove it.
    	pod.ManagedFields = nil
    
    	// Deal with potential empty fields, e.g., when the pod is created by a deployment
    	podName := potentialPodName(pod.ObjectMeta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    	}
    	if s.CA == nil {
    		return false
    	}
    
    	// For Kubernetes CA, we don't distribute it; it is mounted in all pods by Kubernetes.
    	// This is never called - isK8SSigning is true.
    	if features.PilotCertProvider == constants.CertProviderKubernetes {
    		return false
    	}
    	// For no CA we don't distribute it either, as there is no cert
    	if features.PilotCertProvider == constants.CertProviderNone {
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry.go

    			// Insert the default provider. It has no overrides; presence of the key is sufficient to
    			// get the filter created.
    			providers[dp] = map[tpb.WorkloadMode]map[string]metricOverride{}
    		}
    	}
    
    	providerNames := mesh.GetDefaultProviders().GetMetrics()
    	for _, m := range metrics {
    		names := getProviderNames(m.Providers)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    		return nil, err
    	}
    
    	return istio.UnmarshalAndValidateIOPS(mergedYAMLSpec)
    }
    
    // Add creates a new IstioOperator Controller and adds it to the Manager. The Manager will set fields on the Controller
    // and Start it when the Manager is Started. It also provides additional options to modify internal reconciler behavior.
    func Add(mgr manager.Manager, options *Options) error {
    	restConfig = mgr.GetConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    						}
    
    						// We have TLS settings defined and we have already taken care of unique route names
    						// if it is HTTPS. So we can construct a QUIC server on the same port. It is okay as
    						// QUIC listens on UDP port, not TCP
    						if features.EnableQUICListeners && gateway.IsEligibleForHTTP3Upgrade(s) &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.autoscaling.v2beta2;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/calloptions.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // HTTP settings
    type HTTP struct {
    	// If true, h2c will be used in HTTP requests
    	HTTP2 bool
    
    	// If true, HTTP/3 request over QUIC will be used.
    	// It is mandatory to specify TLS settings
    	HTTP3 bool
    
    	// Path specifies the URL path for the HTTP(s) request.
    	Path string
    
    	// Method to send. Defaults to GET.
    	Method string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    // and if it is, updates the controller's gateways.
    func (c *Controller) extractGatewaysFromService(svc *model.Service) bool {
    	changed := c.extractGatewaysInner(svc)
    	if changed {
    		c.NotifyGatewayHandlers()
    	}
    	return changed
    }
    
    // reloadNetworkGateways performs extractGatewaysFromService for all services registered with the controller.
    // It is called only by `onNetworkChange`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top