-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
- Loading branch information
1 parent
1c72b90
commit f855a04
Showing
12 changed files
with
675 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,222 @@ | ||
/* | ||
Copyright 2022 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 ( | ||
"context" | ||
"fmt" | ||
"os" | ||
"strings" | ||
|
||
"github.com/spf13/cobra" | ||
"k8s.io/apimachinery/pkg/api/errors" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/types" | ||
"k8s.io/apimachinery/pkg/util/wait" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
|
||
"github.com/fluxcd/pkg/apis/meta" | ||
"github.com/fluxcd/pkg/runtime/conditions" | ||
|
||
sourcev1 "github.com/fluxcd/source-controller/api/v1beta2" | ||
|
||
"github.com/fluxcd/flux2/internal/utils" | ||
) | ||
|
||
var createSourceOCIRepositoryCmd = &cobra.Command{ | ||
Use: "oci [name]", | ||
Short: "Create or update an OCIRepository", | ||
Long: `The create source oci command generates an OCIRepository resource and waits for it to be ready.`, | ||
Example: ` # Create an OCIRepository for a public container image | ||
flux create source oci podinfo \ | ||
--url=ghcr.io/stefanprodan/manifests/podinfo \ | ||
--tag=6.1.6 \ | ||
--interval=10m | ||
`, | ||
RunE: createSourceOCIRepositoryCmdRun, | ||
} | ||
|
||
type sourceOCIRepositoryFlags struct { | ||
url string | ||
tag string | ||
digest string | ||
secretRef string | ||
ignorePaths []string | ||
} | ||
|
||
var sourceOCIRepositoryArgs = sourceOCIRepositoryFlags{} | ||
|
||
func init() { | ||
createSourceOCIRepositoryCmd.Flags().StringVar(&sourceOCIRepositoryArgs.url, "url", "", "the OCI repository URL") | ||
createSourceOCIRepositoryCmd.Flags().StringVar(&sourceOCIRepositoryArgs.tag, "tag", "", "the OCI artifact tag") | ||
createSourceOCIRepositoryCmd.Flags().StringVar(&sourceOCIRepositoryArgs.digest, "digest", "", "the OCI artifact digest") | ||
createSourceOCIRepositoryCmd.Flags().StringVar(&sourceOCIRepositoryArgs.secretRef, "secret-ref", "", "the name of an existing secret containing credentials") | ||
createSourceOCIRepositoryCmd.Flags().StringSliceVar(&sourceOCIRepositoryArgs.ignorePaths, "ignore-paths", nil, "set paths to ignore resources (can specify multiple paths with commas: path1,path2)") | ||
|
||
createSourceCmd.AddCommand(createSourceOCIRepositoryCmd) | ||
} | ||
|
||
func createSourceOCIRepositoryCmdRun(cmd *cobra.Command, args []string) error { | ||
name := args[0] | ||
|
||
if sourceOCIRepositoryArgs.url == "" { | ||
return fmt.Errorf("url is required") | ||
} | ||
|
||
if sourceOCIRepositoryArgs.tag == "" && sourceOCIRepositoryArgs.digest == "" { | ||
return fmt.Errorf("--tag or --digest is required") | ||
} | ||
|
||
sourceLabels, err := parseLabels() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
tmpDir, err := os.MkdirTemp("", name) | ||
if err != nil { | ||
return err | ||
} | ||
defer os.RemoveAll(tmpDir) | ||
|
||
var ignorePaths *string | ||
if len(sourceOCIRepositoryArgs.ignorePaths) > 0 { | ||
ignorePathsStr := strings.Join(sourceOCIRepositoryArgs.ignorePaths, "\n") | ||
ignorePaths = &ignorePathsStr | ||
} | ||
|
||
repository := &sourcev1.OCIRepository{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: name, | ||
Namespace: *kubeconfigArgs.Namespace, | ||
Labels: sourceLabels, | ||
}, | ||
Spec: sourcev1.OCIRepositorySpec{ | ||
URL: sourceOCIRepositoryArgs.url, | ||
Interval: metav1.Duration{ | ||
Duration: createArgs.interval, | ||
}, | ||
Reference: &sourcev1.OCIRepositoryRef{}, | ||
Ignore: ignorePaths, | ||
}, | ||
} | ||
|
||
if sourceOCIRepositoryArgs.tag != "" { | ||
repository.Spec.Reference.Tag = sourceOCIRepositoryArgs.tag | ||
} | ||
if sourceOCIRepositoryArgs.digest != "" { | ||
repository.Spec.Reference.Digest = sourceOCIRepositoryArgs.digest | ||
} | ||
|
||
if createSourceArgs.fetchTimeout > 0 { | ||
repository.Spec.Timeout = &metav1.Duration{Duration: createSourceArgs.fetchTimeout} | ||
} | ||
|
||
if sourceOCIRepositoryArgs.secretRef != "" { | ||
repository.Spec.SecretRef = &meta.LocalObjectReference{ | ||
Name: sourceOCIRepositoryArgs.secretRef, | ||
} | ||
} | ||
|
||
if createArgs.export { | ||
return printExport(exportOCIRepository(repository)) | ||
} | ||
|
||
ctx, cancel := context.WithTimeout(context.Background(), rootArgs.timeout) | ||
defer cancel() | ||
|
||
kubeClient, err := utils.KubeClient(kubeconfigArgs, kubeclientOptions) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
logger.Actionf("applying OCIRepository") | ||
namespacedName, err := upsertOCIRepository(ctx, kubeClient, repository) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
logger.Waitingf("waiting for OCIRepository reconciliation") | ||
if err := wait.PollImmediate(rootArgs.pollInterval, rootArgs.timeout, | ||
isOCIRepositoryReady(ctx, kubeClient, namespacedName, repository)); err != nil { | ||
return err | ||
} | ||
logger.Successf("OCIRepository reconciliation completed") | ||
|
||
if repository.Status.Artifact == nil { | ||
return fmt.Errorf("no artifact was found") | ||
} | ||
logger.Successf("fetched revision: %s", repository.Status.Artifact.Revision) | ||
return nil | ||
} | ||
|
||
func upsertOCIRepository(ctx context.Context, kubeClient client.Client, | ||
ociRepository *sourcev1.OCIRepository) (types.NamespacedName, error) { | ||
namespacedName := types.NamespacedName{ | ||
Namespace: ociRepository.GetNamespace(), | ||
Name: ociRepository.GetName(), | ||
} | ||
|
||
var existing sourcev1.OCIRepository | ||
err := kubeClient.Get(ctx, namespacedName, &existing) | ||
if err != nil { | ||
if errors.IsNotFound(err) { | ||
if err := kubeClient.Create(ctx, ociRepository); err != nil { | ||
return namespacedName, err | ||
} else { | ||
logger.Successf("OCIRepository created") | ||
return namespacedName, nil | ||
} | ||
} | ||
return namespacedName, err | ||
} | ||
|
||
existing.Labels = ociRepository.Labels | ||
existing.Spec = ociRepository.Spec | ||
if err := kubeClient.Update(ctx, &existing); err != nil { | ||
return namespacedName, err | ||
} | ||
ociRepository = &existing | ||
logger.Successf("OCIRepository updated") | ||
return namespacedName, nil | ||
} | ||
|
||
func isOCIRepositoryReady(ctx context.Context, kubeClient client.Client, | ||
namespacedName types.NamespacedName, ociRepository *sourcev1.OCIRepository) wait.ConditionFunc { | ||
return func() (bool, error) { | ||
err := kubeClient.Get(ctx, namespacedName, ociRepository) | ||
if err != nil { | ||
return false, err | ||
} | ||
|
||
if c := conditions.Get(ociRepository, meta.ReadyCondition); c != nil { | ||
// Confirm the Ready condition we are observing is for the | ||
// current generation | ||
if c.ObservedGeneration != ociRepository.GetGeneration() { | ||
return false, nil | ||
} | ||
|
||
// Further check the Status | ||
switch c.Status { | ||
case metav1.ConditionTrue: | ||
return true, nil | ||
case metav1.ConditionFalse: | ||
return false, fmt.Errorf(c.Message) | ||
} | ||
} | ||
return false, nil | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
Copyright 2022 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" | ||
|
||
sourcev1 "github.com/fluxcd/source-controller/api/v1beta2" | ||
) | ||
|
||
var deleteSourceOCIRepositoryCmd = &cobra.Command{ | ||
Use: "oci [name]", | ||
Short: "Delete a OCIRepository source", | ||
Long: "The delete source oci command deletes the given OCIRepository from the cluster.", | ||
Example: ` # Delete an OCIRepository | ||
flux delete source oci podinfo`, | ||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.OCIRepositoryKind)), | ||
RunE: deleteCommand{ | ||
apiType: ociRepositoryType, | ||
object: universalAdapter{&sourcev1.OCIRepository{}}, | ||
}.run, | ||
} | ||
|
||
func init() { | ||
deleteSourceCmd.AddCommand(deleteSourceOCIRepositoryCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
Copyright 2022 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" | ||
"k8s.io/apimachinery/pkg/types" | ||
|
||
sourcev1 "github.com/fluxcd/source-controller/api/v1beta2" | ||
) | ||
|
||
var exportSourceOCIRepositoryCmd = &cobra.Command{ | ||
Use: "oci [name]", | ||
Short: "Export OCIRepository sources in YAML format", | ||
Long: "The export source oci command exports one or all OCIRepository sources in YAML format.", | ||
Example: ` # Export all OCIRepository sources | ||
flux export source oci --all > sources.yaml | ||
# Export a OCIRepository including the static credentials | ||
flux export source oci my-app --with-credentials > source.yaml`, | ||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.OCIRepositoryKind)), | ||
RunE: exportWithSecretCommand{ | ||
list: ociRepositoryListAdapter{&sourcev1.OCIRepositoryList{}}, | ||
object: ociRepositoryAdapter{&sourcev1.OCIRepository{}}, | ||
}.run, | ||
} | ||
|
||
func init() { | ||
exportSourceCmd.AddCommand(exportSourceOCIRepositoryCmd) | ||
} | ||
|
||
func exportOCIRepository(source *sourcev1.OCIRepository) interface{} { | ||
gvk := sourcev1.GroupVersion.WithKind(sourcev1.OCIRepositoryKind) | ||
export := sourcev1.OCIRepository{ | ||
TypeMeta: metav1.TypeMeta{ | ||
Kind: gvk.Kind, | ||
APIVersion: gvk.GroupVersion().String(), | ||
}, | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: source.Name, | ||
Namespace: source.Namespace, | ||
Labels: source.Labels, | ||
Annotations: source.Annotations, | ||
}, | ||
Spec: source.Spec, | ||
} | ||
return export | ||
} | ||
|
||
func getOCIRepositorySecret(source *sourcev1.OCIRepository) *types.NamespacedName { | ||
if source.Spec.SecretRef != nil { | ||
namespacedName := types.NamespacedName{ | ||
Namespace: source.Namespace, | ||
Name: source.Spec.SecretRef.Name, | ||
} | ||
|
||
return &namespacedName | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (ex ociRepositoryAdapter) secret() *types.NamespacedName { | ||
return getOCIRepositorySecret(ex.OCIRepository) | ||
} | ||
|
||
func (ex ociRepositoryListAdapter) secretItem(i int) *types.NamespacedName { | ||
return getOCIRepositorySecret(&ex.OCIRepositoryList.Items[i]) | ||
} | ||
|
||
func (ex ociRepositoryAdapter) export() interface{} { | ||
return exportOCIRepository(ex.OCIRepository) | ||
} | ||
|
||
func (ex ociRepositoryListAdapter) exportItem(i int) interface{} { | ||
return exportOCIRepository(&ex.OCIRepositoryList.Items[i]) | ||
} |
Oops, something went wrong.