This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rukpakctl subcommands that utilize local source bundle capabilities.
rukpakctl create bundle <manifest directory> <bundle name prefix>- create bundle with the contents of the manifest directory rukpakctl create bundledeployment <manifest directory> <bundledeployment name prefix> - create bundledeployment with the contents of the manifest directory rukpakctl content <bundle name> - show the contents of the bundle Signed-off-by: akihikokuroda <akuroda@us.ibm.com>
- Loading branch information
1 parent
10bea78
commit 13cf5de
Showing
7 changed files
with
587 additions
and
48 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/* | ||
Copyright © 2022 NAME HERE <EMAIL ADDRESS> | ||
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 cmd | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/client-go/kubernetes" | ||
"k8s.io/client-go/tools/clientcmd" | ||
runtimeclient "sigs.k8s.io/controller-runtime/pkg/client" | ||
|
||
rukpakv1alpha1 "github.com/operator-framework/rukpak/api/v1alpha1" | ||
"github.com/operator-framework/rukpak/cmd/rukpakctl/utils" | ||
) | ||
|
||
type BundleOptions struct { | ||
*kubernetes.Clientset | ||
runtimeclient.Client | ||
namespace string | ||
} | ||
|
||
var bundleOpt BundleOptions | ||
|
||
// bundleCmd represents the bundle command | ||
var bundleCmd = &cobra.Command{ | ||
Use: "bundle <manifest directory> <bundle name prefix>", | ||
Short: "create rukpak bundle resource.", | ||
Long: `create rukpak bundle resource with specified contents.`, | ||
Args: func(cmd *cobra.Command, args []string) error { | ||
if len(args) < 1 { | ||
return errors.New("requires argument: <manifest file directory> <bundle name prefix>") | ||
} | ||
return nil | ||
}, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
kubeconfig, err := cmd.Flags().GetString("kubeconfig") | ||
if err != nil { | ||
fmt.Printf("failed to find kubeconfig location: %+v\n", err) | ||
return | ||
} | ||
// use the current context in kubeconfig | ||
config, err := clientcmd.BuildConfigFromFlags("", kubeconfig) | ||
if err != nil { | ||
fmt.Printf("failed to find kubeconfig location: %+v\n", err) | ||
return | ||
} | ||
|
||
bundleOpt.Client, err = runtimeclient.New(config, runtimeclient.Options{ | ||
Scheme: scheme, | ||
}) | ||
if err != nil { | ||
fmt.Printf("failed to create kubernetes client: %+v\n", err) | ||
return | ||
} | ||
|
||
if bundleOpt.Clientset, err = kubernetes.NewForConfig(config); err != nil { | ||
fmt.Printf("failed to create kubernetes client: %+v\n", err) | ||
return | ||
} | ||
|
||
bundleOpt.namespace, err = cmd.Flags().GetString("namespace") | ||
if err != nil { | ||
bundleOpt.namespace = "rukpak-system" | ||
} | ||
|
||
err = bundle(bundleOpt, args) | ||
if err != nil { | ||
fmt.Printf("bundle command failed: %+v\n", err) | ||
} | ||
}, | ||
} | ||
|
||
func init() { | ||
createCmd.AddCommand(bundleCmd) | ||
} | ||
|
||
func bundle(opt BundleOptions, args []string) error { | ||
namePrefix := "rukpakctl-bundle-" | ||
if len(args) > 1 { | ||
namePrefix = args[1] | ||
} | ||
// Create a bundle configmap | ||
configmapName, err := utils.CreateConfigmap(opt.CoreV1(), namePrefix, args[0], opt.namespace) | ||
if err != nil { | ||
return fmt.Errorf("failed to create a configmap: %+v", err) | ||
} | ||
|
||
bundle := &rukpakv1alpha1.Bundle{ | ||
TypeMeta: metav1.TypeMeta{ | ||
Kind: "Bundle", | ||
APIVersion: "core.rukpak.io/v1alpha1", | ||
}, | ||
ObjectMeta: metav1.ObjectMeta{ | ||
GenerateName: namePrefix, | ||
}, | ||
Spec: rukpakv1alpha1.BundleSpec{ | ||
ProvisionerClassName: "core.rukpak.io/plain", | ||
Source: rukpakv1alpha1.BundleSource{ | ||
Type: rukpakv1alpha1.SourceTypeLocal, | ||
Local: &rukpakv1alpha1.LocalSource{ | ||
ConfigMapRef: &rukpakv1alpha1.ConfigMapRef{ | ||
Name: configmapName, | ||
Namespace: opt.namespace, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
err = opt.Create(context.Background(), bundle) | ||
if err != nil { | ||
return fmt.Errorf("failed to create bundle: %+v", err) | ||
} | ||
fmt.Printf("bundle %q created\n", bundle.ObjectMeta.Name) | ||
|
||
return 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,138 @@ | ||
/* | ||
Copyright © 2022 NAME HERE <EMAIL ADDRESS> | ||
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 cmd | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/client-go/kubernetes" | ||
"k8s.io/client-go/tools/clientcmd" | ||
runtimeclient "sigs.k8s.io/controller-runtime/pkg/client" | ||
|
||
rukpakv1alpha1 "github.com/operator-framework/rukpak/api/v1alpha1" | ||
"github.com/operator-framework/rukpak/cmd/rukpakctl/utils" | ||
) | ||
|
||
type BundleDeploymentOptions struct { | ||
*kubernetes.Clientset | ||
runtimeclient.Client | ||
namespace string | ||
} | ||
|
||
var bundleDeploymentOpt BundleDeploymentOptions | ||
|
||
// contentCmd represents the content command | ||
var bundledeploymentCmd = &cobra.Command{ | ||
Use: "bundledeployment <manifest directory> <bundledeployment name prefix>", | ||
Short: "create rukpak bundledeployment resource", | ||
Long: `create rukpak bundledeployment resource with specified contents.`, | ||
Args: func(cmd *cobra.Command, args []string) error { | ||
if len(args) < 1 { | ||
return errors.New("requires argument: <manifest file directory> <bundledeployment name prefix>") | ||
} | ||
return nil | ||
}, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
kubeconfig, err := cmd.Flags().GetString("kubeconfig") | ||
if err != nil { | ||
fmt.Printf("failed to find kubeconfig location: %+v\n", err) | ||
return | ||
} | ||
// use the current context in kubeconfig | ||
config, err := clientcmd.BuildConfigFromFlags("", kubeconfig) | ||
if err != nil { | ||
fmt.Printf("failed to find kubeconfig location: %+v\n", err) | ||
return | ||
} | ||
|
||
bundleDeploymentOpt.Client, err = runtimeclient.New(config, runtimeclient.Options{ | ||
Scheme: scheme, | ||
}) | ||
if err != nil { | ||
fmt.Printf("failed to create kubernetes client: %+v\n", err) | ||
return | ||
} | ||
|
||
if bundleDeploymentOpt.Clientset, err = kubernetes.NewForConfig(config); err != nil { | ||
fmt.Printf("failed to create kubernetes client: %+v\n", err) | ||
return | ||
} | ||
|
||
bundleDeploymentOpt.namespace, err = cmd.Flags().GetString("namespace") | ||
if err != nil { | ||
bundleDeploymentOpt.namespace = "rukpak-system" | ||
} | ||
|
||
err = bundleDeployment(bundleDeploymentOpt, args) | ||
if err != nil { | ||
fmt.Printf("bundledeployment command failed: %+v\n", err) | ||
} | ||
}, | ||
} | ||
|
||
func init() { | ||
createCmd.AddCommand(bundledeploymentCmd) | ||
} | ||
|
||
func bundleDeployment(opt BundleDeploymentOptions, args []string) error { | ||
namePrefix := "rukpakctl-bd-" | ||
if len(args) > 1 { | ||
namePrefix = args[1] | ||
} | ||
// Create a bundle configmap | ||
configmapName, err := utils.CreateConfigmap(opt.CoreV1(), namePrefix, args[0], opt.namespace) | ||
if err != nil { | ||
return fmt.Errorf("failed to create a configmap: %+v", err) | ||
} | ||
|
||
bundleDeployment := &rukpakv1alpha1.BundleDeployment{ | ||
TypeMeta: metav1.TypeMeta{ | ||
Kind: "BundleDeployment", | ||
APIVersion: "core.rukpak.io/v1alpha1", | ||
}, | ||
ObjectMeta: metav1.ObjectMeta{ | ||
GenerateName: namePrefix, | ||
}, | ||
Spec: rukpakv1alpha1.BundleDeploymentSpec{ | ||
ProvisionerClassName: "core.rukpak.io/plain", | ||
Template: &rukpakv1alpha1.BundleTemplate{ | ||
Spec: rukpakv1alpha1.BundleSpec{ | ||
ProvisionerClassName: "core.rukpak.io/plain", | ||
Source: rukpakv1alpha1.BundleSource{ | ||
Type: rukpakv1alpha1.SourceTypeLocal, | ||
Local: &rukpakv1alpha1.LocalSource{ | ||
ConfigMapRef: &rukpakv1alpha1.ConfigMapRef{ | ||
Name: configmapName, | ||
Namespace: opt.namespace, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
err = opt.Create(context.Background(), bundleDeployment) | ||
if err != nil { | ||
return fmt.Errorf("failed to create bundledeployment: %+v", err) | ||
} | ||
fmt.Printf("bundledeployment %q created\n", bundleDeployment.ObjectMeta.Name) | ||
|
||
return nil | ||
} |
Oops, something went wrong.