2020-04-01 09:55:42 -05:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
|
|
|
|
https://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.
|
|
|
|
*/
|
|
|
|
|
2019-12-13 10:31:47 -06:00
|
|
|
package document
|
|
|
|
|
|
|
|
import (
|
2020-12-17 18:33:34 +03:00
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
|
2019-12-13 10:31:47 -06:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2020-08-27 17:23:12 -05:00
|
|
|
"opendev.org/airship/airshipctl/pkg/config"
|
2019-12-13 10:31:47 -06:00
|
|
|
"opendev.org/airship/airshipctl/pkg/document/pull"
|
|
|
|
)
|
|
|
|
|
2020-12-17 18:33:34 +03:00
|
|
|
const (
|
|
|
|
long = `
|
|
|
|
The remote manifests repositories as well as the target path where
|
|
|
|
the repositories will be cloned are defined in the airship config file.
|
|
|
|
|
|
|
|
By default the airship config file is initialized with the
|
|
|
|
repository "https://opendev.org/airship/treasuremap" as a source of
|
|
|
|
manifests and with the manifests target path "%s".
|
2021-05-06 15:40:29 +05:30
|
|
|
`
|
|
|
|
|
|
|
|
pullExample = `
|
|
|
|
Pull manifests from remote repos
|
|
|
|
# airshipctl document pull
|
|
|
|
>>>>>>> Updating cmd files for documentation
|
2020-12-17 18:33:34 +03:00
|
|
|
`
|
|
|
|
)
|
|
|
|
|
2020-04-15 16:59:49 -05:00
|
|
|
// NewPullCommand creates a new command for pulling airship document repositories
|
2020-08-27 17:23:12 -05:00
|
|
|
func NewPullCommand(cfgFactory config.Factory) *cobra.Command {
|
2020-09-17 18:33:18 -05:00
|
|
|
var noCheckout bool
|
2019-12-13 10:31:47 -06:00
|
|
|
documentPullCmd := &cobra.Command{
|
2021-05-06 15:40:29 +05:30
|
|
|
Use: "pull",
|
2020-12-17 18:33:34 +03:00
|
|
|
Long: fmt.Sprintf(long[1:], filepath.Join(
|
|
|
|
config.HomeEnvVar, config.AirshipConfigDir, config.AirshipDefaultManifest)),
|
2021-05-06 15:40:29 +05:30
|
|
|
Short: "Airshipctl command to pull manifests from remote git repositories",
|
|
|
|
Example: pullExample,
|
2019-12-13 10:31:47 -06:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2020-09-17 18:33:18 -05:00
|
|
|
return pull.Pull(cfgFactory, noCheckout)
|
2019-12-13 10:31:47 -06:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-09-17 18:33:18 -05:00
|
|
|
documentPullCmd.Flags().BoolVarP(&noCheckout, "no-checkout", "n", false,
|
2021-05-06 15:40:29 +05:30
|
|
|
"no checkout is performed after the clone is complete.")
|
2020-09-17 18:33:18 -05:00
|
|
|
|
2019-12-13 10:31:47 -06:00
|
|
|
return documentPullCmd
|
|
|
|
}
|