diff --git a/cmd/apply.go b/cmd/apply.go index 6dcc85df38ae58a9c33de35ad3bb8daaaa358fe2..c35e17c0f4c64e756332b047f23759e75b651f0d 100644 --- a/cmd/apply.go +++ b/cmd/apply.go @@ -121,28 +121,28 @@ var applyCmd = &cobra.Command{ return c.Run(objs, wd) }, Long: `Update (or optionally create) Kubernetes resources on the cluster using the -local configuration. Use the '--create' flag to control whether we create them +local configuration. Use the` + " `--create` " + `flag to control whether we create them if they do not exist (default: true). ksonnet applications are accepted, as well as normal JSON, YAML, and Jsonnet files.`, - Example: ` # Create or update all resources described in a ksonnet application, and - # running in the 'dev' environment. Can be used in any subdirectory of the - # application. - ks apply dev + Example: `# Create or update all resources described in a ksonnet application, and +# running in the 'dev' environment. Can be used in any subdirectory of the +# application. +ks apply dev - # Create or update resources described in a YAML file. Automatically picks up - # the cluster's location from '$KUBECONFIG'. - ks appy -f ./pod.yaml +# Create or update resources described in a YAML file. Automatically picks up +# the cluster's location from '$KUBECONFIG'. +ks appy -f ./pod.yaml - # Create or update resources described in the JSON file. Changes are deployed - # to the cluster pointed at the 'dev' environment. - ks apply dev -f ./pod.json +# Create or update resources described in the JSON file. Changes are deployed +# to the cluster pointed at the 'dev' environment. +ks apply dev -f ./pod.json - # Update resources described in a YAML file, and running in cluster referred - # to by './kubeconfig'. - ks apply --kubeconfig=./kubeconfig -f ./pod.yaml +# Update resources described in a YAML file, and running in cluster referred +# to by './kubeconfig'. +ks apply --kubeconfig=./kubeconfig -f ./pod.yaml - # Display set of actions we will execute when we run 'apply'. - ks apply dev --dry-run`, +# Display set of actions we will execute when we run 'apply'. +ks apply dev --dry-run`, } diff --git a/cmd/delete.go b/cmd/delete.go index 6e5968baeddb68c37787ff40b3c2bd13b96b0c67..c3e0750e71d3ee9409f2fdc11745f8e4a1b406ef 100644 --- a/cmd/delete.go +++ b/cmd/delete.go @@ -88,19 +88,19 @@ configuration. ksonnet applications are accepted, as well as normal JSON, YAML, and Jsonnet files.`, - Example: ` # Delete all resources described in a ksonnet application, from the 'dev' - # environment. Can be used in any subdirectory of the application. - ks delete dev + Example: `# Delete all resources described in a ksonnet application, from the 'dev' +# environment. Can be used in any subdirectory of the application. +ks delete dev - # Delete resources described in a YAML file. Automatically picks up the - # cluster's location from '$KUBECONFIG'. - ks delete -f ./pod.yaml +# Delete resources described in a YAML file. Automatically picks up the +# cluster's location from '$KUBECONFIG'. +ks delete -f ./pod.yaml - # Delete resources described in the JSON file from the 'dev' environment. Can - # be used in any subdirectory of the application. - ks delete dev -f ./pod.json +# Delete resources described in the JSON file from the 'dev' environment. Can +# be used in any subdirectory of the application. +ks delete dev -f ./pod.json - # Delete resources described in a YAML file, and running in the cluster - # specified by the current context in specified kubeconfig file. - ks delete --kubeconfig=./kubeconfig -f ./pod.yaml`, +# Delete resources described in a YAML file, and running in the cluster +# specified by the current context in specified kubeconfig file. +ks delete --kubeconfig=./kubeconfig -f ./pod.yaml`, } diff --git a/cmd/diff.go b/cmd/diff.go index 8e4e147a5844899f4b014165e273235b68ce1c42..f7a46e802776985e8b45b2791a802968259ee2a7 100644 --- a/cmd/diff.go +++ b/cmd/diff.go @@ -88,35 +88,35 @@ configurations. ksonnet applications are accepted, as well as normal JSON, YAML, and Jsonnet files.`, - Example: ` # Show diff between resources described in a the local 'dev' environment - # specified by the ksonnet application and the remote cluster referenced by - # the same 'dev' environment. Can be used in any subdirectory of the application. - ksonnet diff dev - - # Show diff between resources at remote clusters. This requires ksonnet - # application defined environments. Diff between the cluster defined at the - # 'us-west/dev' environment, and the cluster defined at the 'us-west/prod' - # environment. Can be used in any subdirectory of the application. - ksonnet diff remote:us-west/dev remote:us-west/prod - - # Show diff between resources at a remote and a local cluster. This requires - # ksonnet application defined environments. Diff between the cluster defined - # at the 'us-west/dev' environment, and the cluster defined at the - # 'us-west/prod' environment. Can be used in any subdirectory of the - # application. - ksonnet diff local:us-west/dev remote:us-west/prod - - # Show diff between resources described in a YAML file and the cluster - # referenced in '$KUBECONFIG'. - ks diff -f ./pod.yaml - - # Show diff between resources described in a JSON file and the cluster - # referenced by the environment 'dev'. - ks diff dev -f ./pod.json - - # Show diff between resources described in a YAML file and the cluster - # referred to by './kubeconfig'. - ks diff --kubeconfig=./kubeconfig -f ./pod.yaml`, + Example: `# Show diff between resources described in a the local 'dev' environment +# specified by the ksonnet application and the remote cluster referenced by +# the same 'dev' environment. Can be used in any subdirectory of the application. +ksonnet diff dev + +# Show diff between resources at remote clusters. This requires ksonnet +# application defined environments. Diff between the cluster defined at the +# 'us-west/dev' environment, and the cluster defined at the 'us-west/prod' +# environment. Can be used in any subdirectory of the application. +ksonnet diff remote:us-west/dev remote:us-west/prod + +# Show diff between resources at a remote and a local cluster. This requires +# ksonnet application defined environments. Diff between the cluster defined +# at the 'us-west/dev' environment, and the cluster defined at the +# 'us-west/prod' environment. Can be used in any subdirectory of the +# application. +ksonnet diff local:us-west/dev remote:us-west/prod + +# Show diff between resources described in a YAML file and the cluster +# referenced in '$KUBECONFIG'. +ks diff -f ./pod.yaml + +# Show diff between resources described in a JSON file and the cluster +# referenced by the environment 'dev'. +ks diff dev -f ./pod.json + +# Show diff between resources described in a YAML file and the cluster +# referred to by './kubeconfig'. +ks diff --kubeconfig=./kubeconfig -f ./pod.yaml`, } func initDiffCmd(cmd *cobra.Command, wd metadata.AbsPath, envFq1, envFq2 *string, files []string, diffStrategy string) (kubecfg.DiffCmd, error) { diff --git a/cmd/env.go b/cmd/env.go index 38cbf26b3585c7e10aba41734a859f89f16928b3..7e881818d92cdf4560b7ccfb0059f2e8562476c6 100644 --- a/cmd/env.go +++ b/cmd/env.go @@ -56,7 +56,7 @@ var envCmd = &cobra.Command{ Use: "env", Short: `Manage ksonnet environments`, Long: `An environment acts as a sort of "named cluster", allowing for commands like -'ks apply dev', which applies the ksonnet application to the "dev cluster". +` + " `ks apply dev` " + `, which applies the ksonnet application to the 'dev cluster'. Additionally, environments allow users to cache data about the cluster it points to, including data needed to run 'verify', and a version of ksonnet-lib that is generated based on the flags the API server was started with (e.g., RBAC enabled @@ -68,25 +68,27 @@ often contained in a kubeconfig file), and Environments are represented as a hierarchy in the 'environments' directory of a ksonnet application. For example, in the example below, there are two environments: 'default' and 'us-west/staging'. Each contains a cached version of -ksonnet-lib, and a 'spec.json' that contains the server and server cert that +` + " `ksonnet-lib` " + `, and a` + " `spec.json` " + `that contains the server and server cert that uniquely identifies the cluster. -environments/ - default/ [Default generated environment] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json - default.jsonnet - us-west/ - staging/ [Example of user-generated env] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json [This will contain the API server address of the environment and other environment metadata] - staging.jsonnet`, + environments/ + default/ [Default generated environment] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json + default.jsonnet + params.libsonnet + us-west/ + staging/ [Example of user-generated env] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json [This will contain the API server address of the environment and other environment metadata] + staging.jsonnet + params.libsonnet`, RunE: func(cmd *cobra.Command, args []string) error { return fmt.Errorf("Command 'env' requires a subcommand\n\n%s", cmd.UsageString()) }, @@ -157,48 +159,49 @@ var envAddCmd = &cobra.Command{ }, Long: `Add a new environment to a ksonnet project. Names are restricted to not -include punctuation, so names like '../foo' are not allowed. +include punctuation, so names like` + " `../foo` " + `are not allowed. An environment acts as a sort of "named cluster", allowing for commands like -'ks apply dev', which applies the ksonnet application to the "dev cluster". -For more information on what an environment is and how they work, run 'help -env'. +` + " `ks apply dev` " + `, which applies the ksonnet application to the "dev cluster". +For more information on what an environment is and how they work, run` + " `ks help env` " + `. Environments are represented as a hierarchy in the 'environments' directory of a -ksonnet application, and hence 'env add' will add to this directory structure. +ksonnet application, and hence` + " `ks env add` " + `will add to this directory structure. For example, in the example below, there are two environments: 'default' and -'us-west/staging'. 'env add' will add a similar directory to this environment. - -environments/ - default/ [Default generated environment] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json - default.jsonnet - us-west/ - staging/ [Example of user-generated env] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json [This will contain the API server address of the environment and other environment metadata], - staging.jsonnet`, - Example: ` # Initialize a new staging environment at 'us-west'. - # The environment will be setup using the current context in your kubecfg file. The directory - # structure rooted at 'us-west' in the documentation above will be generated. - ks env add us-west/staging - - # Initialize a new staging environment at 'us-west' with the namespace 'staging', using - # the OpenAPI specification generated in the Kubernetes v1.7.1 build to generate 'ksonnet-lib'. - ks env add us-west/staging --api-spec=version:v1.7.1 --namespace=staging - - # Initialize a new environment using the 'dev' context in your kubeconfig file. - ks env add my-env --context=dev - - # Initialize a new environment using a server address. - ks env add my-env --server=https://ksonnet-1.us-west.elb.amazonaws.com`, +'us-west/staging'.` + " `ks env add` " + `will add a similar directory to this environment. + + environments/ + default/ [Default generated environment] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json + default.jsonnet + params.libsonnet + us-west/ + staging/ [Example of user-generated env] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json [This will contain the API server address of the environment and other environment metadata], + staging.jsonnet + params.libsonnet`, + Example: `# Initialize a new staging environment at 'us-west'. +# The environment will be setup using the current context in your kubecfg file. The directory +# structure rooted at 'us-west' in the documentation above will be generated. +ks env add us-west/staging + +# Initialize a new staging environment at 'us-west' with the namespace 'staging', using +# the OpenAPI specification generated in the Kubernetes v1.7.1 build to generate 'ksonnet-lib'. +ks env add us-west/staging --api-spec=version:v1.7.1 --namespace=staging + +# Initialize a new environment using the 'dev' context in your kubeconfig file. +ks env add my-env --context=dev + +# Initialize a new environment using a server address. +ks env add my-env --server=https://ksonnet-1.us-west.elb.amazonaws.com`, } var envRmCmd = &cobra.Command{ @@ -230,15 +233,11 @@ var envRmCmd = &cobra.Command{ return c.Run() }, Long: `Delete an environment from a ksonnet project. This is the same -as removing the <env-name> environment directory and all files contained. If the -project exists in a hierarchy (e.g., 'us-east/staging') and deleting the -environment results in an empty environments directory (e.g., if deleting -'us-east/staging' resulted in an empty 'us-east/' directory), then all empty -parent directories are subsequently deleted.`, - Example: ` # Remove the directory 'us-west/staging' and all contents - # in the 'environments' directory. This will also remove the parent directory - # 'us-west' if it is empty. - ks env rm us-west/staging`, +as removing the <env-name> environment directory and all files contained. All empty +parent directories are also subsequently deleted.`, + Example: `# Remove the directory 'us-west/staging' and all contents in the 'environments' +# directory. This will also remove the parent directory 'us-west' if it is empty. +ks env rm us-west/staging`, } var envListCmd = &cobra.Command{ @@ -324,19 +323,19 @@ var envSetCmd = &cobra.Command{ Long: `Set environment fields such as the name, and server. Changing the name of an environment will also update the directory structure in 'environments'.`, - Example: ` # Updates the API server address of the environment 'us-west/staging'. - ks env set us-west/staging --server=http://example.com + Example: `# Updates the API server address of the environment 'us-west/staging'. +ks env set us-west/staging --server=http://example.com - # Updates the namespace of the environment 'us-west/staging'. - ks env set us-west/staging --namespace=staging +# Updates the namespace of the environment 'us-west/staging'. +ks env set us-west/staging --namespace=staging - # Updates both the name and the server of the environment 'us-west/staging'. - # Updating the name will update the directory structure in 'environments'. - ks env set us-west/staging --server=http://example.com --name=us-east/staging +# Updates both the name and the server of the environment 'us-west/staging'. +# Updating the name will update the directory structure in 'environments'. +ks env set us-west/staging --server=http://example.com --name=us-east/staging - # Updates API server address of the environment 'us-west/staging' based on the - # server in the context 'staging-west' in your kubeconfig file. - ks env set us-west/staging --context=staging-west`, +# Updates API server address of the environment 'us-west/staging' based on the +# server in the context 'staging-west' in your kubeconfig file. +ks env set us-west/staging --context=staging-west`, } func commonEnvFlags(flags *pflag.FlagSet) (server, namespace, context string, err error) { diff --git a/cmd/init.go b/cmd/init.go index 61ca3cdd24d5866ce360d332ecf56eb8627703ac..2921693a4be5e1757435985f6ebdbef29f34d482 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -77,43 +77,39 @@ var initCmd = &cobra.Command{ return c.Run() }, - Long: `Initialize a ksonnet project in a new directory, 'app-name'. This process + Long: `Initialize a ksonnet project in a new directory,` + " `app-name`" + `. This process consists of two steps: 1. Generating ksonnet-lib. Users can set flags to generate the library based on a variety of data, including server configuration and an OpenAPI specification of a Kubernetes build. By default, this is generated from the capabilities of the cluster specified in the cluster of the current context - specified in $KUBECONFIG. + specified in` + " `$KUBECONFIG`" + `. 2. Generating the following tree in the current directory. - app-name/ - .gitignore Default .gitignore; can customize VCS - .ksonnet/ Metadata for ksonnet - envs/ - default/ Default generated environment] - k.libsonnet - k8s.libsonnet - swagger.json - spec.json - components/ Top-level Kubernetes objects defining application - lib/ user-written .libsonnet files - vendor/ mixin libraries, prototypes + app-name/ + .gitignore Default .gitignore; can customize VCS + .ksonnet/ Metadata for ksonnet + environments/ + default/ [Default generated environment] + components/ Top-level Kubernetes objects defining application + lib/ user-written .libsonnet files + vendor/ part libraries, prototypes `, - Example: ` # Initialize ksonnet application, using the capabilities of live cluster - # specified in the $KUBECONFIG environment variable (specifically: the - # current context) to generate 'ksonnet-lib'. - ks init app-name - - # Initialize ksonnet application, using the OpenAPI specification generated - # in the Kubenetes v1.7.1 build to generate 'ksonnet-lib'. - ks init app-name --api-spec=version:v1.7.1 - - # Initialize ksonnet application, using an OpenAPI specification file - # generated by a build of Kubernetes to generate 'ksonnet-lib'. - ks init app-name --api-spec=file:swagger.json - - # Initialize ksonnet application, using the context 'dev' from the kubeconfig - # file. - ks init app-name --context=dev`, + Example: `# Initialize ksonnet application, using the capabilities of live cluster +# specified in the $KUBECONFIG environment variable (specifically: the +# current context) to generate 'ksonnet-lib'. +ks init app-name + +# Initialize ksonnet application, using the OpenAPI specification generated +# in the Kubenetes v1.7.1 build to generate 'ksonnet-lib'. +ks init app-name --api-spec=version:v1.7.1 + +# Initialize ksonnet application, using an OpenAPI specification file +# generated by a build of Kubernetes to generate 'ksonnet-lib'. +ks init app-name --api-spec=file:swagger.json + +# Initialize ksonnet application, using the context 'dev' from the kubeconfig +# file. +ks init app-name --context=dev`, } diff --git a/cmd/param.go b/cmd/param.go index cd24de272abb2129bc6a3c4ae8ab9bb6f3f018cf..e5a8c34a59841ab412d581c0b438ee967917a7e3 100644 --- a/cmd/param.go +++ b/cmd/param.go @@ -54,7 +54,8 @@ demands. Environments are ksonnet "named clusters". For more information on environments, run: - ks env --help + + ks env --help `, RunE: func(cmd *cobra.Command, args []string) error { return fmt.Errorf("Command 'param' requires a subcommand\n\n%s", cmd.UsageString()) @@ -83,20 +84,20 @@ var paramSetCmd = &cobra.Command{ return c.Run() }, - Long: `"Set component or environment parameters such as replica count or name. + Long: `Set component or environment parameters such as replica count or name. Parameters are set individually, one at a time. If you require customization of more fields, we suggest that you modify your ksonnet project's -'components/params.libsonnet' file directly. Likewise, for greater customization +` + " `components/params.libsonnet` " + `file directly. Likewise, for greater customization of environment parameters, we suggest modifying the -'environments/:name/params.libsonnet' file. +` + " `environments/:name/params.libsonnet` " + `file. `, - Example: ` # Updates the replica count of the 'guestbook' component to 4. - ks param set guestbook replicas 4 + Example: `# Updates the replica count of the 'guestbook' component to 4. +ks param set guestbook replicas 4 - # Updates the replica count of the 'guestbook' component to 2 for the environment - # 'dev' - ks param set guestbook replicas 2 --env=dev`, +# Updates the replica count of the 'guestbook' component to 2 for the environment +# 'dev' +ks param set guestbook replicas 2 --env=dev`, } var paramListCmd = &cobra.Command{ @@ -122,24 +123,24 @@ var paramListCmd = &cobra.Command{ return c.Run(cmd.OutOrStdout()) }, - Long: `"List all component parameters or environment parameters. + Long: `List all component parameters or environment parameters. This command will display all parameters for the component specified. If a component is not specified, parameters for all components will be listed. Furthermore, parameters can be listed on a per-environment basis. `, - Example: ` # List all component parameters - ks param list + Example: `# List all component parameters +ks param list - # List all parameters for the component "guestbook" - ks param list guestbook +# List all parameters for the component "guestbook" +ks param list guestbook - # List all parameters for the environment "dev" - ks param list --env=dev +# List all parameters for the environment "dev" +ks param list --env=dev - # List all parameters for the component "guestbook" in the environment "dev" - ks param list guestbook --env=dev`, +# List all parameters for the component "guestbook" in the environment "dev" +ks param list guestbook --env=dev`, } var paramDiffCmd = &cobra.Command{ @@ -163,14 +164,14 @@ var paramDiffCmd = &cobra.Command{ return c.Run(cmd.OutOrStdout()) }, - Long: `"Pretty prints differences between the component parameters of two environments. + Long: `Pretty prints differences between the component parameters of two environments. A component flag is accepted to diff against a single component. By default, the diff is performed against all components. `, - Example: ` # Diff between the component parameters on environments 'dev' and 'prod' - ks param diff dev prod + Example: `# Diff between the component parameters on environments 'dev' and 'prod' +ks param diff dev prod - # Diff between the component 'guestbook' on environments 'dev' and 'prod' - ks param diff dev prod --component=guestbook`, +# Diff between the component 'guestbook' on environments 'dev' and 'prod' +ks param diff dev prod --component=guestbook`, } diff --git a/cmd/pkg.go b/cmd/pkg.go index bf61331a875da7eb0c058c666dd1148dbbfb4f8d..7cd442b523a0b69408e5dee10c8133beb7a8a7b7 100644 --- a/cmd/pkg.go +++ b/cmd/pkg.go @@ -81,29 +81,29 @@ var pkgInstallCmd = &cobra.Command{ }, Long: `Cache a ksonnet library locally, and make it available for use in the current ksonnet project. This particularly means that we record enough information in -'app.yaml' for new users to retrieve the dependency after a fresh clone of the +` + " `app.yaml` " + `for new users to retrieve the dependency after a fresh clone of the app repository. For example, inside a ksonnet application directory, run: - ks pkg install incubator/nginx@v0.1 + ks pkg install incubator/nginx@v0.1 This can then be referenced in a source file in the ksonnet project: - local nginx = import "kspkg://nginx"; + local nginx = import "kspkg://nginx"; By default, ksonnet knows about two registries: incubator and stable, which are the release channels for official ksonnet libraries. Additional registries can -be added with the 'ks registry' command. +be added with the` + " `ks registry` " + `command. Note that multiple versions of the same ksonnet library can be cached and used -in the same project, by explicitly passing in the '--name' flag. For example: +in the same project, by explicitly passing in the` + " `--name` " + `flag. For example: - ks pkg install incubator/nginx@v0.1 --name nginxv1 - ks pkg install incubator/nginx@v0.2 --name nginxv2 + ks pkg install incubator/nginx@v0.1 --name nginxv1 + ks pkg install incubator/nginx@v0.2 --name nginxv2 -With these commands, a user can 'import "kspkg://nginx1"', and -'import "kspkg://nginx2"' with no conflict.`, +With these commands, a user can` + " `import \"kspkg://nginxv1\"` " + `, and +` + " `import \"kspkg://nginxv2\"` " + `with no conflict.`, } var pkgDescribeCmd = &cobra.Command{ @@ -162,7 +162,7 @@ var pkgDescribeCmd = &cobra.Command{ }, Long: `Output documentation for some ksonnet registry prototype uniquely identified in - the current ksonnet project by some 'registry-name'.`, +the current ksonnet project by some 'registry-name'.`, } var pkgListCmd = &cobra.Command{ diff --git a/cmd/prototype.go b/cmd/prototype.go index 8e552313f63bea0b182745f4201e6e141e2d1ffe..d87f137dffb7733f12df69f661d2d7555c9608f1 100644 --- a/cmd/prototype.go +++ b/cmd/prototype.go @@ -50,40 +50,40 @@ var prototypeCmd = &cobra.Command{ Prototypes are Kubernetes app configuration templates with "holes" that can be filled in by (e.g.) the ksonnet CLI tool or a language server. For example, a -prototype for a 'apps.v1beta1.Deployment' might require a name and image, and +prototype for a` + " `apps.v1beta1.Deployment` " + `might require a name and image, and the ksonnet CLI could expand this to a fully-formed 'Deployment' object. Commands: - use Instantiate prototype, filling in parameters from flags, and - emitting the generated code to stdout. - describe Display documentation and details about a prototype - search Search for a prototype`, - - Example: ` # Display documentation about prototype - # 'io.ksonnet.pkg.prototype.simple-deployment', including: - # - # (1) a description of what gets generated during instantiation - # (2) a list of parameters that are required to be passed in with CLI flags - # - # NOTE: Many subcommands only require the user to specify enough of the - # identifier to disambiguate it among other known prototypes, which is why - # 'simple-deployment' is given as argument instead of the fully-qualified - # name. - ks prototype describe simple-deployment - - # Instantiate prototype 'io.ksonnet.pkg.prototype.simple-deployment', using - # the 'nginx' image, and port 80 exposed. - # - # SEE ALSO: Note above for a description of why this subcommand can take - # 'simple-deployment' instead of the fully-qualified prototype name. - ks prototype use simple-deployment \ - --name=nginx \ - --image=nginx \ - --port=80 \ - --portName=http - - # Search known prototype metadata for the string 'deployment'. - ks prototype search deployment`, + use Instantiate prototype, filling in parameters from flags, and + emitting the generated code to stdout. + describe Display documentation and details about a prototype + search Search for a prototype`, + + Example: `# Display documentation about prototype +# 'io.ksonnet.pkg.prototype.simple-deployment', including: +# +# (1) a description of what gets generated during instantiation +# (2) a list of parameters that are required to be passed in with CLI flags +# +# NOTE: Many subcommands only require the user to specify enough of the +# identifier to disambiguate it among other known prototypes, which is why +# 'simple-deployment' is given as argument instead of the fully-qualified +# name. +ks prototype describe simple-deployment + +# Instantiate prototype 'io.ksonnet.pkg.prototype.simple-deployment', using +# the 'nginx' image, and port 80 exposed. +# +# SEE ALSO: Note above for a description of why this subcommand can take +# 'simple-deployment' instead of the fully-qualified prototype name. +ks prototype use simple-deployment \ + --name=nginx \ + --image=nginx \ + --port=80 \ + --portName=http + +# Search known prototype metadata for the string 'deployment'. +ks prototype search deployment`, } var prototypeListCmd = &cobra.Command{ @@ -173,27 +173,27 @@ var prototypeDescribeCmd = &cobra.Command{ return nil }, Long: `Output documentation, examples, and other information for some ksonnet -prototype uniquely identified by some (possibly partial) 'prototype-name'. This +prototype uniquely identified by some (possibly partial)` + " `prototype-name`" + `. This includes: - (1) a description of what gets generated during instantiation - (2) a list of parameters that are required to be passed in with CLI flags + 1. a description of what gets generated during instantiation + 2. a list of parameters that are required to be passed in with CLI flags -'prototype-name' need only contain enough of the suffix of a name to uniquely +` + "`prototype-name` " + `need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may resolve ambiguously, in which case 'use' will fail, while 'simple-deployment' might be unique enough to resolve to 'io.ksonnet.pkg.prototype.simple-deployment'.`, - Example: ` # Display documentation about prototype, including: - ks prototype describe io.ksonnet.pkg.prototype.simple-deployment + Example: `# Display documentation about prototype, including: +ks prototype describe io.ksonnet.pkg.prototype.simple-deployment - # Display documentation about prototype using a unique suffix of an - # identifier. That is, this command only requires a long enough suffix to - # uniquely identify a ksonnet prototype. In this example, the suffix - # 'simple-deployment' is enough to uniquely identify - # 'io.ksonnet.pkg.prototype.simple-deployment', but 'deployment' might not - # be, as several names end with that suffix. - ks prototype describe simple-deployment`, +# Display documentation about prototype using a unique suffix of an +# identifier. That is, this command only requires a long enough suffix to +# uniquely identify a ksonnet prototype. In this example, the suffix +# 'simple-deployment' is enough to uniquely identify +# 'io.ksonnet.pkg.prototype.simple-deployment', but 'deployment' might not +# be, as several names end with that suffix. +ks prototype describe simple-deployment`, } var prototypeSearchCmd = &cobra.Command{ @@ -218,9 +218,9 @@ var prototypeSearchCmd = &cobra.Command{ return nil }, - Long: `Search ksonnet for prototypes whose names contain 'name-substring'.`, - Example: ` # Search known prototype metadata for the string 'deployment'. - ks prototype search deployment`, + Long: `Search ksonnet for prototypes whose names contain` + " `name-substring` " + `.`, + Example: `# Search known prototype metadata for the string 'deployment'. +ks prototype search deployment`, } var prototypePreviewCmd = &cobra.Command{ @@ -292,25 +292,25 @@ var prototypePreviewCmd = &cobra.Command{ return nil }, Long: `Expand prototype uniquely identified by (possibly partial) -'prototype-name', filling in parameters from flags, and emitting the generated +` + " `prototype-name` " + `, filling in parameters from flags, and emitting the generated code to stdout. -Note also that 'prototype-name' need only contain enough of the suffix of a name +Note also that` + " `prototype-name` " + `need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may -resolve ambiguously, in which case 'use' will fail, while 'deployment' might be +resolve ambiguously, in which case` + " `use` " + `will fail, while 'deployment' might be unique enough to resolve to 'io.ksonnet.pkg.single-port-deployment'.`, - Example: ` # Preview prototype 'io.ksonnet.pkg.single-port-deployment', using the - # 'nginx' image, and port 80 exposed. - ks prototype preview io.ksonnet.pkg.prototype.simple-deployment \ - --name=nginx \ - --image=nginx - - # Preview prototype using a unique suffix of an identifier. See - # introduction of help message for more information on how this works. - ks prototype preview simple-deployment \ - --name=nginx \ - --image=nginx`, + Example: `# Preview prototype 'io.ksonnet.pkg.single-port-deployment', using the +# 'nginx' image, and port 80 exposed. +ks prototype preview io.ksonnet.pkg.prototype.simple-deployment \ + --name=nginx \ + --image=nginx + +# Preview prototype using a unique suffix of an identifier. See +# introduction of help message for more information on how this works. +ks prototype preview simple-deployment \ + --name=nginx \ + --image=nginx`, } // generateCmd acts as an alias for `prototype use` @@ -397,37 +397,37 @@ var prototypeUseCmd = &cobra.Command{ return manager.CreateComponent(componentName, text, params, templateType) }, - Long: `Expand prototype uniquely identified by (possibly partial) 'prototype-name', + Long: `Expand prototype uniquely identified by (possibly partial)` + " `prototype-name` " + `, filling in parameters from flags, and placing it into the file -'components/componentName', with the appropriate extension set. For example, the +` + " `components/componentName` " + `, with the appropriate extension set. For example, the following command will expand template 'io.ksonnet.pkg.single-port-deployment' -and place it in the file 'components/nginx-depl.jsonnet' (since by default +and place it in the file` + " `components/nginx-depl.jsonnet` " + `(since by default ksonnet will expand templates as Jsonnet). - ks prototype use io.ksonnet.pkg.single-port-deployment nginx-depl \ - --name=nginx \ - --image=nginx + ks prototype use io.ksonnet.pkg.single-port-deployment nginx-depl \ + --name=nginx \ + --image=nginx -Note also that 'prototype-name' need only contain enough of the suffix of a name +Note also that` + " `prototype-name` " + `need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may -resolve ambiguously, in which case 'use' will fail, while 'deployment' might be +resolve ambiguously, in which case` + " `use` " + `will fail, while 'deployment' might be unique enough to resolve to 'io.ksonnet.pkg.single-port-deployment'.`, - Example: ` # Instantiate prototype 'io.ksonnet.pkg.single-port-deployment', using the - # 'nginx' image. The expanded prototype is placed in - # 'components/nginx-depl.jsonnet'. - ks prototype use io.ksonnet.pkg.prototype.simple-deployment nginx-depl \ - --name=nginx \ - --image=nginx - - # Instantiate prototype 'io.ksonnet.pkg.single-port-deployment' using the - # unique suffix, 'deployment'. The expanded prototype is again placed in - # 'components/nginx-depl.jsonnet'. See introduction of help message for more - # information on how this works. Note that if you have imported another - # prototype with this suffix, this may resolve ambiguously for you. - ks prototype use deployment nginx-depl \ - --name=nginx \ - --image=nginx`, + Example: `# Instantiate prototype 'io.ksonnet.pkg.single-port-deployment', using the +# 'nginx' image. The expanded prototype is placed in +# 'components/nginx-depl.jsonnet'. +ks prototype use io.ksonnet.pkg.prototype.simple-deployment nginx-depl \ + --name=nginx \ + --image=nginx + +# Instantiate prototype 'io.ksonnet.pkg.single-port-deployment' using the +# unique suffix, 'deployment'. The expanded prototype is again placed in +# 'components/nginx-depl.jsonnet'. See introduction of help message for more +# information on how this works. Note that if you have imported another +# prototype with this suffix, this may resolve ambiguously for you. +ks prototype use deployment nginx-depl \ + --name=nginx \ + --image=nginx`, } func bindPrototypeFlags(cmd *cobra.Command, proto *prototype.SpecificationSchema) { diff --git a/cmd/registry.go b/cmd/registry.go index 7149d18f8fa9b88307881f8211d6c6ea399de656..bf467396da6d8ddaae9e2d94c7d711f321a8d1f5 100644 --- a/cmd/registry.go +++ b/cmd/registry.go @@ -39,7 +39,7 @@ manage in a ksonnet project using the CLI. A typical library contains: var registryListCmd = &cobra.Command{ Use: "list", - Short: `List all registries known to current ksonnet app`, + Short: `List all registries known to the current ksonnet app.`, RunE: func(cmd *cobra.Command, args []string) error { const ( nameHeader = "NAME" @@ -142,5 +142,5 @@ var registryDescribeCmd = &cobra.Command{ }, Long: `Output documentation for some ksonnet registry prototype uniquely identified in -the current ksonnet project by some 'registry-name'.`, +the current ksonnet project by some` + " `registry-name`" + `.`, } diff --git a/cmd/update.go b/cmd/update.go index 31630a35a2b289bbbab1373174e12366d98edc24..651dd2a148834593a3127e46ea448bdd8be880e4 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -109,19 +109,19 @@ if they do not exist (default: true). ksonnet applications are accepted, as well as normal JSON, YAML, and Jsonnet files.`, - Example: ` # Create or update all resources described in a ksonnet application, and - # running in the 'dev' environment. Can be used in any subdirectory of the - # application. - ks update dev + Example: `# Create or update all resources described in a ksonnet application, and +# running in the 'dev' environment. Can be used in any subdirectory of the +# application. +ks update dev - # Create or update resources described in a YAML file. Automatically picks up - # the cluster's location from '$KUBECONFIG'. - ks update -f ./pod.yaml +# Create or update resources described in a YAML file. Automatically picks up +# the cluster's location from '$KUBECONFIG'. +ks update -f ./pod.yaml - # Update resources described in a YAML file, and running in cluster referred - # to by './kubeconfig'. - ks update --kubeconfig=./kubeconfig -f ./pod.yaml +# Update resources described in a YAML file, and running in cluster referred +# to by './kubeconfig'. +ks update --kubeconfig=./kubeconfig -f ./pod.yaml - # Display set of actions we will execute when we run 'update'. - ks update dev --dry-run`, +# Display set of actions we will execute when we run 'update'. +ks update dev --dry-run`, } diff --git a/cmd/validate.go b/cmd/validate.go index 28302fe5271abae58b5d53c997584406cc23d72e..141dd78ccf299b621b0e8a23609ac06d30832bb1 100644 --- a/cmd/validate.go +++ b/cmd/validate.go @@ -72,19 +72,19 @@ specification. ksonnet applications are accepted, as well as normal JSON, YAML, and Jsonnet files.`, - Example: ` # Validate all resources described in a ksonnet application, expanding - # ksonnet code with 'dev' environment where necessary (i.e., not YAML, JSON, - # or non-ksonnet Jsonnet code). - ksonnet validate dev + Example: `# Validate all resources described in a ksonnet application, expanding +# ksonnet code with 'dev' environment where necessary (i.e., not YAML, JSON, +# or non-ksonnet Jsonnet code). +ksonnet validate dev - # Validate resources described in a YAML file. - ksonnet validate -f ./pod.yaml +# Validate resources described in a YAML file. +ksonnet validate -f ./pod.yaml - # Validate resources described in the JSON file against existing resources - # in the cluster the 'dev' environment is pointing at. - ksonnet validate dev -f ./pod.yaml +# Validate resources described in the JSON file against existing resources +# in the cluster the 'dev' environment is pointing at. +ksonnet validate dev -f ./pod.yaml - # Validate resources described in a Jsonnet file. Does not expand using - # environment bindings. - ksonnet validate -f ./pod.jsonnet`, +# Validate resources described in a Jsonnet file. Does not expand using +# environment bindings. +ksonnet validate -f ./pod.jsonnet`, } diff --git a/docs/cli-reference/ks_apply.md b/docs/cli-reference/ks_apply.md index b011d51d0f55fd28118108da1205b114c1c6b6ef..9a2a19b244fe8e0d742a62a5b1fdc36fb05c23e8 100644 --- a/docs/cli-reference/ks_apply.md +++ b/docs/cli-reference/ks_apply.md @@ -6,7 +6,7 @@ Apply local configuration to remote cluster Update (or optionally create) Kubernetes resources on the cluster using the -local configuration. Use the '--create' flag to control whether we create them +local configuration. Use the `--create` flag to control whether we create them if they do not exist (default: true). ksonnet applications are accepted, as well as normal JSON, YAML, and Jsonnet @@ -19,25 +19,25 @@ ks apply [env-name] [-f <file-or-dir>] ### Examples ``` - # Create or update all resources described in a ksonnet application, and - # running in the 'dev' environment. Can be used in any subdirectory of the - # application. - ks apply dev +# Create or update all resources described in a ksonnet application, and +# running in the 'dev' environment. Can be used in any subdirectory of the +# application. +ks apply dev - # Create or update resources described in a YAML file. Automatically picks up - # the cluster's location from '$KUBECONFIG'. - ks appy -f ./pod.yaml +# Create or update resources described in a YAML file. Automatically picks up +# the cluster's location from '$KUBECONFIG'. +ks appy -f ./pod.yaml - # Create or update resources described in the JSON file. Changes are deployed - # to the cluster pointed at the 'dev' environment. - ks apply dev -f ./pod.json +# Create or update resources described in the JSON file. Changes are deployed +# to the cluster pointed at the 'dev' environment. +ks apply dev -f ./pod.json - # Update resources described in a YAML file, and running in cluster referred - # to by './kubeconfig'. - ks apply --kubeconfig=./kubeconfig -f ./pod.yaml +# Update resources described in a YAML file, and running in cluster referred +# to by './kubeconfig'. +ks apply --kubeconfig=./kubeconfig -f ./pod.yaml - # Display set of actions we will execute when we run 'apply'. - ks apply dev --dry-run +# Display set of actions we will execute when we run 'apply'. +ks apply dev --dry-run ``` ### Options diff --git a/docs/cli-reference/ks_delete.md b/docs/cli-reference/ks_delete.md index 380bdfc5ea0c058ec8204af8a285ffa1a24d851a..77c3071ccedd794b5d66c146a95e7dbb11ff473a 100644 --- a/docs/cli-reference/ks_delete.md +++ b/docs/cli-reference/ks_delete.md @@ -18,21 +18,21 @@ ks delete [env-name] [-f <file-or-dir>] ### Examples ``` - # Delete all resources described in a ksonnet application, from the 'dev' - # environment. Can be used in any subdirectory of the application. - ks delete dev +# Delete all resources described in a ksonnet application, from the 'dev' +# environment. Can be used in any subdirectory of the application. +ks delete dev - # Delete resources described in a YAML file. Automatically picks up the - # cluster's location from '$KUBECONFIG'. - ks delete -f ./pod.yaml +# Delete resources described in a YAML file. Automatically picks up the +# cluster's location from '$KUBECONFIG'. +ks delete -f ./pod.yaml - # Delete resources described in the JSON file from the 'dev' environment. Can - # be used in any subdirectory of the application. - ks delete dev -f ./pod.json +# Delete resources described in the JSON file from the 'dev' environment. Can +# be used in any subdirectory of the application. +ks delete dev -f ./pod.json - # Delete resources described in a YAML file, and running in the cluster - # specified by the current context in specified kubeconfig file. - ks delete --kubeconfig=./kubeconfig -f ./pod.yaml +# Delete resources described in a YAML file, and running in the cluster +# specified by the current context in specified kubeconfig file. +ks delete --kubeconfig=./kubeconfig -f ./pod.yaml ``` ### Options diff --git a/docs/cli-reference/ks_diff.md b/docs/cli-reference/ks_diff.md index 617e273e120e16f50e1f7e8c1ef7367aaa8771a5..dab22535373599a2a059add6efd7d242b4841464 100644 --- a/docs/cli-reference/ks_diff.md +++ b/docs/cli-reference/ks_diff.md @@ -18,35 +18,35 @@ ks diff [<env1> [<env2>]] [-f <file-or-dir>] ### Examples ``` - # Show diff between resources described in a the local 'dev' environment - # specified by the ksonnet application and the remote cluster referenced by - # the same 'dev' environment. Can be used in any subdirectory of the application. - ksonnet diff dev - - # Show diff between resources at remote clusters. This requires ksonnet - # application defined environments. Diff between the cluster defined at the - # 'us-west/dev' environment, and the cluster defined at the 'us-west/prod' - # environment. Can be used in any subdirectory of the application. - ksonnet diff remote:us-west/dev remote:us-west/prod - - # Show diff between resources at a remote and a local cluster. This requires - # ksonnet application defined environments. Diff between the cluster defined - # at the 'us-west/dev' environment, and the cluster defined at the - # 'us-west/prod' environment. Can be used in any subdirectory of the - # application. - ksonnet diff local:us-west/dev remote:us-west/prod - - # Show diff between resources described in a YAML file and the cluster - # referenced in '$KUBECONFIG'. - ks diff -f ./pod.yaml - - # Show diff between resources described in a JSON file and the cluster - # referenced by the environment 'dev'. - ks diff dev -f ./pod.json - - # Show diff between resources described in a YAML file and the cluster - # referred to by './kubeconfig'. - ks diff --kubeconfig=./kubeconfig -f ./pod.yaml +# Show diff between resources described in a the local 'dev' environment +# specified by the ksonnet application and the remote cluster referenced by +# the same 'dev' environment. Can be used in any subdirectory of the application. +ksonnet diff dev + +# Show diff between resources at remote clusters. This requires ksonnet +# application defined environments. Diff between the cluster defined at the +# 'us-west/dev' environment, and the cluster defined at the 'us-west/prod' +# environment. Can be used in any subdirectory of the application. +ksonnet diff remote:us-west/dev remote:us-west/prod + +# Show diff between resources at a remote and a local cluster. This requires +# ksonnet application defined environments. Diff between the cluster defined +# at the 'us-west/dev' environment, and the cluster defined at the +# 'us-west/prod' environment. Can be used in any subdirectory of the +# application. +ksonnet diff local:us-west/dev remote:us-west/prod + +# Show diff between resources described in a YAML file and the cluster +# referenced in '$KUBECONFIG'. +ks diff -f ./pod.yaml + +# Show diff between resources described in a JSON file and the cluster +# referenced by the environment 'dev'. +ks diff dev -f ./pod.json + +# Show diff between resources described in a YAML file and the cluster +# referred to by './kubeconfig'. +ks diff --kubeconfig=./kubeconfig -f ./pod.yaml ``` ### Options diff --git a/docs/cli-reference/ks_env.md b/docs/cli-reference/ks_env.md index debd7934571dd66b97cfde616c7991443069416e..6d397b570323ebe245d05e952c5873f03d910919 100644 --- a/docs/cli-reference/ks_env.md +++ b/docs/cli-reference/ks_env.md @@ -6,7 +6,7 @@ Manage ksonnet environments An environment acts as a sort of "named cluster", allowing for commands like -'ks apply dev', which applies the ksonnet application to the "dev cluster". + `ks apply dev` , which applies the ksonnet application to the 'dev cluster'. Additionally, environments allow users to cache data about the cluster it points to, including data needed to run 'verify', and a version of ksonnet-lib that is generated based on the flags the API server was started with (e.g., RBAC enabled @@ -18,25 +18,27 @@ often contained in a kubeconfig file), and Environments are represented as a hierarchy in the 'environments' directory of a ksonnet application. For example, in the example below, there are two environments: 'default' and 'us-west/staging'. Each contains a cached version of -ksonnet-lib, and a 'spec.json' that contains the server and server cert that + `ksonnet-lib` , and a `spec.json` that contains the server and server cert that uniquely identifies the cluster. -environments/ - default/ [Default generated environment] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json - default.jsonnet - us-west/ - staging/ [Example of user-generated env] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json [This will contain the API server address of the environment and other environment metadata] - staging.jsonnet + environments/ + default/ [Default generated environment] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json + default.jsonnet + params.libsonnet + us-west/ + staging/ [Example of user-generated env] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json [This will contain the API server address of the environment and other environment metadata] + staging.jsonnet + params.libsonnet ``` ks env diff --git a/docs/cli-reference/ks_env_add.md b/docs/cli-reference/ks_env_add.md index 5cea351208c015adc44242c074c6acd9bb3961a1..5608089d1a7f8bb453df1b440fdf3961b158f527 100644 --- a/docs/cli-reference/ks_env_add.md +++ b/docs/cli-reference/ks_env_add.md @@ -6,34 +6,35 @@ Add a new environment to a ksonnet project Add a new environment to a ksonnet project. Names are restricted to not -include punctuation, so names like '../foo' are not allowed. +include punctuation, so names like `../foo` are not allowed. An environment acts as a sort of "named cluster", allowing for commands like -'ks apply dev', which applies the ksonnet application to the "dev cluster". -For more information on what an environment is and how they work, run 'help -env'. + `ks apply dev` , which applies the ksonnet application to the "dev cluster". +For more information on what an environment is and how they work, run `ks help env` . Environments are represented as a hierarchy in the 'environments' directory of a -ksonnet application, and hence 'env add' will add to this directory structure. +ksonnet application, and hence `ks env add` will add to this directory structure. For example, in the example below, there are two environments: 'default' and -'us-west/staging'. 'env add' will add a similar directory to this environment. - -environments/ - default/ [Default generated environment] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json - default.jsonnet - us-west/ - staging/ [Example of user-generated env] - .metadata/ - k.libsonnet - k8s.libsonnet - swagger.json - spec.json [This will contain the API server address of the environment and other environment metadata], - staging.jsonnet +'us-west/staging'. `ks env add` will add a similar directory to this environment. + + environments/ + default/ [Default generated environment] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json + default.jsonnet + params.libsonnet + us-west/ + staging/ [Example of user-generated env] + .metadata/ + k.libsonnet + k8s.libsonnet + swagger.json + spec.json [This will contain the API server address of the environment and other environment metadata], + staging.jsonnet + params.libsonnet ``` ks env add <env-name> @@ -42,20 +43,20 @@ ks env add <env-name> ### Examples ``` - # Initialize a new staging environment at 'us-west'. - # The environment will be setup using the current context in your kubecfg file. The directory - # structure rooted at 'us-west' in the documentation above will be generated. - ks env add us-west/staging +# Initialize a new staging environment at 'us-west'. +# The environment will be setup using the current context in your kubecfg file. The directory +# structure rooted at 'us-west' in the documentation above will be generated. +ks env add us-west/staging - # Initialize a new staging environment at 'us-west' with the namespace 'staging', using - # the OpenAPI specification generated in the Kubernetes v1.7.1 build to generate 'ksonnet-lib'. - ks env add us-west/staging --api-spec=version:v1.7.1 --namespace=staging +# Initialize a new staging environment at 'us-west' with the namespace 'staging', using +# the OpenAPI specification generated in the Kubernetes v1.7.1 build to generate 'ksonnet-lib'. +ks env add us-west/staging --api-spec=version:v1.7.1 --namespace=staging - # Initialize a new environment using the 'dev' context in your kubeconfig file. - ks env add my-env --context=dev +# Initialize a new environment using the 'dev' context in your kubeconfig file. +ks env add my-env --context=dev - # Initialize a new environment using a server address. - ks env add my-env --server=https://ksonnet-1.us-west.elb.amazonaws.com +# Initialize a new environment using a server address. +ks env add my-env --server=https://ksonnet-1.us-west.elb.amazonaws.com ``` ### Options diff --git a/docs/cli-reference/ks_env_rm.md b/docs/cli-reference/ks_env_rm.md index 5f373ccb0faac34ffdfa5ed902eecc12a6be74dc..654a885814e986673036ed0d7065360835fb109a 100644 --- a/docs/cli-reference/ks_env_rm.md +++ b/docs/cli-reference/ks_env_rm.md @@ -6,11 +6,8 @@ Delete an environment from a ksonnet project Delete an environment from a ksonnet project. This is the same -as removing the <env-name> environment directory and all files contained. If the -project exists in a hierarchy (e.g., 'us-east/staging') and deleting the -environment results in an empty environments directory (e.g., if deleting -'us-east/staging' resulted in an empty 'us-east/' directory), then all empty -parent directories are subsequently deleted. +as removing the <env-name> environment directory and all files contained. All empty +parent directories are also subsequently deleted. ``` ks env rm <env-name> @@ -19,10 +16,9 @@ ks env rm <env-name> ### Examples ``` - # Remove the directory 'us-west/staging' and all contents - # in the 'environments' directory. This will also remove the parent directory - # 'us-west' if it is empty. - ks env rm us-west/staging +# Remove the directory 'us-west/staging' and all contents in the 'environments' +# directory. This will also remove the parent directory 'us-west' if it is empty. +ks env rm us-west/staging ``` ### Options inherited from parent commands diff --git a/docs/cli-reference/ks_env_set.md b/docs/cli-reference/ks_env_set.md index 78f55086739aab8bfd62419023aadf13388c377a..3a4a4ff699b26e1ff734cd91fcdd16c274cc4b89 100644 --- a/docs/cli-reference/ks_env_set.md +++ b/docs/cli-reference/ks_env_set.md @@ -16,19 +16,19 @@ ks env set <env-name> ### Examples ``` - # Updates the API server address of the environment 'us-west/staging'. - ks env set us-west/staging --server=http://example.com +# Updates the API server address of the environment 'us-west/staging'. +ks env set us-west/staging --server=http://example.com - # Updates the namespace of the environment 'us-west/staging'. - ks env set us-west/staging --namespace=staging +# Updates the namespace of the environment 'us-west/staging'. +ks env set us-west/staging --namespace=staging - # Updates both the name and the server of the environment 'us-west/staging'. - # Updating the name will update the directory structure in 'environments'. - ks env set us-west/staging --server=http://example.com --name=us-east/staging +# Updates both the name and the server of the environment 'us-west/staging'. +# Updating the name will update the directory structure in 'environments'. +ks env set us-west/staging --server=http://example.com --name=us-east/staging - # Updates API server address of the environment 'us-west/staging' based on the - # server in the context 'staging-west' in your kubeconfig file. - ks env set us-west/staging --context=staging-west +# Updates API server address of the environment 'us-west/staging' based on the +# server in the context 'staging-west' in your kubeconfig file. +ks env set us-west/staging --context=staging-west ``` ### Options diff --git a/docs/cli-reference/ks_generate.md b/docs/cli-reference/ks_generate.md index d82b49dd46ac2fff28156487372554323cf92d03..ad0cfa510b66ab802c397d82e2daa344a42f0c85 100644 --- a/docs/cli-reference/ks_generate.md +++ b/docs/cli-reference/ks_generate.md @@ -5,20 +5,20 @@ Expand prototype, place in components/ directory of ksonnet app ### Synopsis -Expand prototype uniquely identified by (possibly partial) 'prototype-name', +Expand prototype uniquely identified by (possibly partial) `prototype-name` , filling in parameters from flags, and placing it into the file -'components/componentName', with the appropriate extension set. For example, the + `components/componentName` , with the appropriate extension set. For example, the following command will expand template 'io.ksonnet.pkg.single-port-deployment' -and place it in the file 'components/nginx-depl.jsonnet' (since by default +and place it in the file `components/nginx-depl.jsonnet` (since by default ksonnet will expand templates as Jsonnet). - ks prototype use io.ksonnet.pkg.single-port-deployment nginx-depl \ - --name=nginx \ - --image=nginx + ks prototype use io.ksonnet.pkg.single-port-deployment nginx-depl \ + --name=nginx \ + --image=nginx -Note also that 'prototype-name' need only contain enough of the suffix of a name +Note also that `prototype-name` need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may -resolve ambiguously, in which case 'use' will fail, while 'deployment' might be +resolve ambiguously, in which case `use` will fail, while 'deployment' might be unique enough to resolve to 'io.ksonnet.pkg.single-port-deployment'. ``` diff --git a/docs/cli-reference/ks_init.md b/docs/cli-reference/ks_init.md index 0fb7dbf7d4a8e9db10e71929b13c7c3b287eaa72..7613a73aab0daadeec3fd1bfaee3883802d22595 100644 --- a/docs/cli-reference/ks_init.md +++ b/docs/cli-reference/ks_init.md @@ -5,28 +5,24 @@ Initialize a ksonnet project ### Synopsis -Initialize a ksonnet project in a new directory, 'app-name'. This process +Initialize a ksonnet project in a new directory, `app-name`. This process consists of two steps: 1. Generating ksonnet-lib. Users can set flags to generate the library based on a variety of data, including server configuration and an OpenAPI specification of a Kubernetes build. By default, this is generated from the capabilities of the cluster specified in the cluster of the current context - specified in $KUBECONFIG. + specified in `$KUBECONFIG`. 2. Generating the following tree in the current directory. - app-name/ - .gitignore Default .gitignore; can customize VCS - .ksonnet/ Metadata for ksonnet - envs/ - default/ Default generated environment] - k.libsonnet - k8s.libsonnet - swagger.json - spec.json - components/ Top-level Kubernetes objects defining application - lib/ user-written .libsonnet files - vendor/ mixin libraries, prototypes + app-name/ + .gitignore Default .gitignore; can customize VCS + .ksonnet/ Metadata for ksonnet + environments/ + default/ [Default generated environment] + components/ Top-level Kubernetes objects defining application + lib/ user-written .libsonnet files + vendor/ part libraries, prototypes ``` @@ -36,22 +32,22 @@ ks init <app-name> ### Examples ``` - # Initialize ksonnet application, using the capabilities of live cluster - # specified in the $KUBECONFIG environment variable (specifically: the - # current context) to generate 'ksonnet-lib'. - ks init app-name - - # Initialize ksonnet application, using the OpenAPI specification generated - # in the Kubenetes v1.7.1 build to generate 'ksonnet-lib'. - ks init app-name --api-spec=version:v1.7.1 - - # Initialize ksonnet application, using an OpenAPI specification file - # generated by a build of Kubernetes to generate 'ksonnet-lib'. - ks init app-name --api-spec=file:swagger.json - - # Initialize ksonnet application, using the context 'dev' from the kubeconfig - # file. - ks init app-name --context=dev +# Initialize ksonnet application, using the capabilities of live cluster +# specified in the $KUBECONFIG environment variable (specifically: the +# current context) to generate 'ksonnet-lib'. +ks init app-name + +# Initialize ksonnet application, using the OpenAPI specification generated +# in the Kubenetes v1.7.1 build to generate 'ksonnet-lib'. +ks init app-name --api-spec=version:v1.7.1 + +# Initialize ksonnet application, using an OpenAPI specification file +# generated by a build of Kubernetes to generate 'ksonnet-lib'. +ks init app-name --api-spec=file:swagger.json + +# Initialize ksonnet application, using the context 'dev' from the kubeconfig +# file. +ks init app-name --context=dev ``` ### Options diff --git a/docs/cli-reference/ks_param.md b/docs/cli-reference/ks_param.md index a06aa10b7977bd5aa13a4df0e7bb44f7b6ea3700..242a1108b081fd71bdda89b2e7f88983f95edaba 100644 --- a/docs/cli-reference/ks_param.md +++ b/docs/cli-reference/ks_param.md @@ -16,7 +16,8 @@ demands. Environments are ksonnet "named clusters". For more information on environments, run: - ks env --help + + ks env --help ``` diff --git a/docs/cli-reference/ks_param_diff.md b/docs/cli-reference/ks_param_diff.md index b188812d69132939cb1ada51c3beb42ea77cee56..541721c2541cec84cafbe7dad3f938a1cb2d71ec 100644 --- a/docs/cli-reference/ks_param_diff.md +++ b/docs/cli-reference/ks_param_diff.md @@ -5,7 +5,7 @@ Display differences between the component parameters of two environments ### Synopsis -"Pretty prints differences between the component parameters of two environments. +Pretty prints differences between the component parameters of two environments. A component flag is accepted to diff against a single component. By default, the diff is performed against all components. @@ -18,11 +18,11 @@ ks param diff <env1> <env2> ### Examples ``` - # Diff between the component parameters on environments 'dev' and 'prod' - ks param diff dev prod +# Diff between the component parameters on environments 'dev' and 'prod' +ks param diff dev prod - # Diff between the component 'guestbook' on environments 'dev' and 'prod' - ks param diff dev prod --component=guestbook +# Diff between the component 'guestbook' on environments 'dev' and 'prod' +ks param diff dev prod --component=guestbook ``` ### Options diff --git a/docs/cli-reference/ks_param_list.md b/docs/cli-reference/ks_param_list.md index 28858775d05778583328c355a82bcee60e1e549c..59e88337d450aa015fbe3bc3473cac92c5d4a1e0 100644 --- a/docs/cli-reference/ks_param_list.md +++ b/docs/cli-reference/ks_param_list.md @@ -5,7 +5,7 @@ List all parameters for a component(s) ### Synopsis -"List all component parameters or environment parameters. +List all component parameters or environment parameters. This command will display all parameters for the component specified. If a component is not specified, parameters for all components will be listed. @@ -20,17 +20,17 @@ ks param list <component-name> ### Examples ``` - # List all component parameters - ks param list +# List all component parameters +ks param list - # List all parameters for the component "guestbook" - ks param list guestbook +# List all parameters for the component "guestbook" +ks param list guestbook - # List all parameters for the environment "dev" - ks param list --env=dev +# List all parameters for the environment "dev" +ks param list --env=dev - # List all parameters for the component "guestbook" in the environment "dev" - ks param list guestbook --env=dev +# List all parameters for the component "guestbook" in the environment "dev" +ks param list guestbook --env=dev ``` ### Options diff --git a/docs/cli-reference/ks_param_set.md b/docs/cli-reference/ks_param_set.md index 7a9e8df12a6d042c9c27d191886d6d45ae4fa275..4a187db0d0eada7354f9dab83a7ed40cb06d2800 100644 --- a/docs/cli-reference/ks_param_set.md +++ b/docs/cli-reference/ks_param_set.md @@ -5,13 +5,13 @@ Set component or environment parameters such as replica count or name ### Synopsis -"Set component or environment parameters such as replica count or name. +Set component or environment parameters such as replica count or name. Parameters are set individually, one at a time. If you require customization of more fields, we suggest that you modify your ksonnet project's -'components/params.libsonnet' file directly. Likewise, for greater customization + `components/params.libsonnet` file directly. Likewise, for greater customization of environment parameters, we suggest modifying the -'environments/:name/params.libsonnet' file. + `environments/:name/params.libsonnet` file. ``` @@ -21,12 +21,12 @@ ks param set <component-name> <param-key> <param-value> ### Examples ``` - # Updates the replica count of the 'guestbook' component to 4. - ks param set guestbook replicas 4 +# Updates the replica count of the 'guestbook' component to 4. +ks param set guestbook replicas 4 - # Updates the replica count of the 'guestbook' component to 2 for the environment - # 'dev' - ks param set guestbook replicas 2 --env=dev +# Updates the replica count of the 'guestbook' component to 2 for the environment +# 'dev' +ks param set guestbook replicas 2 --env=dev ``` ### Options diff --git a/docs/cli-reference/ks_pkg_describe.md b/docs/cli-reference/ks_pkg_describe.md index c117f910cbf6294c760da31b1b11d9b887f5b27f..514d16a2a5552be97674f3f0b741f69090076521 100644 --- a/docs/cli-reference/ks_pkg_describe.md +++ b/docs/cli-reference/ks_pkg_describe.md @@ -6,7 +6,7 @@ Describe a ksonnet package Output documentation for some ksonnet registry prototype uniquely identified in - the current ksonnet project by some 'registry-name'. +the current ksonnet project by some 'registry-name'. ``` ks pkg describe [<registry-name>/]<package-name> diff --git a/docs/cli-reference/ks_pkg_install.md b/docs/cli-reference/ks_pkg_install.md index 018b46535399537a180baa903281c82d9384f717..1eddae63e0facb1a1b8f37178dc54f858282f3f4 100644 --- a/docs/cli-reference/ks_pkg_install.md +++ b/docs/cli-reference/ks_pkg_install.md @@ -7,29 +7,29 @@ Install a package as a dependency in the current ksonnet application Cache a ksonnet library locally, and make it available for use in the current ksonnet project. This particularly means that we record enough information in -'app.yaml' for new users to retrieve the dependency after a fresh clone of the + `app.yaml` for new users to retrieve the dependency after a fresh clone of the app repository. For example, inside a ksonnet application directory, run: - ks pkg install incubator/nginx@v0.1 + ks pkg install incubator/nginx@v0.1 This can then be referenced in a source file in the ksonnet project: - local nginx = import "kspkg://nginx"; + local nginx = import "kspkg://nginx"; By default, ksonnet knows about two registries: incubator and stable, which are the release channels for official ksonnet libraries. Additional registries can -be added with the 'ks registry' command. +be added with the `ks registry` command. Note that multiple versions of the same ksonnet library can be cached and used -in the same project, by explicitly passing in the '--name' flag. For example: +in the same project, by explicitly passing in the `--name` flag. For example: - ks pkg install incubator/nginx@v0.1 --name nginxv1 - ks pkg install incubator/nginx@v0.2 --name nginxv2 + ks pkg install incubator/nginx@v0.1 --name nginxv1 + ks pkg install incubator/nginx@v0.2 --name nginxv2 -With these commands, a user can 'import "kspkg://nginx1"', and -'import "kspkg://nginx2"' with no conflict. +With these commands, a user can `import "kspkg://nginxv1"` , and + `import "kspkg://nginxv2"` with no conflict. ``` ks pkg install <registry>/<library>@<version> diff --git a/docs/cli-reference/ks_prototype.md b/docs/cli-reference/ks_prototype.md index 9f3962d4db55ac6de441d71b5e0c060358825c57..9a369956626d75b433fea0aadfe4ddd886ac55ba 100644 --- a/docs/cli-reference/ks_prototype.md +++ b/docs/cli-reference/ks_prototype.md @@ -9,14 +9,14 @@ Manage, inspect, instantiate, and get examples for ksonnet prototypes. Prototypes are Kubernetes app configuration templates with "holes" that can be filled in by (e.g.) the ksonnet CLI tool or a language server. For example, a -prototype for a 'apps.v1beta1.Deployment' might require a name and image, and +prototype for a `apps.v1beta1.Deployment` might require a name and image, and the ksonnet CLI could expand this to a fully-formed 'Deployment' object. Commands: - use Instantiate prototype, filling in parameters from flags, and - emitting the generated code to stdout. - describe Display documentation and details about a prototype - search Search for a prototype + use Instantiate prototype, filling in parameters from flags, and + emitting the generated code to stdout. + describe Display documentation and details about a prototype + search Search for a prototype ``` ks prototype @@ -25,31 +25,31 @@ ks prototype ### Examples ``` - # Display documentation about prototype - # 'io.ksonnet.pkg.prototype.simple-deployment', including: - # - # (1) a description of what gets generated during instantiation - # (2) a list of parameters that are required to be passed in with CLI flags - # - # NOTE: Many subcommands only require the user to specify enough of the - # identifier to disambiguate it among other known prototypes, which is why - # 'simple-deployment' is given as argument instead of the fully-qualified - # name. - ks prototype describe simple-deployment +# Display documentation about prototype +# 'io.ksonnet.pkg.prototype.simple-deployment', including: +# +# (1) a description of what gets generated during instantiation +# (2) a list of parameters that are required to be passed in with CLI flags +# +# NOTE: Many subcommands only require the user to specify enough of the +# identifier to disambiguate it among other known prototypes, which is why +# 'simple-deployment' is given as argument instead of the fully-qualified +# name. +ks prototype describe simple-deployment - # Instantiate prototype 'io.ksonnet.pkg.prototype.simple-deployment', using - # the 'nginx' image, and port 80 exposed. - # - # SEE ALSO: Note above for a description of why this subcommand can take - # 'simple-deployment' instead of the fully-qualified prototype name. - ks prototype use simple-deployment \ - --name=nginx \ - --image=nginx \ - --port=80 \ - --portName=http +# Instantiate prototype 'io.ksonnet.pkg.prototype.simple-deployment', using +# the 'nginx' image, and port 80 exposed. +# +# SEE ALSO: Note above for a description of why this subcommand can take +# 'simple-deployment' instead of the fully-qualified prototype name. +ks prototype use simple-deployment \ + --name=nginx \ + --image=nginx \ + --port=80 \ + --portName=http - # Search known prototype metadata for the string 'deployment'. - ks prototype search deployment +# Search known prototype metadata for the string 'deployment'. +ks prototype search deployment ``` ### Options inherited from parent commands diff --git a/docs/cli-reference/ks_prototype_describe.md b/docs/cli-reference/ks_prototype_describe.md index dd4e0bb9fc4d56a9afa06ec9da421d1bec357370..46f5af98db7f0d64bbac1f03d83e4b8c6be72ba1 100644 --- a/docs/cli-reference/ks_prototype_describe.md +++ b/docs/cli-reference/ks_prototype_describe.md @@ -6,13 +6,13 @@ Describe a ksonnet prototype Output documentation, examples, and other information for some ksonnet -prototype uniquely identified by some (possibly partial) 'prototype-name'. This +prototype uniquely identified by some (possibly partial) `prototype-name`. This includes: - (1) a description of what gets generated during instantiation - (2) a list of parameters that are required to be passed in with CLI flags + 1. a description of what gets generated during instantiation + 2. a list of parameters that are required to be passed in with CLI flags -'prototype-name' need only contain enough of the suffix of a name to uniquely +`prototype-name` need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may resolve ambiguously, in which case 'use' will fail, while 'simple-deployment' might be unique enough to resolve to 'io.ksonnet.pkg.prototype.simple-deployment'. @@ -24,16 +24,16 @@ ks prototype describe <prototype-name> ### Examples ``` - # Display documentation about prototype, including: - ks prototype describe io.ksonnet.pkg.prototype.simple-deployment - - # Display documentation about prototype using a unique suffix of an - # identifier. That is, this command only requires a long enough suffix to - # uniquely identify a ksonnet prototype. In this example, the suffix - # 'simple-deployment' is enough to uniquely identify - # 'io.ksonnet.pkg.prototype.simple-deployment', but 'deployment' might not - # be, as several names end with that suffix. - ks prototype describe simple-deployment +# Display documentation about prototype, including: +ks prototype describe io.ksonnet.pkg.prototype.simple-deployment + +# Display documentation about prototype using a unique suffix of an +# identifier. That is, this command only requires a long enough suffix to +# uniquely identify a ksonnet prototype. In this example, the suffix +# 'simple-deployment' is enough to uniquely identify +# 'io.ksonnet.pkg.prototype.simple-deployment', but 'deployment' might not +# be, as several names end with that suffix. +ks prototype describe simple-deployment ``` ### Options inherited from parent commands diff --git a/docs/cli-reference/ks_prototype_preview.md b/docs/cli-reference/ks_prototype_preview.md index 69b124fc64a89e6f3a855aa4b324eaac85b4eb30..2cecec55ffbf42e422108c0e2b670c048e5b6f1e 100644 --- a/docs/cli-reference/ks_prototype_preview.md +++ b/docs/cli-reference/ks_prototype_preview.md @@ -6,12 +6,12 @@ Expand prototype, emitting the generated code to stdout Expand prototype uniquely identified by (possibly partial) -'prototype-name', filling in parameters from flags, and emitting the generated + `prototype-name` , filling in parameters from flags, and emitting the generated code to stdout. -Note also that 'prototype-name' need only contain enough of the suffix of a name +Note also that `prototype-name` need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may -resolve ambiguously, in which case 'use' will fail, while 'deployment' might be +resolve ambiguously, in which case `use` will fail, while 'deployment' might be unique enough to resolve to 'io.ksonnet.pkg.single-port-deployment'. ``` @@ -21,17 +21,17 @@ ks prototype preview <prototype-name> [type] [parameter-flags] ### Examples ``` - # Preview prototype 'io.ksonnet.pkg.single-port-deployment', using the - # 'nginx' image, and port 80 exposed. - ks prototype preview io.ksonnet.pkg.prototype.simple-deployment \ - --name=nginx \ - --image=nginx - - # Preview prototype using a unique suffix of an identifier. See - # introduction of help message for more information on how this works. - ks prototype preview simple-deployment \ - --name=nginx \ - --image=nginx +# Preview prototype 'io.ksonnet.pkg.single-port-deployment', using the +# 'nginx' image, and port 80 exposed. +ks prototype preview io.ksonnet.pkg.prototype.simple-deployment \ + --name=nginx \ + --image=nginx + +# Preview prototype using a unique suffix of an identifier. See +# introduction of help message for more information on how this works. +ks prototype preview simple-deployment \ + --name=nginx \ + --image=nginx ``` ### Options inherited from parent commands diff --git a/docs/cli-reference/ks_prototype_search.md b/docs/cli-reference/ks_prototype_search.md index feeee7f2452d441c3b5412d6a714c5be4810cd3a..a679d931f4a2bc5873d01658c745a370b40ba0a7 100644 --- a/docs/cli-reference/ks_prototype_search.md +++ b/docs/cli-reference/ks_prototype_search.md @@ -5,7 +5,7 @@ Search for a ksonnet prototype ### Synopsis -Search ksonnet for prototypes whose names contain 'name-substring'. +Search ksonnet for prototypes whose names contain `name-substring` . ``` ks prototype search <name-substring> @@ -14,8 +14,8 @@ ks prototype search <name-substring> ### Examples ``` - # Search known prototype metadata for the string 'deployment'. - ks prototype search deployment +# Search known prototype metadata for the string 'deployment'. +ks prototype search deployment ``` ### Options inherited from parent commands diff --git a/docs/cli-reference/ks_prototype_use.md b/docs/cli-reference/ks_prototype_use.md index fe31d7964560f6c836973846baf2b6b337e5d38a..609a5ec501b96852d99e2d26b81b8a9bf4d822fa 100644 --- a/docs/cli-reference/ks_prototype_use.md +++ b/docs/cli-reference/ks_prototype_use.md @@ -5,20 +5,20 @@ Expand prototype, place in components/ directory of ksonnet app ### Synopsis -Expand prototype uniquely identified by (possibly partial) 'prototype-name', +Expand prototype uniquely identified by (possibly partial) `prototype-name` , filling in parameters from flags, and placing it into the file -'components/componentName', with the appropriate extension set. For example, the + `components/componentName` , with the appropriate extension set. For example, the following command will expand template 'io.ksonnet.pkg.single-port-deployment' -and place it in the file 'components/nginx-depl.jsonnet' (since by default +and place it in the file `components/nginx-depl.jsonnet` (since by default ksonnet will expand templates as Jsonnet). - ks prototype use io.ksonnet.pkg.single-port-deployment nginx-depl \ - --name=nginx \ - --image=nginx + ks prototype use io.ksonnet.pkg.single-port-deployment nginx-depl \ + --name=nginx \ + --image=nginx -Note also that 'prototype-name' need only contain enough of the suffix of a name +Note also that `prototype-name` need only contain enough of the suffix of a name to uniquely disambiguate it among known names. For example, 'deployment' may -resolve ambiguously, in which case 'use' will fail, while 'deployment' might be +resolve ambiguously, in which case `use` will fail, while 'deployment' might be unique enough to resolve to 'io.ksonnet.pkg.single-port-deployment'. ``` @@ -28,21 +28,21 @@ ks prototype use <prototype-name> <componentName> [type] [parameter-flags] ### Examples ``` - # Instantiate prototype 'io.ksonnet.pkg.single-port-deployment', using the - # 'nginx' image. The expanded prototype is placed in - # 'components/nginx-depl.jsonnet'. - ks prototype use io.ksonnet.pkg.prototype.simple-deployment nginx-depl \ - --name=nginx \ - --image=nginx - - # Instantiate prototype 'io.ksonnet.pkg.single-port-deployment' using the - # unique suffix, 'deployment'. The expanded prototype is again placed in - # 'components/nginx-depl.jsonnet'. See introduction of help message for more - # information on how this works. Note that if you have imported another - # prototype with this suffix, this may resolve ambiguously for you. - ks prototype use deployment nginx-depl \ - --name=nginx \ - --image=nginx +# Instantiate prototype 'io.ksonnet.pkg.single-port-deployment', using the +# 'nginx' image. The expanded prototype is placed in +# 'components/nginx-depl.jsonnet'. +ks prototype use io.ksonnet.pkg.prototype.simple-deployment nginx-depl \ + --name=nginx \ + --image=nginx + +# Instantiate prototype 'io.ksonnet.pkg.single-port-deployment' using the +# unique suffix, 'deployment'. The expanded prototype is again placed in +# 'components/nginx-depl.jsonnet'. See introduction of help message for more +# information on how this works. Note that if you have imported another +# prototype with this suffix, this may resolve ambiguously for you. +ks prototype use deployment nginx-depl \ + --name=nginx \ + --image=nginx ``` ### Options inherited from parent commands diff --git a/docs/cli-reference/ks_registry.md b/docs/cli-reference/ks_registry.md index 20a7a063435af987aab4c2c444698ea2d7f0e99e..58a1a241a0badd4c89709adc0335bcf9dd2ef7cd 100644 --- a/docs/cli-reference/ks_registry.md +++ b/docs/cli-reference/ks_registry.md @@ -32,5 +32,5 @@ ks registry ### SEE ALSO * [ks](ks.md) - Synchronise Kubernetes resources with config files * [ks registry describe](ks_registry_describe.md) - Describe a ksonnet registry -* [ks registry list](ks_registry_list.md) - List all registries known to current ksonnet app +* [ks registry list](ks_registry_list.md) - List all registries known to the current ksonnet app. diff --git a/docs/cli-reference/ks_registry_describe.md b/docs/cli-reference/ks_registry_describe.md index f037452cb3e7ba11ba430b4d99364f2373e9cdc5..a822f6b7fa92f52189eefa3cf5a7812584db5fff 100644 --- a/docs/cli-reference/ks_registry_describe.md +++ b/docs/cli-reference/ks_registry_describe.md @@ -6,7 +6,7 @@ Describe a ksonnet registry Output documentation for some ksonnet registry prototype uniquely identified in -the current ksonnet project by some 'registry-name'. +the current ksonnet project by some `registry-name`. ``` ks registry describe <registry-name> diff --git a/docs/cli-reference/ks_registry_list.md b/docs/cli-reference/ks_registry_list.md index 6c54bf4131fe40378953811b8ddee898ae16e537..75e9e2d47393c230ddf3c3df6f933f8ececc59d6 100644 --- a/docs/cli-reference/ks_registry_list.md +++ b/docs/cli-reference/ks_registry_list.md @@ -1,11 +1,11 @@ ## ks registry list -List all registries known to current ksonnet app +List all registries known to the current ksonnet app. ### Synopsis -List all registries known to current ksonnet app +List all registries known to the current ksonnet app. ``` ks registry list diff --git a/docs/cli-reference/ks_validate.md b/docs/cli-reference/ks_validate.md index 8932f3aec625b4cec9f3fcf95888bbd4e2e37905..272397c922d237e8b076fcf0154b6e7e00b71af7 100644 --- a/docs/cli-reference/ks_validate.md +++ b/docs/cli-reference/ks_validate.md @@ -18,21 +18,21 @@ ks validate [env-name] [-f <file-or-dir>] ### Examples ``` - # Validate all resources described in a ksonnet application, expanding - # ksonnet code with 'dev' environment where necessary (i.e., not YAML, JSON, - # or non-ksonnet Jsonnet code). - ksonnet validate dev +# Validate all resources described in a ksonnet application, expanding +# ksonnet code with 'dev' environment where necessary (i.e., not YAML, JSON, +# or non-ksonnet Jsonnet code). +ksonnet validate dev - # Validate resources described in a YAML file. - ksonnet validate -f ./pod.yaml +# Validate resources described in a YAML file. +ksonnet validate -f ./pod.yaml - # Validate resources described in the JSON file against existing resources - # in the cluster the 'dev' environment is pointing at. - ksonnet validate dev -f ./pod.yaml +# Validate resources described in the JSON file against existing resources +# in the cluster the 'dev' environment is pointing at. +ksonnet validate dev -f ./pod.yaml - # Validate resources described in a Jsonnet file. Does not expand using - # environment bindings. - ksonnet validate -f ./pod.jsonnet +# Validate resources described in a Jsonnet file. Does not expand using +# environment bindings. +ksonnet validate -f ./pod.jsonnet ``` ### Options