Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc for Kustomize deploy: path option #1527

Merged
merged 1 commit into from
Jan 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/en/docs/how-tos/deployers/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ section of `skaffold.yaml`. The `kustomize` type offers the following options:

|Option|Description|
|----|----|
|`kustomizePath`| <b>Optional</b> Path to Kustomization files. The default value is `.` (current directory).|
|`path`| <b>Optional</b> Path to Kustomization files. The default value is `.` (current directory).|
|`flags`| OPTIONAL. Additional flags to pass to `kubectl`. You can specify three types of flags: <ul> <li>`global`: flags that apply to every command.</li> <li>`apply`: flags that apply to creation commands.</li> <li>`delete`: flags that apply to deletion commands.</li> <ul> |

The following `deploy` section, for example, instructs Skaffold to deploy
Expand All @@ -153,7 +153,7 @@ apiVersion: {{< skaffold-version >}}
kind: Config
deploy:
kustomize:
kustomizePath: "."
path: "."
# The deploy section above is equal to
# apiVersion: {{< skaffold-version >}}
# kind: Config
Expand Down