Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. architecture/environments/operator.md

    process](images/operator_render_flow.svg) The example in the figure shows the rendering being triggered by a CLI `mesh`
    command with a `IstioOperatorSpec` CR passed to it from a file; however, the same rendering steps would occur when an
    in-cluster CR is updated and the controller acts upon it to generate a new manifest to apply to the cluster. Note that
    both the charts and configuration profiles can come from three different sources: compiled-in, local filesystem.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload_test.go

    		})
    		ads.ExpectEmptyResponse()
    
    		// Create pod we are not subscribe to; should be a NOP
    		createPod(s, "pod", "sa", "127.0.0.1", "not-node")
    		ads.ExpectNoResponse()
    
    		// Now subscribe to it, should get it back
    		resp := ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{
    			ResourceNamesSubscribe: []string{"/127.0.0.1"},
    		})
    		expect(resp, "Kubernetes//Pod/default/pod")
    
    		// Subscribe to unknown pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K 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/networking/core/httproute.go

    	}
    	if class == istionetworking.ListenerClassSidecarOutbound {
    		// Likely due to a mistake, outbound uses "envoy" while inbound uses "istio-envoy". Bummer.
    		// We keep it for backwards compatibility.
    		base.ServerName = "" // Envoy default is "envoy" so no need to set it explicitly.
    	}
    	ph := pc.GetProxyHeaders()
    	if ph == nil {
    		return base
    	}
    	if ph.AttemptCount.GetDisabled().GetValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client_test.go

    				if cfg == nil || !reflect.DeepEqual(cfg.Meta, configMeta) {
    					return fmt.Errorf("get(%v) => got unexpected object %v", name, cfg)
    				}
    				return nil
    			}, timeout)
    
    			// Validate it shows up in List
    			retry.UntilSuccessOrFail(t, func() error {
    				cfgs := store.List(r.GroupVersionKind(), configMeta.Namespace)
    				if len(cfgs) != 1 {
    					return fmt.Errorf("expected 1 config, got %v", len(cfgs))
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/deployment/builder.go

    	errs error
    }
    
    func (b *builder) WithConfig(cfg echo.Config) Builder {
    	return b.With(nil, cfg)
    }
    
    // With adds a new Echo configuration to the Builder. When a cluster is provided in the Config, it will only be applied
    // to that cluster, otherwise the Config is applied to all WithClusters. Once built, if being built for a single cluster,
    // the instance pointer will be updated to point at the new Instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/convert.go

    		if tlsContext == nil {
    			return "", nil
    		}
    		if !isH2 {
    			tlsContext.CommonTlsContext.AlpnProtocols = nil
    		}
    		// This double conversion is to encode the typed config and get it out as struct
    		// so that convertToJSON properly encodes the structure. Since this is just for
    		// bootstrap generation this is better than having our custom structs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top