mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
/*
|
|
Copyright © 2020 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 commands
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/quay/quay/config-tool/pkg/lib/editor"
|
|
)
|
|
|
|
var editorPassword string
|
|
var operatorEndpoint string
|
|
var readonlyFieldGroups string
|
|
|
|
// editorCmd represents the validate command
|
|
var editorCmd = &cobra.Command{
|
|
Use: "editor",
|
|
Short: "Runs a browser-based editor for your config.yaml",
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
log.SetOutput(os.Stdout)
|
|
|
|
// Only log the warning severity or above.
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
editor.RunConfigEditor(editorPassword, configDir, operatorEndpoint, strings.Split(readonlyFieldGroups, ","))
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
// Add editor command
|
|
rootCmd.AddCommand(editorCmd)
|
|
|
|
// Add --config-dir flag
|
|
editorCmd.Flags().StringVarP(&configDir, "config-dir", "c", "", "The directory containing your config files")
|
|
editorCmd.MarkFlagRequired("config-dir")
|
|
|
|
// Add --password flag
|
|
editorCmd.Flags().StringVarP(&editorPassword, "password", "p", "", "The password to enter the editor")
|
|
editorCmd.MarkFlagRequired("password")
|
|
|
|
// Add --operator-endpoint flag
|
|
editorCmd.Flags().StringVarP(&operatorEndpoint, "operator-endpoint", "e", "", "The endpoint to commit a validated config bundle to")
|
|
|
|
// Add --readonly-fieldgroups flag
|
|
editorCmd.Flags().StringVarP(&readonlyFieldGroups, "readonly-fieldgroups", "r", "", "Comma-separated list of fieldgroups that should be treated as read-only")
|
|
}
|