Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for useLegacySelectors (0.28 sec)

  1. releasenotes/notes/injector-selectors.yaml

        This is expected to be an uncommon case, so for most users there will be no behavioral changes to existing pods.
    
        If this behavior is not desired, it can be temporarily disabled with `--set values.sidecarInjectorWebhook.useLegacySelectors=true`.
        This option will be removed in future releases.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    	res := []v1.MutatingWebhook{}
    	for _, wh := range whs {
    		res = append(res, wh...)
    	}
    	return res
    }
    
    const (
    	// istioctl manifest generate --set values.sidecarInjectorWebhook.useLegacySelectors=true
    	legacyDefaultInjector = `
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: istio-sidecar-injector
    webhooks:
    - name: sidecar-injector.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    "alwaysInjectSelector": [], "defaultTemplates": [], "enableNamespacesByDe": false, "injectedAnnotations": {}, "neverInjectSelector": [], "objectSelector": { "autoInject": true, "enabled": true }, "rewriteAppHTTPProbe": true, "templates": {}, "useLegacySelectors": true } } # To disable injection: use omitSidecarInjectorC, which disables the webhook patching # and istiod webhook functionality. # # New fields should not use Values - it is a 'primary' config object, users should be able # to fine tune...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    "alwaysInjectSelector": [], "defaultTemplates": [], "enableNamespacesByDe": false, "injectedAnnotations": {}, "neverInjectSelector": [], "objectSelector": { "autoInject": true, "enabled": true }, "rewriteAppHTTPProbe": true, "templates": {}, "useLegacySelectors": false } } # To disable injection: use omitSidecarInjectorC, which disables the webhook patching # and istiod webhook functionality. # # New fields should not use Values - it is a 'primary' config object, users should be able # to fine tune...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // requests in Istiod, rather than at the webhook selection level.
      // This is option is intended for migration purposes only and will be removed in Istio 1.10.
      google.protobuf.BoolValue useLegacySelectors = 4 [deprecated = true];
    }
    
    // Configuration for each of the supported tracers.
    message TracerConfig {
      // Configuration for the datadog tracing service.
      TracerDatadogConfig datadog = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	UseLegacySelectors *wrapperspb.BoolValue `protobuf:"bytes,4,opt,name=useLegacySelectors,proto3" json:"useLegacySelectors,omitempty"`
    }
    
    func (x *SidecarInjectorConfig) Reset() {
    	*x = SidecarInjectorConfig{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top