blob: 151ac1df7a676ee078ef6a1c9408260883eba37b [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 (
"errors"
"fmt"
"io"
"github.com/spf13/cobra"
k8sclient "sigs.k8s.io/controller-runtime/pkg/client"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/util/indentedwriter"
)
func newDescribePlatformCmd(rootCmdOptions *RootCmdOptions) (*cobra.Command, *describePlatformCommandOptions) {
options := describePlatformCommandOptions{
rootCmdOptions,
}
cmd := cobra.Command{
Use: "platform",
Short: "Describe an Integration Platform",
Long: `Describe an Integration Platform.`,
PreRunE: decode(&options),
RunE: func(_ *cobra.Command, args []string) error {
if err := options.validate(args); err != nil {
return err
}
if err := options.run(args); err != nil {
fmt.Println(err.Error())
}
return nil
},
}
return &cmd, &options
}
type describePlatformCommandOptions struct {
*RootCmdOptions
}
func (command *describePlatformCommandOptions) validate(args []string) error {
if len(args) != 1 {
return errors.New("describe expects a platform name argument")
}
return nil
}
func (command *describePlatformCommandOptions) run(args []string) error {
c, err := command.GetCmdClient()
if err != nil {
return err
}
platform := v1.NewIntegrationPlatform(command.Namespace, args[0])
platformKey := k8sclient.ObjectKey{
Namespace: command.Namespace,
Name: args[0],
}
if err := c.Get(command.Context, platformKey, &platform); err == nil {
fmt.Print(command.describeIntegrationPlatform(platform))
} else {
fmt.Printf("IntegrationPlatform '%s' does not exist.\n", args[0])
}
return nil
}
func (command *describePlatformCommandOptions) describeIntegrationPlatform(platform v1.IntegrationPlatform) (string, error) {
return indentedwriter.IndentedString(func(out io.Writer) error {
w := indentedwriter.NewWriter(out)
describeObjectMeta(w, platform.ObjectMeta)
w.Write(0, "Phase:\t%s\n", platform.Status.Phase)
w.Write(0, "Version:\t%s\n", platform.Status.Version)
w.Write(0, "Base Image:\t%s\n", platform.GetActualValue(getPlatformBaseImage))
w.Write(0, "Runtime Version:\t%s\n", platform.GetActualValue(getPlatformRuntimeVersion))
w.Write(0, "Local Repository:\t%s\n", platform.GetActualValue(getPlatformMavenLocalRepository))
w.Write(0, "Publish Strategy:\t%s\n", platform.GetActualValue(getPlatformPublishStrategy))
return nil
})
}
func getPlatformBaseImage(spec v1.IntegrationPlatformSpec) string {
return spec.Build.BaseImage
}
func getPlatformRuntimeVersion(spec v1.IntegrationPlatformSpec) string {
return spec.Build.RuntimeVersion
}
func getPlatformMavenLocalRepository(spec v1.IntegrationPlatformSpec) string {
return spec.Build.Maven.LocalRepository
}
func getPlatformPublishStrategy(spec v1.IntegrationPlatformSpec) string {
return string(spec.Build.PublishStrategy)
}