mirror of
				https://github.com/fluxcd/flux2.git
				synced 2025-10-31 08:17:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.1 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 main
 | |
| 
 | |
| import (
 | |
| 	"github.com/spf13/cobra"
 | |
| 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | |
| 
 | |
| 	helmv2 "github.com/fluxcd/helm-controller/api/v2beta1"
 | |
| )
 | |
| 
 | |
| var exportHelmReleaseCmd = &cobra.Command{
 | |
| 	Use:     "helmrelease [name]",
 | |
| 	Aliases: []string{"hr"},
 | |
| 	Short:   "Export HelmRelease resources in YAML format",
 | |
| 	Long:    withPreviewNote("The export helmrelease command exports one or all HelmRelease resources in YAML format."),
 | |
| 	Example: `  # Export all HelmRelease resources
 | |
|   flux export helmrelease --all > kustomizations.yaml
 | |
| 
 | |
|   # Export a HelmRelease
 | |
|   flux export hr my-app > app-release.yaml`,
 | |
| 	ValidArgsFunction: resourceNamesCompletionFunc(helmv2.GroupVersion.WithKind(helmv2.HelmReleaseKind)),
 | |
| 	RunE: exportCommand{
 | |
| 		object: helmReleaseAdapter{&helmv2.HelmRelease{}},
 | |
| 		list:   helmReleaseListAdapter{&helmv2.HelmReleaseList{}},
 | |
| 	}.run,
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	exportCmd.AddCommand(exportHelmReleaseCmd)
 | |
| }
 | |
| 
 | |
| func exportHelmRelease(helmRelease *helmv2.HelmRelease) interface{} {
 | |
| 	gvk := helmv2.GroupVersion.WithKind(helmv2.HelmReleaseKind)
 | |
| 	export := helmv2.HelmRelease{
 | |
| 		TypeMeta: metav1.TypeMeta{
 | |
| 			Kind:       gvk.Kind,
 | |
| 			APIVersion: gvk.GroupVersion().String(),
 | |
| 		},
 | |
| 		ObjectMeta: metav1.ObjectMeta{
 | |
| 			Name:        helmRelease.Name,
 | |
| 			Namespace:   helmRelease.Namespace,
 | |
| 			Labels:      helmRelease.Labels,
 | |
| 			Annotations: helmRelease.Annotations,
 | |
| 		},
 | |
| 		Spec: helmRelease.Spec,
 | |
| 	}
 | |
| 	return export
 | |
| }
 | |
| 
 | |
| func (ex helmReleaseAdapter) export() interface{} {
 | |
| 	return exportHelmRelease(ex.HelmRelease)
 | |
| }
 | |
| 
 | |
| func (ex helmReleaseListAdapter) exportItem(i int) interface{} {
 | |
| 	return exportHelmRelease(&ex.HelmReleaseList.Items[i])
 | |
| }
 | 
