Skip to content

Commit

Permalink
Mark render YAML flag as beta
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Feb 7, 2020
1 parent 8908b1c commit d0bddc1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pkg/gen/dotnet-templates/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ public sealed class ProviderArgs : ResourceArgs
public Input<bool>? SuppressDeprecationWarnings { get; set; }

/// <summary>
/// If present, render resource manifests to this directory. In this mode, resources will not
/// BETA FEATURE - If present, render resource manifests to this directory. In this mode, resources will not
/// be created on a Kubernetes cluster, but the rendered manifests will be kept in sync with changes
/// to the Pulumi program.
/// to the Pulumi program. This feature is in developer preview, and is disabled by default.
///
/// Note that some computed Outputs such as status fields will not be populated
/// since the resources are not created on a Kubernetes cluster. These Output values will remain undefined,
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ public sealed class ProviderArgs : ResourceArgs
public Input<bool>? SuppressDeprecationWarnings { get; set; }

/// <summary>
/// If present, render resource manifests to this directory. In this mode, resources will not
/// BETA FEATURE - If present, render resource manifests to this directory. In this mode, resources will not
/// be created on a Kubernetes cluster, but the rendered manifests will be kept in sync with changes
/// to the Pulumi program.
/// to the Pulumi program. This feature is in developer preview, and is disabled by default.
///
/// Note that some computed Outputs such as status fields will not be populated
/// since the resources are not created on a Kubernetes cluster. These Output values will remain undefined,
Expand Down
4 changes: 2 additions & 2 deletions sdk/nodejs/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ export interface ProviderArgs {
*/
readonly suppressDeprecationWarnings?: pulumi.Input<boolean>;
/**
* If present, render resource manifests to this directory. In this mode, resources will not
* BETA FEATURE - If present, render resource manifests to this directory. In this mode, resources will not
* be created on a Kubernetes cluster, but the rendered manifests will be kept in sync with changes
* to the Pulumi program.
* to the Pulumi program. This feature is in developer preview, and is disabled by default.
*
* Note that some computed Outputs such as status fields will not be populated
* since the resources are not created on a Kubernetes cluster. These Output values will remain undefined,
Expand Down
7 changes: 4 additions & 3 deletions sdk/python/pulumi_kubernetes/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ def __init__(self,
This config can be specified in the following ways, using this precedence:
1. This `suppressDeprecationWarnings` parameter.
2. The `PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS` environment variable.
:param pulumi.Input[str] render_yaml_to_directory: If present, render resource manifests to this directory.
In this mode, resources will not be created on a Kubernetes cluster, but the rendered
manifests will be kept in sync with changes to the Pulumi program. Note that some
:param pulumi.Input[str] render_yaml_to_directory: BETA FEATURE - If present, render resource manifests to this
directory. In this mode, resources will not be created on a Kubernetes cluster, but
the rendered manifests will be kept in sync with changes to the Pulumi program.
This feature is in developer preview, and is disabled by default. Note that some
computed Outputs such as status fields will not be populated since the resources are
not created on a Kubernetes cluster. These Output values will remain undefined,
and may result in an error if they are referenced by other resources. Also note that
Expand Down

0 comments on commit d0bddc1

Please sign in to comment.