Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for istiodRemote (0.16 sec)

  1. operator/pkg/name/name.go

    	PilotComponentName     ComponentName = "Pilot"
    
    	CNIComponentName     ComponentName = "Cni"
    	ZtunnelComponentName ComponentName = "Ztunnel"
    
    	// istiod remote component
    	IstiodRemoteComponentName ComponentName = "IstiodRemote"
    
    	// Gateway components
    	IngressComponentName ComponentName = "IngressGateways"
    	EgressComponentName  ComponentName = "EgressGateways"
    
    	// Operator components
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/generate.go

    	}
    
    	values := fmt.Sprintf(`
    revision: %q
    revisionTags:
      - %s
    
    sidecarInjectorWebhook:
      enableNamespacesByDefault: %t
      objectSelector:
        enabled: true
        autoInject: true
    
    istiodRemote:
      injectionURL: %s
    `, config.Revision, config.Tag, opts.AutoInjectNamespaces, config.URL)
    
    	tagWebhookYaml, err := r.RenderManifestFiltered(values, func(tmplName string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        #
        # templates:
        #   hello: |
        #     metadata:
        #       labels:
        #         hello: world
        #
        # defaultTemplates: ["sidecar", "hello"]
        defaultTemplates: []
      istiodRemote:
        # Sidecar injector mutating webhook configuration clientConfig.url value.
        # For example: https://$remotePilotAddress:15017/inject
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        #
        # templates:
        #   hello: |
        #     metadata:
        #       labels:
        #         hello: world
        #
        # defaultTemplates: ["sidecar", "hello"]
        defaultTemplates: []
      istiodRemote:
        # Sidecar injector mutating webhook configuration clientConfig.url value.
        # For example: https://$remotePilotAddress:15017/inject
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    disabled. --- # AddonComponents prometheus component is disabled. --- # AddonComponents istio-tracing component is disabled. # Base component is disabled. # Cni component is disabled. # EgressGateways istio-egressgateway component is disabled. # IstiodRemote component is disabled. # Resources for Pilot component apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutosca metadata: name: istiod-1-6-11 namespace: istio-system labels: app: istiod release: istio istio.io/rev: 1-6-11 spec: maxReplicas: 5...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/kube.go

    			return err
    		}
    		args.AppendSet("values.global.remotePilotAddress", remoteIstiodAddress.Addr().String())
    	}
    
    	if i.externalControlPlane || i.cfg.IstiodlessRemotes {
    		args.AppendSet("values.istiodRemote.injectionPath",
    			fmt.Sprintf("/inject/net/%s/cluster/%s", c.NetworkName(), c.Name()))
    	}
    
    	if err := i.installer.Install(c, args); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Value meshConfig = 36;
    
      // Configuration for the base component.
      BaseConfig base = 37;
    
      // Configuration for istiod-remote.
      IstiodRemoteConfig istiodRemote = 38;
    
      // Specifies the aliases for the Istio control plane revision. A MutatingWebhookConfiguration
      // is created for each alias.
      repeated string revisionTags = 39;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    istio-discovery/templates/mutatingwebhook.yaml # Removed paths for legacy and default selectors since a revision tag # is inherently created from a specific revision {{- $whv := dict "revision" .Values.revision "injectionPath" .Values.istiodRemote.injectionPath "injectionURL" .Values.istiodRemote.injectionURL "reinvocationPolicy" .Values.sidecarInjectorWebho.reinvocationPolicy "namespace" .Release.Namespace }} {{- define "core" }} {{- /* Kubernetes unfortunately requires a unique name for the webhook in some newer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Configuration for the base component.
    	Base *BaseConfig `protobuf:"bytes,37,opt,name=base,proto3" json:"base,omitempty"`
    	// Configuration for istiod-remote.
    	IstiodRemote *IstiodRemoteConfig `protobuf:"bytes,38,opt,name=istiodRemote,proto3" json:"istiodRemote,omitempty"`
    	// Specifies the aliases for the Istio control plane revision. A MutatingWebhookConfiguration
    	// is created for each alias.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate_test.go

    	assert.NoError(t, err)
    }
    
    func TestManifestGenerateIstiodRemote(t *testing.T) {
    	g := NewWithT(t)
    
    	objss, err := runManifestCommands("istiod_remote", "", liveCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, objs := range objss {
    		// check core CRDs exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top