diff --git a/docs/cmd_reference.md b/docs/cmd_reference.md index e674f248..c89ad16d 100644 --- a/docs/cmd_reference.md +++ b/docs/cmd_reference.md @@ -1,5 +1,5 @@ --- -version: v1.7.3 +version: v1.9.0 --- # CMD reference @@ -63,3 +63,6 @@ This is the list of the available CMD options in Helmsman: `--kubeconfig` path to the kubeconfig file to use for CLI requests + + `--target` + limit execution to specific app. diff --git a/docs/desired_state_specification.md b/docs/desired_state_specification.md index d68b6449..e23aa29f 100644 --- a/docs/desired_state_specification.md +++ b/docs/desired_state_specification.md @@ -1,5 +1,5 @@ --- -version: v1.8.0 +version: v1.9.0 --- # Helmsman desired state specification @@ -16,6 +16,8 @@ This document describes the specification for how to write your Helm charts desi > You can use environment variables in the desired state files. The environment variable name should start with "$", or encapsulated in "${", "}". "$" characters can be escaped like "$$". +> Starting from v1.9.0, you can also use environment variables in your helm values/secrets files. + ## Metadata Optional : Yes. diff --git a/docs/how_to/README.md b/docs/how_to/README.md index b2915641..1bffb1e2 100644 --- a/docs/how_to/README.md +++ b/docs/how_to/README.md @@ -1,6 +1,3 @@ ---- -version: v1.8.0 ---- # How To Guides @@ -21,7 +18,7 @@ This page contains a list of guides on how to use Helmsman. - [Deploy shared Tiller in kube-system](tiller/shared.md) - [Prevent Deploying Tiller in kube-system](tiller/prevent_tiller_in_kube_system.md) - [Deploy Multiple Tillers with custom setup for each](tiller/multitenancy.md) - - [Deploy apps with specific Tillers](deploy_apps_with_specific_tiller.md) + - [Deploy apps with specific Tillers](tiller/deploy_apps_with_specific_tiller.md) - Defining Helm repositories - [Using default helm repos](helm_repos/default.md) - [Using private repos in Google GCS](helm_repos/gcs.md) @@ -41,10 +38,12 @@ This page contains a list of guides on how to use Helmsman. - [Delete all releases (apps)](apps/destroy.md) - Running Helmsman in different environments - [Running Helmsman in CI](deployment/ci.md) - - [Running Helmsman inside your k8s cluster](inside_k8s.md) + - [Running Helmsman inside your k8s cluster](deployment/inside_k8s.md) - Misc - - [Authenticating to cloud storage providers](auth_to_storage_providers.md) - - [Send slack notifications from Helmsman](send_slack_notifications_from_helmsman.md) - - [Merge multiple desired state files](merge_desired_state_files.md) - - [Multitenant clusters guide](multitenant_clusters_guide.md) - - [Helmsman on Windows 10](helmsman_on_windows10.md) + - [Authenticating to cloud storage providers](misc/auth_to_storage_providers.md) + - [Protecting namespaces and releases](misc/protect_namespaces_and_releases.md) + - [Send slack notifications from Helmsman](misc/send_slack_notifications_from_helmsman.md) + - [Merge multiple desired state files](misc/merge_desired_state_files.md) + - [Limit Helmsman deployment to specific apps](misc/limit-deployment-to-specific-apps.md) + - [Multitenant clusters guide](misc/multitenant_clusters_guide.md) + - [Helmsman on Windows 10](misc/helmsman_on_windows10.md) diff --git a/docs/how_to/auth_to_storage_providers.md b/docs/how_to/misc/auth_to_storage_providers.md similarity index 100% rename from docs/how_to/auth_to_storage_providers.md rename to docs/how_to/misc/auth_to_storage_providers.md diff --git a/docs/how_to/helmsman_on_windows10.md b/docs/how_to/misc/helmsman_on_windows10.md similarity index 100% rename from docs/how_to/helmsman_on_windows10.md rename to docs/how_to/misc/helmsman_on_windows10.md diff --git a/docs/how_to/limit-deployment-to-specific-apps.md b/docs/how_to/misc/limit-deployment-to-specific-apps.md similarity index 100% rename from docs/how_to/limit-deployment-to-specific-apps.md rename to docs/how_to/misc/limit-deployment-to-specific-apps.md diff --git a/docs/how_to/merge_desired_state_files.md b/docs/how_to/misc/merge_desired_state_files.md similarity index 100% rename from docs/how_to/merge_desired_state_files.md rename to docs/how_to/misc/merge_desired_state_files.md diff --git a/docs/how_to/multitenant_clusters_guide.md b/docs/how_to/misc/multitenant_clusters_guide.md similarity index 100% rename from docs/how_to/multitenant_clusters_guide.md rename to docs/how_to/misc/multitenant_clusters_guide.md diff --git a/docs/how_to/protect_namespaces_and_releases.md b/docs/how_to/misc/protect_namespaces_and_releases.md similarity index 100% rename from docs/how_to/protect_namespaces_and_releases.md rename to docs/how_to/misc/protect_namespaces_and_releases.md diff --git a/docs/how_to/send_slack_notifications_from_helmsman.md b/docs/how_to/misc/send_slack_notifications_from_helmsman.md similarity index 100% rename from docs/how_to/send_slack_notifications_from_helmsman.md rename to docs/how_to/misc/send_slack_notifications_from_helmsman.md