mirror of
				https://github.com/fluxcd/flux2.git
				synced 2025-11-01 01:25:53 +08:00 
			
		
		
		
	 1b8e980519
			
		
	
	1b8e980519
	
	
	
		
			
			So that `<kind>/<name>` flags can be supplied as: * `secret/foo` * `Secret/foo` * `SeCrEt/foo` But result in: `Secret/foo`. Signed-off-by: Hidde Beydals <hello@hidde.co>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2020 The Flux authors
 | |
| 
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
| 
 | |
|     http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| 
 | |
| package flags
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/fluxcd/flux2/internal/utils"
 | |
| )
 | |
| 
 | |
| var supportedHelmReleaseValuesFromKinds = []string{"Secret", "ConfigMap"}
 | |
| 
 | |
| type HelmReleaseValuesFrom struct {
 | |
| 	Kind string
 | |
| 	Name string
 | |
| }
 | |
| 
 | |
| func (v *HelmReleaseValuesFrom) String() string {
 | |
| 	if v.Name == "" {
 | |
| 		return ""
 | |
| 	}
 | |
| 	return fmt.Sprintf("%s/%s", v.Kind, v.Name)
 | |
| }
 | |
| 
 | |
| func (v *HelmReleaseValuesFrom) Set(str string) error {
 | |
| 	if strings.TrimSpace(str) == "" {
 | |
| 		return fmt.Errorf("no values given, please specify %s",
 | |
| 			v.Description())
 | |
| 	}
 | |
| 
 | |
| 	sourceKind, sourceName := utils.ParseObjectKindName(str)
 | |
| 	if sourceKind == "" {
 | |
| 		return fmt.Errorf("invalid Kubernetes object reference '%s', must be in format <kind>/<name>", str)
 | |
| 	}
 | |
| 	cleanSourceKind, ok := utils.ContainsEqualFoldItemString(supportedHelmReleaseValuesFromKinds, sourceKind)
 | |
| 	if !ok {
 | |
| 		return fmt.Errorf("reference kind '%s' is not supported, must be one of: %s",
 | |
| 			sourceKind, strings.Join(supportedHelmReleaseValuesFromKinds, ", "))
 | |
| 	}
 | |
| 
 | |
| 	v.Name = sourceName
 | |
| 	v.Kind = cleanSourceKind
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (v *HelmReleaseValuesFrom) Type() string {
 | |
| 	return "helmReleaseValuesFrom"
 | |
| }
 | |
| 
 | |
| func (v *HelmReleaseValuesFrom) Description() string {
 | |
| 	return fmt.Sprintf(
 | |
| 		"Kubernetes object reference that contains the values.yaml data key in the format '<kind>/<name>', "+
 | |
| 			"where kind must be one of: (%s)",
 | |
| 		strings.Join(supportedHelmReleaseValuesFromKinds, ", "),
 | |
| 	)
 | |
| }
 |