Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initMeshConfiguration (0.15 sec)

  1. pilot/pkg/bootstrap/mesh.go

    	// The actual name can be different - use getMeshConfigMapName
    	defaultMeshConfigMapName = "istio"
    	// configMapKey should match the expected MeshConfig file name
    	configMapKey = "mesh"
    )
    
    // initMeshConfiguration creates the mesh in the pilotConfig from the input arguments.
    // Original/default behavior:
    // - use the mounted file, if it exists.
    // - use istio-REVISION if k8s is enabled
    // - fallback to default
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	}
    
    	// Apply the arguments to the configuration.
    	if err := s.initKubeClient(args); err != nil {
    		return nil, fmt.Errorf("error initializing kube client: %v", err)
    	}
    
    	s.initMeshConfiguration(args, s.fileWatcher)
    	// Setup Kubernetes watch filters
    	// Because this relies on meshconfig, it needs to be outside initKubeClient
    	if s.kubeClient != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top