Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetGlobal (0.19 sec)

  1. pkg/kube/inject/inject.go

    	metadata := &params.pod.ObjectMeta
    	cluster := params.valuesConfig.asStruct.GetGlobal().GetMultiCluster().GetClusterName()
    	// TODO allow overriding the values.global network in injection with the system namespace label
    	network := params.valuesConfig.asStruct.GetGlobal().GetNetwork()
    	// params may be set from webhook URL, take priority over values yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	network := d.injectConfig().Values.Struct().GetGlobal().GetNetwork()
    	if _, ok := gw.GetLabels()[label.TopologyNetwork.Name]; !ok && network != "" && isWaypointGateway {
    		input.InfrastructureLabels[label.TopologyNetwork.Name] = d.injectConfig().Values.Struct().GetGlobal().GetNetwork()
    	}
    }
    
    func extractInfrastructureLabels(gw gateway.Gateway) map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook.go

    		if merr != nil {
    			return merr
    		}
    	}
    
    	// nolint: staticcheck
    	holdPod := mc.GetDefaultConfig().GetHoldApplicationUntilProxyStarts().GetValue() ||
    		req.valuesConfig.asStruct.GetGlobal().GetProxy().GetHoldApplicationUntilProxyStarts().GetValue()
    
    	proxyLocation := MoveLast
    	// If HoldApplicationUntilProxyStarts is set, reorder the proxy location
    	if holdPod {
    		proxyLocation = MoveFirst
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	if x != nil {
    		return x.Cni
    	}
    	return nil
    }
    
    func (x *Values) GetGateways() *GatewaysConfig {
    	if x != nil {
    		return x.Gateways
    	}
    	return nil
    }
    
    func (x *Values) GetGlobal() *GlobalConfig {
    	if x != nil {
    		return x.Global
    	}
    	return nil
    }
    
    func (x *Values) GetPilot() *PilotConfig {
    	if x != nil {
    		return x.Pilot
    	}
    	return nil
    }
    
    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