Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 183 for Present (0.1 sec)

  1. istioctl/pkg/workload/workload.go

    	if err != nil {
    		return nil, fmt.Errorf("configmap %s was not found in namespace %s: %v", istioCM, istioNamespace, err)
    	}
    	// fill some fields before applying the yaml to prevent errors later
    	meshConfig := &meshconfig.MeshConfig{
    		DefaultConfig: &meshconfig.ProxyConfig{
    			ProxyMetadata: map[string]string{},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/README.md

    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    				if _, f := p.handlers[model.ProxyConfigType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    						TypeUrl: model.ProxyConfigType,
    					})
    				}
    				// set flag before sending the initial request to prevent race.
    				initialRequestsSent.Store(true)
    				// Fire of a configured initial request, if there is one
    				p.connectedMutex.RLock()
    				initialRequest := p.initialDeltaHealthRequest
    				if initialRequest != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pilot/pkg/trustbundle/trustbundle.go

    	}
    
    	// Check if anything needs to be changed at all
    	if slices.Equal(anchorConfig.Certs, cachedConfig.Certs) {
    		trustBundleLog.Debugf("no change to trustAnchor configuration after recent update")
    		return nil
    	}
    
    	for _, cert := range anchorConfig.Certs {
    		err = verifyTrustAnchor(cert)
    		if err != nil {
    			return err
    		}
    	}
    	tb.mutex.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. manifests/charts/gateway/README.md

    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/leaderelection_test.go

    		}
    		return nil
    	}, retry.Timeout(time.Second))
    }
    
    func TestLeaderElectionDisabled(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{}
    	// Prevent LeaderElection from creating a lease, so that the runFn only runs
    	// if leader election is disabled.
    	client.Fake.PrependReactor("*", "*", func(action k8stesting.Action) (bool, runtime.Object, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    		//   also reserve anything with suffix "/none" to prevent use of "namespace/none" as a work around
    		// ~ is used in other portions of the API, reserve it with special meaning although it's unlikely to be documented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	ReinvocationPolicy string `protobuf:"bytes,3,opt,name=reinvocationPolicy,proto3" json:"reinvocationPolicy,omitempty"`
    	// Instructs Istio to not inject the sidecar on those pods, based on labels that are present in those pods.
    	//
    	// Annotations in the pods have higher precedence than the label selectors.
    	// Order of evaluation: Pod Annotations → NeverInjectSelector → AlwaysInjectSelector → Default Policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_test.go

    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition("")
    
    	// simulate envoy send xds requests
    	sendDownstreamWithNode(t, downstream, node)
    
    	// after lds sent, the caching healthcheck will be resent
    	expectCondition(status.StatusTrue)
    
    	// Flip status back and forth, ensure we update
    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition(status.StatusTrue)
    	proxy.sendHealthCheckRequest(unhealthy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client.go

    	// kinds keeps track of all cache handlers for known types
    	kinds   map[config.GroupVersionKind]kclient.Untyped
    	kindsMu sync.RWMutex
    	queue   queue.Instance
    	// a flag indicates whether this client has been run, it is to prevent run queue twice
    	started *atomic.Bool
    
    	// handlers defines a list of event handlers per-type
    	handlers map[config.GroupVersionKind][]model.EventHandler
    
    	schemasByCRDName map[string]resource.Schema
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top