Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewCoreComponent (0.26 sec)

  1. operator/pkg/component/component.go

    	return runComponent(c.CommonComponentFields)
    }
    
    func (c *IstioComponentBase) RenderManifest() (string, error) {
    	return renderManifest(c)
    }
    
    // NewCoreComponent creates a new IstioComponent with the given componentName and options.
    func NewCoreComponent(cn name.ComponentName, opts *Options) IstioComponent {
    	var component IstioComponent
    	switch cn {
    	case name.IstioBaseComponentName:
    		component = NewCRDComponent(opts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. operator/pkg/controlplane/control_plane.go

    		o := *opts
    		ns, err := name.Namespace(c, installSpec)
    		if err != nil {
    			return nil, err
    		}
    		o.Namespace = ns
    		out.components = append(out.components, component.NewCoreComponent(c, &o))
    	}
    
    	if installSpec.Components != nil {
    		for idx, c := range installSpec.Components.IngressGateways {
    			o := *opts
    			o.Namespace = defaultIfEmpty(c.Namespace, iop.Namespace(installSpec))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top