Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cfgldap (0.1 sec)

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

    			errG.Go(func() error {
    				cfgMap, err := ic.getConfigMap(c, ic.configMapName())
    				if err != nil {
    					return err
    				}
    
    				cfgMap.Data["config"] = mcYAML
    				if err := ic.updateConfigMap(c, cfgMap); err != nil {
    					return err
    				}
    				scopes.Framework.Debugf("cleanup patched %s injection configmap:\n%s", c.Name(), cfgMap.Data["config"])
    				return 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)
  2. internal/logger/targets.go

    			consoleTgt = t
    		}
    	}
    
    	systemTargets.add(t)
    	return nil
    }
    
    func initKafkaTargets(ctx context.Context, cfgMap map[string]kafka.Config) ([]Target, []error) {
    	tgts := []Target{}
    	errs := []error{}
    	for _, l := range cfgMap {
    		if l.Enabled {
    			t := kafka.New(l)
    			tgts = append(tgts, t)
    
    			e := t.Init(ctx)
    			if e != nil {
    				errs = append(errs, e)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    			vol: core.Volume{
    				Name: "cfgmap",
    				VolumeSource: core.VolumeSource{
    					ConfigMap: &core.ConfigMapVolumeSource{
    						LocalObjectReference: core.LocalObjectReference{
    							Name: "my-cfgmap",
    						},
    					},
    				},
    			},
    		}, {
    			name: "valid ConfigMap with defaultMode",
    			vol: core.Volume{
    				Name: "cfgmap",
    				VolumeSource: core.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top