Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 428 for It (0.04 sec)

  1. samples/custom-bootstrap/README.md

    kubectl apply -f example-app.yaml
    ```
    
    If you don't have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection)
    set in your cluster you will need to manually inject it to the services instead:
    
    ```bash
    istioctl kube-inject -f example-app.yaml -o example-app-istio.yaml
    kubectl apply -f example-app-istio.yaml
    ```
    
    ## Checking the Bootstrap Configuration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/validation/validation.go

    		warning, err := ValidateAlphaWorkloadSelector(rule.WorkloadSelector)
    		if err != nil {
    			return nil, err
    		}
    
    		// If workloadSelector is defined and labels are not set, it is most likely
    		// an user error. Marking it as a warning to keep it backwards compatible.
    		if warning != nil {
    			errs = AppendValidation(errs, WrapWarning(fmt.Errorf("sidecar: %s, will be applied to all services in namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. 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)
  5. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
          # repairPods will dynamically repair any broken pod by setting up the pod networking configuration even after it has started.
          # Note the pod will be crashlooping, so this may take a few minutes to become fully functional based on when the retry occurs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. manifests/charts/istio-operator/Chart.yaml

    apiVersion: v2
    name: istio-operator
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio operator
    keywords:
      - istio
      - operator
    sources:
      - https://github.com/istio/istio/tree/master/operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 404 bytes
    - Viewed (0)
  7. 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)
  8. tests/integration/telemetry/api/istioctl_metrics_test.go

    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestIstioctlMetrics contains a basic validation of the experimental
    // metrics command. It validates that values are being returned when there is
    // traffic and that the expected default output format is matched.
    func TestIstioctlMetrics(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top