cmd

package
v1.2.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 23, 2018 License: Apache-2.0 Imports: 80 Imported by: 0

Documentation

Index

Constants

View Source
const (
	GKE        = "gke"
	EKS        = "eks"
	AKS        = "aks"
	AWS        = "aws"
	MINIKUBE   = "minikube"
	MINISHIFT  = "minishift"
	KUBERNETES = "kubernetes"
	OPENSHIFT  = "openshift"
	JX_INFRA   = "jx-infra"
)
View Source
const (
	PlaceHolderAppName     = "REPLACE_ME_APP_NAME"
	PlaceHolderGitProvider = "REPLACE_ME_GIT_PROVIDER"
	PlaceHolderOrg         = "REPLACE_ME_ORG"

	DefaultWritePermissions = 0760
)
View Source
const (
	INGRESS_SERVICE_NAME    = "jxing-nginx-ingress-controller"
	DEFAULT_CHARTMUSEUM_URL = "http://chartmuseum.build.cd.jenkins-x.io"
)
View Source
const (
	JX_GIT_TOKEN                   = "JX_GIT_TOKEN"
	JX_GIT_USER                    = "JX_GIT_USER"
	DEFAULT_CLOUD_ENVIRONMENTS_URL = "https://github.com/jenkins-x/cloud-environments"

	GitSecretsFile   = "gitSecrets.yaml"
	AdminSecretsFile = "adminSecrets.yaml"
	ExtraValuesFile  = "extraValues.yaml"
)
View Source
const (
	JENKINS_X_DOCKER_REGISTRY_SERVICE_HOST = "JENKINS_X_DOCKER_REGISTRY_SERVICE_HOST"
	JENKINS_X_DOCKER_REGISTRY_SERVICE_PORT = "JENKINS_X_DOCKER_REGISTRY_SERVICE_PORT"
	ORG                                    = "ORG"
	APP_NAME                               = "APP_NAME"
	PREVIEW_VERSION                        = "PREVIEW_VERSION"
)
View Source
const (
	ReleaseName = `{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}`

	SpecName    = `{{ .Chart.Name }}`
	SpecVersion = `{{ .Chart.Version }}`

	ReleaseCrdYaml = `` /* 498-byte string literal not displayed */

)
View Source
const CLUSTER_LIST_HEADER = "PROJECT_ID"
View Source
const (
	DefaultShell = "/bin/sh"
)
View Source
const (
	JenkinsXQuickstartsOrganisation = "jenkins-x-quickstarts"
)
View Source
const (
	VERSION = "version"
)

Variables

View Source
var (
	GetIssuesLong = templates.LongDesc(`
		Display one or many issues for a project.

`)

	GetIssuesExample = templates.Examples(`
		# List open issues on the current project
		jx get issues
	`)
)
View Source
var (
	MetricsLong = templates.LongDesc(`
		Gets the metrics of the newest pod for a Deployment.

`)

	MetricsExample = templates.Examples(`
		# displays metrics of the latest pod in deployment myapp
		jx metrics myapp

		# Tails the metrics of the container foo in the latest pod in deployment myapp
		jx metrics myapp -c foo
`)
)
View Source
var (
	StatusLong = templates.LongDesc(`
		Gets the current status of the Kubernetes cluster

`)

	StatusExample = templates.Examples(`
		# displays the current status of the kubernetes cluster
		jx status
`)
)
View Source
var (
	GitAccessDescription = `` /* 363-byte string literal not displayed */

	StepChangelogLong = templates.LongDesc(`
		Generates a Changelog for the latest tag

		This command will generate a Changelog as markdown for the git commit range given. 
		If you are using GitHub it will also update the GitHub Release with the changelog. You can disable that by passing'--update-release=false'

		If you have just created a git tag this command will try default to the changes between the last tag and the previous one. You can always specify the exact git references (tag/sha) directly via '--previous-rev' and '--rev'

		The changelog is generated by parsing the git commits. It will also detect any text like 'fixes #123' to link to issue fixes. You can also use Conventional Commits notation: https://conventionalcommits.org/ to get a nicer formatted changelog. e.g. using commits like 'fix:(my feature) this my fix' or 'feat:(cheese) something'

		This command also generates a Release Custom Resource Definition you can include in your helm chart to give metadata about the changelog of the application along with metadata about the release (git tag, url, commits, issues fixed etc). Including this metadata in a helm charts means we can do things like automatically comment on issues when they hit Staging or Production; or give detailed descriptions of what things have changed when using GitOps to update versions in an environment by referencing the fixed issues in the Pull Request.

		You can opt out of the release YAML generation via the '--generate-yaml=false' option
		
		To update the release notes on GitHub / Gitea this command needs a git API token.

`) + GitAccessDescription

	StepChangelogExample = templates.Examples(`
		# generate a changelog on the current source
		jx step changelog

		# specify the version to use
		jx step changelog --version 1.2.3

		# specify the version and a header template
		jx step changelog --header-file docs/dev/changelog-header.md --version 1.2.3

`)

	GitHubIssueRegex = regexp.MustCompile(`(\#\d+)`)
	JIRAIssueRegex   = regexp.MustCompile(`[A-Z][A-Z]+-(\d+)`)
)
View Source
var (
	StepGitCredentialsLong = templates.LongDesc(`
		This pipeline step generates a git credentials file for the current Git provider pipeline Secrets

`)

	StepGitCredentialsExample = templates.Examples(`
		# generate the git credentials file in the canonical location
		jx step git credentials

		# generate the git credentials to a output file
		jx step git credentials -o /tmp/mycreds

`)
)
View Source
var (
	StepNexusDropLong = templates.LongDesc(`
		This pipeline step command drops a Staging Nexus Repository

`)

	StepNexusDropExample = templates.Examples(`
		jx step nexus drop

`)
)
View Source
var (
	StepNexusReleaseLong = templates.LongDesc(`
		This pipeline step command releases a Nexus staging repository
`)

	StepNexusReleaseExample = templates.Examples(`
		jx step nexus release

`)
)
View Source
var KUBERNETES_PROVIDERS = []string{MINIKUBE, GKE, AKS, AWS, EKS, KUBERNETES, OPENSHIFT, MINISHIFT, JX_INFRA}

Functions

func GetNamespaceNames

func GetNamespaceNames(client *kubernetes.Clientset) ([]string, error)

GetNamespaceNames returns the sorted list of environment names

func IsPipeline

func IsPipeline(j *gojenkins.Job) bool

func KubernetesProviderOptions

func KubernetesProviderOptions() string

KubernetesProviderOptions returns all the kubernetes providers as a string

func NewCmdCDX

func NewCmdCDX(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdCompletion

func NewCmdCompletion(f cmdutil.Factory, out io.Writer) *cobra.Command

func NewCmdConsole

func NewCmdConsole(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdContext

func NewCmdContext(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdCreate

func NewCmdCreate(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreate creates a command object for the "create" command

func NewCmdCreateAddon

func NewCmdCreateAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateAddon creates a command object for the "create" command

func NewCmdCreateAddonAmbassador

func NewCmdCreateAddonAmbassador(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateAddonAmbassador creates a command object for the "create" command

func NewCmdCreateAddonAnchore

func NewCmdCreateAddonAnchore(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateAddonAnchore creates a command object for the "create" command

func NewCmdCreateAddonCDX

func NewCmdCreateAddonCDX(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateAddonCDX creates a command object for the "create" command

func NewCmdCreateAddonGitea

func NewCmdCreateAddonGitea(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateAddonGitea creates a command object for the "create" command

func NewCmdCreateAddonKubeless

func NewCmdCreateAddonKubeless(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateAddonKubeless creates a command object for the "create" command

func NewCmdCreateArchetype

func NewCmdCreateArchetype(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateArchetype creates a command object for the "create" command

func NewCmdCreateChat

func NewCmdCreateChat(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateChat creates a command object for the "create" command

func NewCmdCreateChatServer

func NewCmdCreateChatServer(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateChatServer creates a command object for the "create" command

func NewCmdCreateChatToken

func NewCmdCreateChatToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateChatToken creates a command

func NewCmdCreateCluster

func NewCmdCreateCluster(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "init" action, which installs the dependencies required to run the jenkins-x platform on a kubernetes cluster.

func NewCmdCreateClusterAKS

func NewCmdCreateClusterAKS(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "init" action, which installs the dependencies required to run the jenkins-x platform on a kubernetes cluster.

func NewCmdCreateClusterAWS

func NewCmdCreateClusterAWS(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateClusterAWS creates the command

func NewCmdCreateClusterGKE

func NewCmdCreateClusterGKE(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "init" action, which installs the dependencies required to run the jenkins-x platform on a kubernetes cluster.

func NewCmdCreateClusterMinikube

func NewCmdCreateClusterMinikube(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "init" action, which installs the dependencies required to run the jenkins-x platform on a kubernetes cluster.

func NewCmdCreateClusterMinishift

func NewCmdCreateClusterMinishift(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "init" action, which installs the dependencies required to run the jenkins-x platform on a kubernetes cluster.

func NewCmdCreateDocs

func NewCmdCreateDocs(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateDocs creates a command object for the "create" command

func NewCmdCreateEnv

func NewCmdCreateEnv(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateEnv creates a command object for the "create" command

func NewCmdCreateEtcHosts

func NewCmdCreateEtcHosts(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateEtcHosts creates a command object for the "create" command

func NewCmdCreateGit

func NewCmdCreateGit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateGit creates a command object for the "create" command

func NewCmdCreateGitServer

func NewCmdCreateGitServer(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateGitServer creates a command object for the "create" command

func NewCmdCreateGitToken

func NewCmdCreateGitToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateGitToken creates a command

func NewCmdCreateGitUser

func NewCmdCreateGitUser(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateGitUser creates a command

func NewCmdCreateIssue

func NewCmdCreateIssue(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateIssue creates a command object for the "create" command

func NewCmdCreateJenkins

func NewCmdCreateJenkins(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateJenkins creates a command object for the "create" command

func NewCmdCreateJenkinsUser

func NewCmdCreateJenkinsUser(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateJenkinsUser creates a command

func NewCmdCreateLile

func NewCmdCreateLile(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateLile creates a command object for the "create" command

func NewCmdCreateMicro

func NewCmdCreateMicro(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateMicro creates a command object for the "create" command

func NewCmdCreateQuickstart

func NewCmdCreateQuickstart(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateQuickstart creates a command object for the "create" command

func NewCmdCreateSpring

func NewCmdCreateSpring(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateSpring creates a command object for the "create" command

func NewCmdCreateToken

func NewCmdCreateToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateToken creates a command object for the "create" command

func NewCmdCreateTokenAddon

func NewCmdCreateTokenAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateTokenAddon creates a command

func NewCmdCreateTracker

func NewCmdCreateTracker(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateTracker creates a command object for the "create" command

func NewCmdCreateTrackerServer

func NewCmdCreateTrackerServer(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateTrackerServer creates a command object for the "create" command

func NewCmdCreateTrackerToken

func NewCmdCreateTrackerToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdCreateTrackerToken creates a command

func NewCmdDelete

func NewCmdDelete(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDelete creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdDeleteAddon

func NewCmdDeleteAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteAddon creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdDeleteAddonGitea

func NewCmdDeleteAddonGitea(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteAddonGitea defines the command

func NewCmdDeleteChat

func NewCmdDeleteChat(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteChat creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdDeleteChatServer

func NewCmdDeleteChatServer(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteChatServer defines the command

func NewCmdDeleteChatToken

func NewCmdDeleteChatToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteChatToken defines the command

func NewCmdDeleteContext

func NewCmdDeleteContext(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteContext creates a command object for the "delete repo" command

func NewCmdDeleteEnv

func NewCmdDeleteEnv(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteEnv creates a command object for the "delete repo" command

func NewCmdDeleteGit

func NewCmdDeleteGit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteGit creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdDeleteGitServer

func NewCmdDeleteGitServer(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteGitServer defines the command

func NewCmdDeleteGitToken

func NewCmdDeleteGitToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteGitToken defines the command

func NewCmdDeleteJenkins

func NewCmdDeleteJenkins(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteJenkins creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdDeleteJenkinsUser

func NewCmdDeleteJenkinsUser(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteJenkinsUser defines the command

func NewCmdDeleteRepo

func NewCmdDeleteRepo(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteRepo creates a command object for the "delete repo" command

func NewCmdDeleteToken

func NewCmdDeleteToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteToken creates a command object retrieves one or more resources from a server.

func NewCmdDeleteTokenAddon

func NewCmdDeleteTokenAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteTokenAddon defines the command

func NewCmdDeleteTracker

func NewCmdDeleteTracker(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteTracker creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdDeleteTrackerServer

func NewCmdDeleteTrackerServer(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteTrackerServer defines the command

func NewCmdDeleteTrackerToken

func NewCmdDeleteTrackerToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdDeleteTrackerToken defines the command

func NewCmdEdit

func NewCmdEdit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdEdit creates the edit command

func NewCmdEditAddon

func NewCmdEditAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdEditAddon creates a command object for the "create" command

func NewCmdEditConfig

func NewCmdEditConfig(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdEditConfig creates a command object for the "create" command

func NewCmdEditEnv

func NewCmdEditEnv(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdEditEnv creates a command object for the "create" command

func NewCmdEnvironment

func NewCmdEnvironment(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdGet

func NewCmdGet(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdGetActivity

func NewCmdGetActivity(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetActivity creates the new command for: jx get version

func NewCmdGetAddon

func NewCmdGetAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetAddon creates the command

func NewCmdGetApplications

func NewCmdGetApplications(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetApplications creates the new command for: jx get version

func NewCmdGetBuild

func NewCmdGetBuild(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetBuild creates the command object

func NewCmdGetBuildLogs

func NewCmdGetBuildLogs(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetBuildLogs creates the command

func NewCmdGetChat

func NewCmdGetChat(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetChat creates the command

func NewCmdGetConfig

func NewCmdGetConfig(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetConfig creates the command

func NewCmdGetEnv

func NewCmdGetEnv(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetEnv creates the new command for: jx get env

func NewCmdGetGit

func NewCmdGetGit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetGit creates the command

func NewCmdGetIssues

func NewCmdGetIssues(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetIssues creates the command

func NewCmdGetPipeline

func NewCmdGetPipeline(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetPipeline creates the command

func NewCmdGetToken

func NewCmdGetToken(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetToken creates the command

func NewCmdGetTokenAddon

func NewCmdGetTokenAddon(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetTokenAddon creates the command

func NewCmdGetTracker

func NewCmdGetTracker(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetTracker creates the command

func NewCmdGetURL

func NewCmdGetURL(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGetURL creates the command

func NewCmdImport

func NewCmdImport(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdInit

func NewCmdInit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdInit creates a command object for the generic "init" action, which primes a kubernetes cluster so it's ready for jenkins x to be installed

func NewCmdInstall

func NewCmdInstall(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdGet creates a command object for the generic "install" action, which installs the jenkins-x platform on a kubernetes cluster.

func NewCmdLogs

func NewCmdLogs(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdMetrics

func NewCmdMetrics(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdNamespace

func NewCmdNamespace(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdOpen

func NewCmdOpen(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdPreview

func NewCmdPreview(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdPreview creates a command object for the "create" command

func NewCmdPromote

func NewCmdPromote(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdPromote creates the new command for: jx get prompt

func NewCmdPrompt

func NewCmdPrompt(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdPrompt creates the new command for: jx get prompt

func NewCmdRsh

func NewCmdRsh(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdShell

func NewCmdShell(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStart

func NewCmdStart(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStart creates a command object for the generic "get" action, which retrieves one or more resources from a server.

func NewCmdStartPipeline

func NewCmdStartPipeline(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStartPipeline creates the command

func NewCmdStatus

func NewCmdStatus(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStep

func NewCmdStep(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStep Steps a command object for the "step" command

func NewCmdStepBlog

func NewCmdStepBlog(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStepBlog Creates a new Command object

func NewCmdStepChangelog

func NewCmdStepChangelog(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStepGit

func NewCmdStepGit(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStepGit Steps a command object for the "step" command

func NewCmdStepGitCredentials

func NewCmdStepGitCredentials(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStepNexus

func NewCmdStepNexus(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStepNexus Steps a command object for the "step" command

func NewCmdStepNexusDrop

func NewCmdStepNexusDrop(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStepNexusRelease

func NewCmdStepNexusRelease(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStepPR

func NewCmdStepPR(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStep Steps a command object for the "step" command

func NewCmdStepPRComment

func NewCmdStepPRComment(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStep Steps a command object for the "step" command

func NewCmdStepTag

func NewCmdStepTag(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdStepValidate

func NewCmdStepValidate(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdStepValidate Creates a new Command object

func NewCmdUninstall

func NewCmdUninstall(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewCmdUpgrade

func NewCmdUpgrade(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdUpgrade creates the command

func NewCmdUpgradeCLI

func NewCmdUpgradeCLI(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdUpgradeCLI defines the command

func NewCmdUpgradePlatform

func NewCmdUpgradePlatform(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

NewCmdUpgradePlatform defines the command

func NewCmdVersion

func NewCmdVersion(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command

func NewJXCommand

func NewJXCommand(f cmdutil.Factory, in io.Reader, out, err io.Writer) *cobra.Command

NewJXCommand creates the `jx` command and its nested children.

Types

type CDXOptions

type CDXOptions struct {
	CommonOptions

	OnlyViewURL bool
}

func (*CDXOptions) Open

func (o *CDXOptions) Open(name string, label string) error

func (*CDXOptions) OpenURL

func (o *CDXOptions) OpenURL(url string, label string) error

func (*CDXOptions) Run

func (o *CDXOptions) Run() error

type CommonOptions

type CommonOptions struct {
	Factory   cmdutil.Factory
	Out       io.Writer
	Err       io.Writer
	Cmd       *cobra.Command
	Args      []string
	BatchMode bool
	Verbose   bool
	Headless  bool
	NoBrew    bool
	// contains filtered or unexported fields
}

CommonOptions contains common options and helper methods

func (*CommonOptions) CreateAddonAuthConfigService

func (o *CommonOptions) CreateAddonAuthConfigService() (auth.AuthConfigService, error)

func (*CommonOptions) CreateChatAuthConfigService

func (o *CommonOptions) CreateChatAuthConfigService() (auth.AuthConfigService, error)

func (*CommonOptions) CreateIssueTrackerAuthConfigService

func (o *CommonOptions) CreateIssueTrackerAuthConfigService() (auth.AuthConfigService, error)

func (*CommonOptions) CreateTable

func (c *CommonOptions) CreateTable() table.Table

func (*CommonOptions) Debugf

func (c *CommonOptions) Debugf(format string, a ...interface{}) (n int, err error)

Debugf outputs the given text to the console if verbose mode is enabled

func (*CommonOptions) FindHelmChart

func (*CommonOptions) FindHelmChart() (string, error)

func (*CommonOptions) GetCloudProvider

func (o *CommonOptions) GetCloudProvider(p string) (string, error)

func (*CommonOptions) GetDomain

func (o *CommonOptions) GetDomain(client *kubernetes.Clientset, domain string, provider string, ingressNamespace string, ingressService string) (string, error)

func (*CommonOptions) GitServerHostURLKind

func (o *CommonOptions) GitServerHostURLKind(hostURL string) (string, error)

func (*CommonOptions) GitServerKind

func (o *CommonOptions) GitServerKind(gitInfo *gits.GitRepositoryInfo) (string, error)

func (*CommonOptions) ImportProject

func (o *CommonOptions) ImportProject(gitURL string, dir string, jenkinsfile string, branchPattern, credentials string, failIfExists bool, gitProvider gits.GitProvider, authConfigSvc auth.AuthConfigService, isEnvironment bool, batchMode bool) error

ImportProject imports a MultiBranchProject into Jenkins for the given git URL

func (*CommonOptions) JXClient

func (o *CommonOptions) JXClient() (*versioned.Clientset, string, error)

func (*CommonOptions) JXClientAndDevNamespace

func (o *CommonOptions) JXClientAndDevNamespace() (*versioned.Clientset, string, error)

func (*CommonOptions) JenkinsClient

func (o *CommonOptions) JenkinsClient() (*gojenkins.Jenkins, error)

func (*CommonOptions) KubeClient

func (o *CommonOptions) KubeClient() (*kubernetes.Clientset, string, error)

func (*CommonOptions) Printf

func (c *CommonOptions) Printf(format string, a ...interface{}) (n int, err error)

Printf outputs the given text to the console

func (*CommonOptions) Run

func (o *CommonOptions) Run() error

func (*CommonOptions) Stdout

func (c *CommonOptions) Stdout() io.Writer

func (*CommonOptions) TeamAndEnvironmentNames

func (o *CommonOptions) TeamAndEnvironmentNames() (string, string, error)

type ConsoleOptions

type ConsoleOptions struct {
	GetURLOptions

	OnlyViewURL bool
}

func (*ConsoleOptions) Open

func (o *ConsoleOptions) Open(name string, label string) error

func (*ConsoleOptions) Run

func (o *ConsoleOptions) Run() error

type ContextOptions

type ContextOptions struct {
	CommonOptions
}

func (*ContextOptions) PickContext

func (o *ContextOptions) PickContext(names []string, defaultValue string) (string, error)

func (*ContextOptions) Run

func (o *ContextOptions) Run() error

type CreateAddonAmbassadorOptions

type CreateAddonAmbassadorOptions struct {
	CreateAddonOptions

	Chart string
}

CreateAddonAmbassadorOptions the options for the create spring command

func (*CreateAddonAmbassadorOptions) Run

Run implements the command

type CreateAddonAnchoreOptions

type CreateAddonAnchoreOptions struct {
	CreateAddonOptions

	Chart     string
	Password  string
	ConfigDir string
}

CreateAddonAnchoreOptions the options for the create spring command

func (*CreateAddonAnchoreOptions) Run

Run implements the command

type CreateAddonCDXOptions

type CreateAddonCDXOptions struct {
	CreateAddonOptions
}

CreateAddonCDXOptions the options for the create spring command

func (*CreateAddonCDXOptions) Run

func (o *CreateAddonCDXOptions) Run() error

Run implements the command

type CreateAddonGiteaOptions

type CreateAddonGiteaOptions struct {
	CreateAddonOptions

	Chart    string
	Username string
	Password string
	Email    string
	IsAdmin  bool
	NoUser   bool
	NoToken  bool
}

CreateAddonGiteaOptions the options for the create spring command

func (*CreateAddonGiteaOptions) Run

func (o *CreateAddonGiteaOptions) Run() error

Run implements the command

type CreateAddonKubelessOptions

type CreateAddonKubelessOptions struct {
	CreateAddonOptions

	Chart string
}

CreateAddonKubelessOptions the options for the create spring command

func (*CreateAddonKubelessOptions) Run

Run implements the command

type CreateAddonOptions

type CreateAddonOptions struct {
	CreateOptions

	Namespace   string
	Version     string
	ReleaseName string
	HelmUpdate  bool
}

CreateAddonOptions the options for the create spring command

func (*CreateAddonOptions) CreateAddon

func (o *CreateAddonOptions) CreateAddon(arg string) error

func (*CreateAddonOptions) Run

func (o *CreateAddonOptions) Run() error

Run implements this command

type CreateArchetypeOptions

type CreateArchetypeOptions struct {
	CreateProjectOptions

	ArchetypeCatalogURL string

	Filter      maven.ArchetypeFilter
	PickVersion bool
	Interactive bool

	Form maven.ArchetypeForm
}

CreateArchetypeOptions the options for the create spring command

func (*CreateArchetypeOptions) Run

func (o *CreateArchetypeOptions) Run() error

Run implements the generic Create command

type CreateChatOptions

type CreateChatOptions struct {
	CreateOptions
}

CreateChatOptions the options for the create spring command

func (*CreateChatOptions) Run

func (o *CreateChatOptions) Run() error

Run implements this command

type CreateChatServerOptions

type CreateChatServerOptions struct {
	CreateOptions

	Name string
}

CreateChatServerOptions the options for the create spring command

func (*CreateChatServerOptions) Run

func (o *CreateChatServerOptions) Run() error

Run implements the command

type CreateChatTokenOptions

type CreateChatTokenOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Username    string
	Password    string
	ApiToken    string
	Timeout     string
}

CreateChatTokenOptions the command line options for the command

func (*CreateChatTokenOptions) Run

func (o *CreateChatTokenOptions) Run() error

Run implements the command

type CreateClusterAKSFlags

type CreateClusterAKSFlags struct {
	UserName        string
	Password        string
	ClusterName     string
	ResourceName    string
	Location        string
	NodeCount       string
	KubeVersion     string
	PathToPublicKey string
}

type CreateClusterAKSOptions

type CreateClusterAKSOptions struct {
	CreateClusterOptions

	Flags CreateClusterAKSFlags
}

CreateClusterOptions the flags for running create cluster

func (*CreateClusterAKSOptions) Run

func (o *CreateClusterAKSOptions) Run() error

type CreateClusterAWSFlags

type CreateClusterAWSFlags struct {
	ClusterName            string
	NodeCount              string
	KubeVersion            string
	Zones                  string
	InsecureDockerRegistry string
	UseRBAC                bool
	TerraformDirectory     string
}

type CreateClusterAWSOptions

type CreateClusterAWSOptions struct {
	CreateClusterOptions

	Flags CreateClusterAWSFlags
}

CreateClusterAWSOptions contains the CLI flags

func (*CreateClusterAWSOptions) Run

func (o *CreateClusterAWSOptions) Run() error

Run runs the command

type CreateClusterFlags

type CreateClusterFlags struct {
}

type CreateClusterGKEFlags

type CreateClusterGKEFlags struct {
	AutoUpgrade     bool
	ClusterName     string
	ClusterIpv4Cidr string
	ClusterVersion  string
	DiskSize        string
	ImageType       string
	MachineType     string
	MinNumOfNodes   string
	MaxNumOfNodes   string
	ProjectId       string
	SkipLogin       bool
	Zone            string
	Namespace       string
	Labels          string
}

type CreateClusterGKEOptions

type CreateClusterGKEOptions struct {
	CreateClusterOptions

	Flags CreateClusterGKEFlags
}

CreateClusterOptions the flags for running create cluster

func (*CreateClusterGKEOptions) Run

func (o *CreateClusterGKEOptions) Run() error

type CreateClusterMinikubeFlags

type CreateClusterMinikubeFlags struct {
	Memory              string
	CPU                 string
	Driver              string
	HyperVVirtualSwitch string
	Namespace           string
	ClusterVersion      string
}

type CreateClusterMinikubeOptions

type CreateClusterMinikubeOptions struct {
	CreateClusterOptions

	Flags    CreateClusterMinikubeFlags
	Provider KubernetesProvider
}

CreateClusterOptions the flags for running create cluster

func (*CreateClusterMinikubeOptions) Run

type CreateClusterMinishiftFlags

type CreateClusterMinishiftFlags struct {
	Memory              string
	CPU                 string
	Driver              string
	HyperVVirtualSwitch string
	Namespace           string
}

type CreateClusterMinishiftOptions

type CreateClusterMinishiftOptions struct {
	CreateClusterOptions

	Flags    CreateClusterMinishiftFlags
	Provider KubernetesProvider
}

CreateClusterMinishiftOptions the flags for running create cluster

func (*CreateClusterMinishiftOptions) Run

type CreateClusterOptions

type CreateClusterOptions struct {
	CreateOptions
	InstallOptions InstallOptions
	Flags          InitFlags
	Provider       string
}

CreateClusterOptions the flags for running create cluster

func (*CreateClusterOptions) Run

func (o *CreateClusterOptions) Run() error

type CreateDocsOptions

type CreateDocsOptions struct {
	CreateOptions

	Dir string
}

CreateDocsOptions the options for the create spring command

func (*CreateDocsOptions) Run

func (o *CreateDocsOptions) Run() error

Run implements the command

type CreateEnvOptions

type CreateEnvOptions struct {
	CreateOptions

	Options                v1.Environment
	HelmValuesConfig       config.HelmValuesConfig
	PromotionStrategy      string
	NoGitOps               bool
	ForkEnvironmentGitRepo string
	EnvJobCredentials      string
	GitRepositoryOptions   gits.GitRepositoryOptions
	Prefix                 string
	BranchPattern          string
}

CreateEnvOptions the options for the create spring command

func (*CreateEnvOptions) Run

func (o *CreateEnvOptions) Run() error

Run implements the command

type CreateEtcHostsOptions

type CreateEtcHostsOptions struct {
	CreateOptions

	Name string
	IP   string
}

CreateEtcHostsOptions the options for the create spring command

func (*CreateEtcHostsOptions) Run

func (o *CreateEtcHostsOptions) Run() error

Run implements the command

type CreateGitOptions

type CreateGitOptions struct {
	CreateOptions
}

CreateGitOptions the options for the create spring command

func (*CreateGitOptions) Run

func (o *CreateGitOptions) Run() error

Run implements this command

type CreateGitServerOptions

type CreateGitServerOptions struct {
	CreateOptions

	Name string
}

CreateGitServerOptions the options for the create spring command

func (*CreateGitServerOptions) Run

func (o *CreateGitServerOptions) Run() error

Run implements the command

type CreateGitTokenOptions

type CreateGitTokenOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Username    string
	Password    string
	ApiToken    string
	Timeout     string
}

CreateGitTokenOptions the command line options for the command

func (*CreateGitTokenOptions) Run

func (o *CreateGitTokenOptions) Run() error

Run implements the command

type CreateGitUserOptions

type CreateGitUserOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Username    string
	Password    string
	ApiToken    string
	Email       string
	IsAdmin     bool
}

CreateGitUserOptions the command line options for the command

func (*CreateGitUserOptions) Run

func (o *CreateGitUserOptions) Run() error

Run implements the command

type CreateIssueOptions

type CreateIssueOptions struct {
	CreateOptions

	Dir    string
	Title  string
	Body   string
	Labels []string
}

CreateIssueOptions the options for the create spring command

func (*CreateIssueOptions) FindGitInfo

func (o *CreateIssueOptions) FindGitInfo(dir string) (*gits.GitRepositoryInfo, error)

func (*CreateIssueOptions) PopulateIssue

func (o *CreateIssueOptions) PopulateIssue(issue *gits.GitIssue) error

func (*CreateIssueOptions) Run

func (o *CreateIssueOptions) Run() error

Run implements the command

type CreateJenkinsOptions

type CreateJenkinsOptions struct {
	CreateOptions
}

CreateJenkinsOptions the options for the create spring command

func (*CreateJenkinsOptions) Run

func (o *CreateJenkinsOptions) Run() error

Run implements this command

type CreateJenkinsUserOptions

type CreateJenkinsUserOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Username    string
	Password    string
	ApiToken    string
	Timeout     string
	UseBrowser  bool
}

CreateJenkinsUserOptions the command line options for the command

func (*CreateJenkinsUserOptions) Run

Run implements the command

type CreateLileOptions

type CreateLileOptions struct {
	CreateProjectOptions
	OutDir string
}

CreateLileOptions the options for the create spring command

func (CreateLileOptions) GenerateLile

func (o CreateLileOptions) GenerateLile(dir string) error

GenerateLile creates a fresh lile project by running lile on local shell

func (*CreateLileOptions) Run

func (o *CreateLileOptions) Run() error

Run implements the command

type CreateMicroOptions

type CreateMicroOptions struct {
	CreateProjectOptions
}

CreateMicroOptions the options for the create spring command

func (CreateMicroOptions) GenerateMicro

func (o CreateMicroOptions) GenerateMicro(dir string) error

GenerateMicro creates a fresh micro project by running micro on local shell

func (*CreateMicroOptions) Run

func (o *CreateMicroOptions) Run() error

Run implements the command

type CreateOptions

type CreateOptions struct {
	CommonOptions

	DisableImport bool
	OutDir        string
}

CreateOptions contains the command line options

func (*CreateOptions) Run

func (o *CreateOptions) Run() error

Run implements this command

type CreateProjectOptions

type CreateProjectOptions struct {
	ImportOptions

	DisableImport bool
	OutDir        string
}

CreateProjectOptions contains the command line options

func (*CreateProjectOptions) ImportCreatedProject

func (o *CreateProjectOptions) ImportCreatedProject(outDir string) error

DoImport imports the project created at the given directory

type CreateQuickstartOptions

type CreateQuickstartOptions struct {
	CreateProjectOptions

	GitHubOrganisations []string
	Filter              quickstarts.QuickstartFilter
	GitProvider         gits.GitProvider
	GitHost             string
}

CreateQuickstartOptions the options for the create spring command

func (*CreateQuickstartOptions) LoadQuickstarts

func (o *CreateQuickstartOptions) LoadQuickstarts() (*quickstarts.QuickstartModel, error)

func (*CreateQuickstartOptions) Run

func (o *CreateQuickstartOptions) Run() error

Run implements the generic Create command

type CreateSpringOptions

type CreateSpringOptions struct {
	CreateProjectOptions

	Advanced   bool
	SpringForm spring.SpringBootForm
}

CreateSpringOptions the options for the create spring command

func (*CreateSpringOptions) Run

func (o *CreateSpringOptions) Run() error

Run implements the command

type CreateTokenAddonOptions

type CreateTokenAddonOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Username    string
	Password    string
	ApiToken    string
	Timeout     string
	Kind        string
}

CreateTokenAddonOptions the command line options for the command

func (*CreateTokenAddonOptions) Run

func (o *CreateTokenAddonOptions) Run() error

Run implements the command

type CreateTokenOptions

type CreateTokenOptions struct {
	CreateOptions
}

CreateTokenOptions the options for the create spring command

func (*CreateTokenOptions) Run

func (o *CreateTokenOptions) Run() error

Run implements this command

type CreateTrackerOptions

type CreateTrackerOptions struct {
	CreateOptions
}

CreateTrackerOptions the options for the create spring command

func (*CreateTrackerOptions) Run

func (o *CreateTrackerOptions) Run() error

Run implements this command

type CreateTrackerServerOptions

type CreateTrackerServerOptions struct {
	CreateOptions

	Name string
}

CreateTrackerServerOptions the options for the create spring command

func (*CreateTrackerServerOptions) Run

Run implements the command

type CreateTrackerTokenOptions

type CreateTrackerTokenOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Username    string
	Password    string
	ApiToken    string
	Timeout     string
}

CreateTrackerTokenOptions the command line options for the command

func (*CreateTrackerTokenOptions) Run

Run implements the command

type DeleteAddonGiteaOptions

type DeleteAddonGiteaOptions struct {
	DeleteAddonOptions

	ReleaseName string
}

DeleteAddonGiteaOptions the options for the create spring command

func (*DeleteAddonGiteaOptions) Run

func (o *DeleteAddonGiteaOptions) Run() error

Run implements the command

type DeleteAddonOptions

type DeleteAddonOptions struct {
	CommonOptions

	Purge bool
}

DeleteAddonOptions are the flags for delete commands

func (*DeleteAddonOptions) Run

func (o *DeleteAddonOptions) Run() error

Run implements this command

type DeleteChatOptions

type DeleteChatOptions struct {
	CommonOptions
}

DeleteChatOptions are the flags for delete commands

func (*DeleteChatOptions) Run

func (o *DeleteChatOptions) Run() error

Run implements this command

type DeleteChatServerOptions

type DeleteChatServerOptions struct {
	CommonOptions

	IgnoreMissingServer bool
}

DeleteChatServerOptions the options for the create spring command

func (*DeleteChatServerOptions) Run

func (o *DeleteChatServerOptions) Run() error

Run implements the command

type DeleteChatTokenOptions

type DeleteChatTokenOptions struct {
	CreateOptions

	ServerFlags ServerFlags
}

DeleteChatTokenOptions the options for the create spring command

func (*DeleteChatTokenOptions) Run

func (o *DeleteChatTokenOptions) Run() error

Run implements the command

type DeleteContextOptions

type DeleteContextOptions struct {
	CreateOptions

	SelectAll bool
}

DeleteContextOptions the options for the create spring command

func (*DeleteContextOptions) Run

func (o *DeleteContextOptions) Run() error

Run implements the command

type DeleteEnvOptions

type DeleteEnvOptions struct {
	CreateOptions

	DeleteNamespace bool
}

DeleteEnvOptions the options for the create spring command

func (*DeleteEnvOptions) Run

func (o *DeleteEnvOptions) Run() error

Run implements the command

type DeleteGitOptions

type DeleteGitOptions struct {
	CommonOptions
}

DeleteGitOptions are the flags for delete commands

func (*DeleteGitOptions) Run

func (o *DeleteGitOptions) Run() error

Run implements this command

type DeleteGitServerOptions

type DeleteGitServerOptions struct {
	CommonOptions

	IgnoreMissingServer bool
}

DeleteGitServerOptions the options for the create spring command

func (*DeleteGitServerOptions) Run

func (o *DeleteGitServerOptions) Run() error

Run implements the command

type DeleteGitTokenOptions

type DeleteGitTokenOptions struct {
	CreateOptions

	ServerFlags ServerFlags
}

DeleteGitTokenOptions the options for the create spring command

func (*DeleteGitTokenOptions) Run

func (o *DeleteGitTokenOptions) Run() error

Run implements the command

type DeleteJenkinsOptions

type DeleteJenkinsOptions struct {
	CommonOptions
}

DeleteJenkinsOptions are the flags for delete commands

func (*DeleteJenkinsOptions) Run

func (o *DeleteJenkinsOptions) Run() error

Run implements this command

type DeleteJenkinsUserOptions

type DeleteJenkinsUserOptions struct {
	CreateOptions

	ServerFlags ServerFlags
}

DeleteJenkinsUserOptions the options for the create spring command

func (*DeleteJenkinsUserOptions) Run

Run implements the command

type DeleteOptions

type DeleteOptions struct {
	CommonOptions
}

DeleteOptions are the flags for delete commands

func (*DeleteOptions) Run

func (o *DeleteOptions) Run() error

Run implements this command

type DeleteRepoOptions

type DeleteRepoOptions struct {
	CreateOptions

	Organisation string
	Repositories []string
	GitHost      string
	GitHub       bool
	SelectAll    bool
	SelectFilter string
}

DeleteRepoOptions the options for the create spring command

func (*DeleteRepoOptions) Run

func (o *DeleteRepoOptions) Run() error

Run implements the command

type DeleteTokenAddonOptions

type DeleteTokenAddonOptions struct {
	CreateOptions

	ServerFlags ServerFlags
	Kind        string
}

DeleteTokenAddonOptions the options for the create spring command

func (*DeleteTokenAddonOptions) Run

func (o *DeleteTokenAddonOptions) Run() error

Run implements the command

type DeleteTokenOptions

type DeleteTokenOptions struct {
	CommonOptions
}

DeleteTokenOptions are the flags for delete commands

func (*DeleteTokenOptions) Run

func (o *DeleteTokenOptions) Run() error

Run implements this command

type DeleteTrackerOptions

type DeleteTrackerOptions struct {
	CommonOptions
}

DeleteTrackerOptions are the flags for delete commands

func (*DeleteTrackerOptions) Run

func (o *DeleteTrackerOptions) Run() error

Run implements this command

type DeleteTrackerServerOptions

type DeleteTrackerServerOptions struct {
	CommonOptions

	IgnoreMissingServer bool
}

DeleteTrackerServerOptions the options for the create spring command

func (*DeleteTrackerServerOptions) Run

Run implements the command

type DeleteTrackerTokenOptions

type DeleteTrackerTokenOptions struct {
	CreateOptions

	ServerFlags ServerFlags
}

DeleteTrackerTokenOptions the options for the create spring command

func (*DeleteTrackerTokenOptions) Run

Run implements the command

type EditAddonOptions

type EditAddonOptions struct {
	EditOptions

	Name    string
	Enabled string

	IssuesAuthConfigSvc auth.AuthConfigService
}

EditAddonOptions the options for the create spring command

func (*EditAddonOptions) Run

func (o *EditAddonOptions) Run() error

Run implements the command

type EditConfigOptions

type EditConfigOptions struct {
	EditOptions

	Dir  string
	Kind string

	IssuesAuthConfigSvc auth.AuthConfigService
	ChatAuthConfigSvc   auth.AuthConfigService
}

EditConfigOptions the options for the create spring command

func (*EditConfigOptions) EditChat

func (o *EditConfigOptions) EditChat(pc *config.ProjectConfig) (bool, error)

func (*EditConfigOptions) EditIssueTracker

func (o *EditConfigOptions) EditIssueTracker(pc *config.ProjectConfig) (bool, error)

func (*EditConfigOptions) Run

func (o *EditConfigOptions) Run() error

Run implements the command

type EditEnvOptions

type EditEnvOptions struct {
	CreateOptions

	Options                v1.Environment
	HelmValuesConfig       config.HelmValuesConfig
	PromotionStrategy      string
	NoGitOps               bool
	ForkEnvironmentGitRepo string
	EnvJobCredentials      string
	GitRepositoryOptions   gits.GitRepositoryOptions
	Prefix                 string
	BranchPattern          string
}

EditEnvOptions the options for the create spring command

func (*EditEnvOptions) Run

func (o *EditEnvOptions) Run() error

Run implements the command

type EditOptions

type EditOptions struct {
	CommonOptions
}

EditOptions contains the CLI options

func (*EditOptions) Run

func (o *EditOptions) Run() error

Run implements this command

type EnvApps

type EnvApps struct {
	Environment v1.Environment
	Apps        map[string]v1beta1.Deployment
}

type EnvironmentOptions

type EnvironmentOptions struct {
	CommonOptions
}

func (*EnvironmentOptions) PickNamespace

func (o *EnvironmentOptions) PickNamespace(client *kubernetes.Clientset, defaultNamespace string) (string, error)

func (*EnvironmentOptions) Run

func (o *EnvironmentOptions) Run() error

type GetActivityOptions

type GetActivityOptions struct {
	CommonOptions

	Filter      string
	BuildNumber string
	Watch       bool
}

GetActivityOptions containers the CLI options

func (*GetActivityOptions) Run

func (o *GetActivityOptions) Run() error

Run implements this command

func (*GetActivityOptions) WatchActivities

func (o *GetActivityOptions) WatchActivities(table *tbl.Table, jxClient *versioned.Clientset, ns string) error

type GetAddonOptions

type GetAddonOptions struct {
	GetOptions
}

GetAddonOptions the command line options

func (*GetAddonOptions) Run

func (o *GetAddonOptions) Run() error

Run implements this command

type GetApplicationsOptions

type GetApplicationsOptions struct {
	CommonOptions

	Namespace   string
	Environment string
	HideUrl     bool
	HidePod     bool
}

GetApplicationsOptions containers the CLI options

func (*GetApplicationsOptions) Run

func (o *GetApplicationsOptions) Run() error

Run implements this command

type GetBuildLogsOptions

type GetBuildLogsOptions struct {
	GetOptions

	Tail   bool
	Filter string
}

GetBuildLogsOptions the command line options

func (*GetBuildLogsOptions) Run

func (o *GetBuildLogsOptions) Run() error

Run implements this command

type GetBuildOptions

type GetBuildOptions struct {
	CommonOptions

	Output string
}

GetBuildOptions the command line options

func (*GetBuildOptions) Run

func (o *GetBuildOptions) Run() error

Run implements this command

type GetChatOptions

type GetChatOptions struct {
	GetOptions

	Kind string
	Dir  string
}

GetChatOptions the command line options

func (*GetChatOptions) Run

func (o *GetChatOptions) Run() error

Run implements this command

type GetConfigOptions

type GetConfigOptions struct {
	GetOptions

	Dir string
}

GetConfigOptions the command line options

func (*GetConfigOptions) Run

func (o *GetConfigOptions) Run() error

Run implements this command

type GetEnvOptions

type GetEnvOptions struct {
	GetOptions

	PromotionStrategy string
}

GetEnvOptions containers the CLI options

func (*GetEnvOptions) Run

func (o *GetEnvOptions) Run() error

Run implements this command

type GetGitOptions

type GetGitOptions struct {
	GetOptions
}

GetGitOptions the command line options

func (*GetGitOptions) Run

func (o *GetGitOptions) Run() error

Run implements this command

type GetIssuesOptions

type GetIssuesOptions struct {
	GetOptions
	Dir    string
	Filter string
}

GetIssuesOptions contains the command line options

func (*GetIssuesOptions) Run

func (o *GetIssuesOptions) Run() error

Run implements this command

type GetOptions

type GetOptions struct {
	CommonOptions

	Output string
}

GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()

func (*GetOptions) Run

func (o *GetOptions) Run() error

Run implements this command

type GetPipelineOptions

type GetPipelineOptions struct {
	GetOptions
}

GetPipelineOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()

func (*GetPipelineOptions) Run

func (o *GetPipelineOptions) Run() error

Run implements this command

type GetTokenAddonOptions

type GetTokenAddonOptions struct {
	GetTokenOptions
}

GetTokenAddonOptions the command line options

func (*GetTokenAddonOptions) Run

func (o *GetTokenAddonOptions) Run() error

Run implements this command

type GetTokenOptions

type GetTokenOptions struct {
	GetOptions

	Kind string
	Name string
}

GetTokenOptions the command line options

func (*GetTokenOptions) Run

func (o *GetTokenOptions) Run() error

Run implements this command

type GetTrackerOptions

type GetTrackerOptions struct {
	GetOptions

	Kind string
	Dir  string
}

GetTrackerOptions the command line options

func (*GetTrackerOptions) Run

func (o *GetTrackerOptions) Run() error

Run implements this command

type GetURLOptions

type GetURLOptions struct {
	GetOptions

	Namespace   string
	Environment string
}

GetURLOptions the command line options

func (*GetURLOptions) Run

func (o *GetURLOptions) Run() error

Run implements this command

type ImportOptions

type ImportOptions struct {
	CommonOptions

	RepoURL string

	Dir                     string
	Organisation            string
	Repository              string
	Credentials             string
	AppName                 string
	GitHub                  bool
	DryRun                  bool
	SelectAll               bool
	DisableDraft            bool
	DisableJenkinsfileCheck bool
	SelectFilter            string
	Jenkinsfile             string
	BranchPattern           string
	GitRepositoryOptions    gits.GitRepositoryOptions
	ImportGitCommitMessage  string
	ListDraftPacks          bool
	DraftPack               string

	DisableDotGitSearch bool
	InitialisedGit      bool
	Jenkins             *gojenkins.Jenkins
	GitConfDir          string
	GitServer           *auth.AuthServer
	GitUserAuth         *auth.UserAuth
	GitProvider         gits.GitProvider
}

func (*ImportOptions) CloneRepository

func (o *ImportOptions) CloneRepository() error

func (*ImportOptions) CreateNewRemoteRepository

func (o *ImportOptions) CreateNewRemoteRepository() error

func (*ImportOptions) DefaultGitIgnore

func (o *ImportOptions) DefaultGitIgnore() error

DiscoverGit checks if there is a git clone or prompts the user to import it

func (*ImportOptions) DiscoverGit

func (o *ImportOptions) DiscoverGit() error

DiscoverGit checks if there is a git clone or prompts the user to import it

func (*ImportOptions) DiscoverRemoteGitURL

func (o *ImportOptions) DiscoverRemoteGitURL() error

DiscoverRemoteGitURL finds the git url by looking in the directory and looking for a .git/config file

func (*ImportOptions) DoImport

func (o *ImportOptions) DoImport() error

func (*ImportOptions) DraftCreate

func (o *ImportOptions) DraftCreate() error

func (*ImportOptions) ImportProjectsFromGitHub

func (o *ImportOptions) ImportProjectsFromGitHub() error

func (*ImportOptions) Run

func (o *ImportOptions) Run() error

type InitFlags

type InitFlags struct {
	Domain                     string
	Provider                   string
	Namespace                  string
	Username                   string
	UserClusterRole            string
	TillerClusterRole          string
	IngressClusterRole         string
	TillerNamespace            string
	IngressNamespace           string
	IngressService             string
	IngressDeployment          string
	DraftClient                bool
	HelmClient                 bool
	RecreateExistingDraftRepos bool
	GlobalTiller               bool
	SkipIngress                bool
	SkipTiller                 bool
}

type InitOptions

type InitOptions struct {
	CommonOptions
	Client clientset.Clientset
	Flags  InitFlags
}

InitOptions the flags for running init

func (*InitOptions) Run

func (o *InitOptions) Run() error

type InstallFlags

type InstallFlags struct {
	Domain                   string
	Provider                 string
	CloudEnvRepository       string
	LocalHelmRepoName        string
	Namespace                string
	NoDefaultEnvironments    bool
	HelmTLS                  bool
	DefaultEnvironmentPrefix string
	LocalCloudEnvironment    bool
	Timeout                  string
	RegisterLocalHelmRepo    bool
	CleanupTempFiles         bool
	EnvironmentGitOwner      string
}

type InstallOptions

GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()

func (*InstallOptions) Run

func (options *InstallOptions) Run() error

Run implements this command

type KubernetesProvider

type KubernetesProvider string

type LogsOptions

type LogsOptions struct {
	CommonOptions

	Container string
	Namespace string
	Filter    string
}

func (*LogsOptions) Run

func (o *LogsOptions) Run() error

type MetricsOptions

type MetricsOptions struct {
	CommonOptions

	Namespace string
	Filter    string
	Duration  string
	Selector  string
	Metric    string
}

func (*MetricsOptions) Run

func (o *MetricsOptions) Run() error

type NamespaceOptions

type NamespaceOptions struct {
	CommonOptions
}

func (*NamespaceOptions) PickNamespace

func (o *NamespaceOptions) PickNamespace(names []string, defaultNamespace string) (string, error)

func (*NamespaceOptions) Run

func (o *NamespaceOptions) Run() error

type OpenOptions

type OpenOptions struct {
	ConsoleOptions
}

func (*OpenOptions) Run

func (o *OpenOptions) Run() error

type PreviewOptions

type PreviewOptions struct {
	PromoteOptions

	Name           string
	Label          string
	Namespace      string
	Cluster        string
	PullRequestURL string
	PullRequest    string
	SourceURL      string
	SourceRef      string
	Dir            string
	GitConfDir     string
	GitProvider    gits.GitProvider

	HelmValuesConfig config.HelmValuesConfig
}

PreviewOptions the options for viewing running PRs

func (*PreviewOptions) Run

func (o *PreviewOptions) Run() error

Run implements the command

type PromoteOptions

type PromoteOptions struct {
	CommonOptions

	Namespace           string
	Environment         string
	Application         string
	Version             string
	ReleaseName         string
	LocalHelmRepoName   string
	HelmRepositoryURL   string
	NoHelmUpdate        bool
	AllAutomatic        bool
	NoMergePullRequest  bool
	Timeout             string
	PullRequestPollTime string
	TriggerPipelineTime string

	// calculated fields
	TimeoutDuration         *time.Duration
	PullRequestPollDuration *time.Duration
	TriggerPipelineDuration *time.Duration
	Activities              typev1.PipelineActivityInterface
	GitInfo                 *gits.GitRepositoryInfo

	PullRequestTriggerStatus triggerPipelineStatus
	ReleaseTriggerStatus     triggerPipelineStatus
	// contains filtered or unexported fields
}

PromoteOptions containers the CLI options

func (*PromoteOptions) DiscoverAppName

func (o *PromoteOptions) DiscoverAppName() (string, error)

func (*PromoteOptions) GetTargetNamespace

func (o *PromoteOptions) GetTargetNamespace(ns string, env string) (string, *v1.Environment, error)

func (*PromoteOptions) Promote

func (o *PromoteOptions) Promote(targetNS string, env *v1.Environment, warnIfAuto bool) (*ReleaseInfo, error)

func (*PromoteOptions) PromoteAllAutomatic

func (o *PromoteOptions) PromoteAllAutomatic() error

func (*PromoteOptions) PromoteViaPullRequest

func (o *PromoteOptions) PromoteViaPullRequest(env *v1.Environment, releaseInfo *ReleaseInfo) error

func (*PromoteOptions) Run

func (o *PromoteOptions) Run() error

Run implements this command

func (*PromoteOptions) WaitForPromotion

func (o *PromoteOptions) WaitForPromotion(ns string, env *v1.Environment, releaseInfo *ReleaseInfo) error

type PromptOptions

type PromptOptions struct {
	CommonOptions

	NoLabel  bool
	ShowIcon bool

	Prefix    string
	Label     string
	Separator string
	Divider   string
	Suffix    string

	LabelColor     []string
	NamespaceColor []string
	ContextColor   []string
}

PromptOptions containers the CLI options

func (*PromptOptions) Run

func (o *PromptOptions) Run() error

Run implements this command

type ReleaseInfo

type ReleaseInfo struct {
	ReleaseName     string
	FullAppName     string
	Version         string
	PullRequestInfo *ReleasePullRequestInfo
}

type ReleasePullRequestInfo

type ReleasePullRequestInfo struct {
	GitProvider          gits.GitProvider
	PullRequest          *gits.GitPullRequest
	PullRequestArguments *gits.GitPullRequestArguments
}

type RshOptions

type RshOptions struct {
	CommonOptions

	Container  string
	Namespace  string
	Executable string
	// contains filtered or unexported fields
}

func (*RshOptions) Run

func (o *RshOptions) Run() error

type Secrets

type Secrets struct {
	Login string
	Token string
}

type ServerFlags

type ServerFlags struct {
	ServerName string
	ServerURL  string
}

func (*ServerFlags) IsEmpty

func (f *ServerFlags) IsEmpty() bool

type ShellOptions

type ShellOptions struct {
	CommonOptions
}

func (*ShellOptions) PickContext

func (o *ShellOptions) PickContext(names []string, defaultValue string) (string, error)

func (*ShellOptions) Run

func (o *ShellOptions) Run() error

type Start

type Start struct {
	CommonOptions
}

Start contains the command line options

func (*Start) Run

func (o *Start) Run() error

Run implements this command

type StartPipelineOptions

type StartPipelineOptions struct {
	GetOptions

	Tail   bool
	Filter string

	Jobs map[string]*gojenkins.Job
}

StartPipelineOptions contains the command line options

func (*StartPipelineOptions) Run

func (o *StartPipelineOptions) Run() error

Run implements this command

type StatusOptions

type StatusOptions struct {
	CommonOptions
	// contains filtered or unexported fields
}

func (*StatusOptions) Run

func (o *StatusOptions) Run() error

type StepBlogOptions

type StepBlogOptions struct {
	StepOptions

	FromDate                    string
	ToDate                      string
	Dir                         string
	BlogOutputDir               string
	BlogName                    string
	CombineMinorReleases        bool
	DeveloperChannelMemberCount int
	UserChannelMemberCount      int

	State StepBlogState
}

StepBlogOptions contains the command line flags

func (*StepBlogOptions) Run

func (o *StepBlogOptions) Run() error

Run implements this command

type StepBlogState

type StepBlogState struct {
	GitInfo                  *gits.GitRepositoryInfo
	GitProvider              gits.GitProvider
	Tracker                  issues.IssueProvider
	Release                  *v1.Release
	BlogFileName             string
	DeveloperChatMetricsName string
	UserChatMetricsName      string
	Buffer                   *bytes.Buffer
	Writer                   *bufio.Writer
	HistoryService           *reports.ProjectHistoryService
	History                  *reports.ProjectHistory
	NewContributors          map[string]*v1.UserDetails
	NewCommitters            map[string]*v1.UserDetails
}

type StepChangelogOptions

type StepChangelogOptions struct {
	StepOptions

	PreviousRevision    string
	PreviousDate        string
	CurrentRevision     string
	TemplatesDir        string
	ReleaseYamlFile     string
	CrdYamlFile         string
	Dir                 string
	Version             string
	Header              string
	HeaderFile          string
	Footer              string
	FooterFile          string
	OutputMarkdownFile  string
	OverwriteCRD        bool
	GenerateCRD         bool
	GenerateReleaseYaml bool
	UpdateRelease       bool
	State               StepChangelogState
}

StepChangelogOptions contains the command line flags

func (*StepChangelogOptions) Run

func (o *StepChangelogOptions) Run() error

type StepChangelogState

type StepChangelogState struct {
	GitInfo         *gits.GitRepositoryInfo
	GitProvider     gits.GitProvider
	Tracker         issues.IssueProvider
	FoundIssueNames map[string]bool
	LoggedIssueKind bool
	Release         *v1.Release
}

type StepGitCredentialsOptions

type StepGitCredentialsOptions struct {
	StepOptions

	OutputFile string
}

StepGitCredentialsOptions contains the command line flags

func (*StepGitCredentialsOptions) Run

type StepGitOptions

type StepGitOptions struct {
	StepOptions
}

StepGitOptions contains the command line flags

func (*StepGitOptions) Run

func (o *StepGitOptions) Run() error

Run implements this command

type StepNexusDropOptions

type StepNexusDropOptions struct {
	StepNexusOptions
}

StepNexusDropOptions contains the command line flags

func (*StepNexusDropOptions) Run

func (o *StepNexusDropOptions) Run() error

type StepNexusOptions

type StepNexusOptions struct {
	StepOptions
}

StepNexusOptions contains the command line flags

func (*StepNexusOptions) Run

func (o *StepNexusOptions) Run() error

Run implements this command

type StepNexusReleaseOptions

type StepNexusReleaseOptions struct {
	StepNexusOptions

	DropOnFailure bool
}

StepNexusReleaseOptions contains the command line flags

func (*StepNexusReleaseOptions) Run

func (o *StepNexusReleaseOptions) Run() error

type StepOptions

type StepOptions struct {
	CommonOptions

	DisableImport bool
	OutDir        string
}

GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()

func (*StepOptions) Run

func (o *StepOptions) Run() error

Run implements this command

type StepPRCommentFlags

type StepPRCommentFlags struct {
	Comment    string
	URL        string
	Owner      string
	Repository string
	PR         string
}

type StepPRCommentOptions

type StepPRCommentOptions struct {
	StepPROptions
	Flags StepPRCommentFlags
}

GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()

func (*StepPRCommentOptions) Run

func (o *StepPRCommentOptions) Run() error

Run implements this command

type StepPROptions

type StepPROptions struct {
	StepOptions
}

GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()

func (*StepPROptions) Run

func (o *StepPROptions) Run() error

Run implements this command

type StepTagFlags

type StepTagFlags struct {
	Version string
}

type StepTagOptions

type StepTagOptions struct {
	StepOptions

	Flags StepTagFlags
}

CreateClusterOptions the flags for running create cluster

func (*StepTagOptions) Run

func (o *StepTagOptions) Run() error

type StepValidateOptions

type StepValidateOptions struct {
	StepOptions

	MinimumJxVersion string
	Dir              string
}

StepValidateOptions contains the command line flags

func (*StepValidateOptions) Run

func (o *StepValidateOptions) Run() error

Run implements this command

type UninstallOptions

type UninstallOptions struct {
	CommonOptions
}

func (*UninstallOptions) Run

func (o *UninstallOptions) Run() error

type UpgradeCLIOptions

type UpgradeCLIOptions struct {
	CreateOptions

	Version string
}

UpgradeCLIOptions the options for the create spring command

func (*UpgradeCLIOptions) Run

func (o *UpgradeCLIOptions) Run() error

Run implements the command

type UpgradeOptions

type UpgradeOptions struct {
	CommonOptions
}

UpgradeOptions are the flags for delete commands

func (*UpgradeOptions) Run

func (o *UpgradeOptions) Run() error

Run implements this command

type UpgradePlatformOptions

type UpgradePlatformOptions struct {
	CreateOptions

	Version     string
	ReleaseName string
	Chart       string
	Namespace   string
	Set         string
}

UpgradePlatformOptions the options for the create spring command

func (*UpgradePlatformOptions) Run

func (o *UpgradePlatformOptions) Run() error

Run implements the command

type VersionOptions

type VersionOptions struct {
	CommonOptions

	Container      string
	Namespace      string
	HelmTLS        bool
	NoVersionCheck bool
}

func (*VersionOptions) Run

func (o *VersionOptions) Run() error

Source Files

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL