Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for yamlToMeshConfig (0.16 sec)

  1. pkg/test/framework/components/istio/configmap.go

    		}
    
    		// Get the MeshConfig yaml from the config map.
    		mcYAML, err := getMeshConfigData(c, cfgMap)
    		if err != nil {
    			return nil, err
    		}
    
    		// Parse the YAML.
    		mymc, err = yamlToMeshConfig(mcYAML)
    		if err != nil {
    			return nil, err
    		}
    
    		// Save the updated mesh config.
    		mc.mu.Lock()
    		mc.meshConfig = mymc
    		mc.mu.Unlock()
    	}
    
    	return mymc, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top