Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for configSources (0.46 sec)

  1. operator/pkg/util/merge_iop.go

    	DefaultConfig                  *proxyConfig                                              `json:"defaultConfig" patchStrategy:"merge"`
    	ConfigSources                  []*v1alpha13.ConfigSource                                 `json:"configSources" patchStrategy:"merge" patchMergeKey:"address"`
    	TrustDomainAliases             []string                                                  `json:"trustDomainAliases" patchStrategy:"merge"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/configcontroller.go

    }
    
    // initConfigSources will process mesh config 'configSources' and initialize
    // associated configs.
    func (s *Server) initConfigSources(args *PilotArgs) (err error) {
    	for _, configSource := range s.environment.Mesh().ConfigSources {
    		srcAddress, err := url.Parse(configSource.Address)
    		if err != nil {
    			return fmt.Errorf("invalid config URL %s %v", configSource.Address, err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/config/mesh/watcher.go

    	current := w.MeshConfig.Load()
    	if !reflect.DeepEqual(meshConfig, current) {
    		log.Infof("mesh configuration updated to: %s", PrettyFormatOfMeshConfig(meshConfig))
    		if !reflect.DeepEqual(meshConfig.ConfigSources, current.ConfigSources) {
    			log.Info("mesh configuration sources have changed")
    			// TODO Need to recreate or reload initConfigController()
    		}
    
    		w.MeshConfig.Store(meshConfig)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    			if err != nil {
    				return fmt.Errorf("failed reading mesh config: %v", err)
    			}
    			if len(meshConfig.ConfigSources) == 0 && args.RegistryOptions.KubeConfig != "" {
    				hasK8SConfigStore = true
    			}
    			for _, cs := range meshConfig.ConfigSources {
    				if cs.Address == string(Kubernetes)+"://" {
    					hasK8SConfigStore = true
    					break
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/security/model/authentication_test.go

    	}{
    		{
    			name:       "ConstructSdsSecretConfig",
    			secretName: "spiffe://cluster.local/ns/bar/sa/foo",
    			expected: &auth.SdsSecretConfig{
    				Name: "spiffe://cluster.local/ns/bar/sa/foo",
    				SdsConfig: &core.ConfigSource{
    					ResourceApiVersion: core.ApiVersion_V3,
    					ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    						ApiConfigSource: &core.ApiConfigSource{
    							ApiType:                   core.ApiConfigSource_GRPC,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodespec.go

    	Unschedulable      *bool                               `json:"unschedulable,omitempty"`
    	Taints             []TaintApplyConfiguration           `json:"taints,omitempty"`
    	ConfigSource       *NodeConfigSourceApplyConfiguration `json:"configSource,omitempty"`
    	DoNotUseExternalID *string                             `json:"externalID,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  7. pkg/registry/core/node/strategy_test.go

    			api.Node{},
    			""},
    		{api.Node{},
    			api.Node{Spec: api.NodeSpec{ConfigSource: &api.NodeConfigSource{}}},
    			"spec.configSource"},
    		{api.Node{Spec: api.NodeSpec{ConfigSource: &api.NodeConfigSource{}}},
    			api.Node{Spec: api.NodeSpec{ConfigSource: &api.NodeConfigSource{}}},
    			"spec.configSource"},
    		{api.Node{Spec: api.NodeSpec{ConfigSource: &api.NodeConfigSource{}}},
    			api.Node{}, ""},
    		{api.Node{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. pkg/registry/core/node/strategy.go

    	// Nodes allow *all* fields, including status, to be set on create.
    	// for create
    	if oldNode == nil {
    		node.Spec.ConfigSource = nil
    		node.Status.Config = nil
    	}
    
    	// for update
    	if !nodeConfigSourceInUse(oldNode) && oldNode != nil {
    		node.Spec.ConfigSource = nil
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    		node.Status.RuntimeHandlers = nil
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. pkg/model/authentication.go

    	SDSRootResourceName = "ROOTCA"
    )
    
    // Preconfigured SDS configs to avoid excessive memory allocations
    var (
    	defaultSDSConfig = &tls.SdsSecretConfig{
    		Name: SDSDefaultResourceName,
    		SdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    				ApiConfigSource: &core.ApiConfigSource{
    					ApiType:                   core.ApiConfigSource_GRPC,
    					SetNodeOnFirstMessageOnly: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/adsc/delta_test.go

    						TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								Rds: &hcm.Rds{
    									RouteConfigName: "test-rds-config",
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    								},
    							},
    						}),
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top