Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LoadValues (0.18 sec)

  1. pkg/test/framework/components/echo/common/deployment/external.go

    			},
    		},
    	}
    	if t.Settings().EnableDualStack {
    		config.IPFamilies = "IPv6, IPv4"
    		config.IPFamilyPolicy = "RequireDualStack"
    	}
    	return b.WithConfig(config)
    }
    
    func (e *External) LoadValues(echos echo.Instances) {
    	e.All = match.ServiceName(echo.NamespacedName{Name: ExternalSvc, Namespace: e.Namespace}).GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/namespace.go

    		if config.Namespace == nil {
    			config.Namespace = n.Namespace
    		}
    		if config.Namespace.Name() == n.Namespace.Name() {
    			b = b.WithConfig(config)
    		}
    	}
    	return b
    }
    
    func (n *EchoNamespace) loadValues(t resource.Context, echos echo.Instances, d *Echos) error {
    	ns := n.Namespace
    	n.All = match.Namespace(ns).GetMatches(echos).Services()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. operator/pkg/helm/helm.go

    	// Get global values from profile.
    	switch {
    	case util.IsFilePath(profile):
    		if globalValues, err = readFile(profile); err != nil {
    			return "", err
    		}
    	default:
    		if globalValues, err = LoadValues(profile, manifestsPath); err != nil {
    			return "", fmt.Errorf("failed to read profile %v from %v: %v", profile, manifestsPath, err)
    		}
    	}
    
    	return globalValues, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top