Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
subject to change. Similarly, RFC9535 is still only _proposed_ and may also
change in the future.

- `enableConfigMapMutable` and `enableSecretMutable` are now stable.
(https://github.com/pulumi/pulumi-kubernetes/pull/3886)

### Fixed

- Helm resources all now use the correct `registry/config.json` file for
Expand Down
4 changes: 2 additions & 2 deletions provider/cmd/pulumi-resource-kubernetes/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@
},
"enableConfigMapMutable": {
"type": "boolean",
"description": "BETA FEATURE - If present and set to true, allow ConfigMaps to be mutated.\nThis feature is in developer preview, and is disabled by default.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableConfigMapMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_CONFIGMAP_MUTABLE` environment variable."
"description": "If present and set to true, allow ConfigMaps to be mutated.\nDisabled by default for backward-compatibility.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableConfigMapMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_CONFIGMAP_MUTABLE` environment variable."
},
"enableReplaceCRD": {
"type": "boolean",
Expand All @@ -538,7 +538,7 @@
},
"enableSecretMutable": {
"type": "boolean",
"description": "BETA FEATURE - If present and set to true, allow Secrets to be mutated.\nThis feature is in developer preview, and is disabled by default.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableSecretMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_SECRET_MUTABLE` environment variable."
"description": "If present and set to true, allow Secrets to be mutated.\nDisabled by default for backward compatibility.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableSecretMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_SECRET_MUTABLE` environment variable."
},
"enableServerSideApply": {
"type": "boolean",
Expand Down
4 changes: 2 additions & 2 deletions provider/pkg/gen/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@ func PulumiSchema(swagger map[string]any, opts ...schemaGeneratorOption) pschema
DeprecationMessage: "This option is deprecated, and will be removed in a future release.",
},
"enableConfigMapMutable": {
Description: "BETA FEATURE - If present and set to true, allow ConfigMaps to be mutated.\nThis feature is in developer preview, and is disabled by default.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableConfigMapMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_CONFIGMAP_MUTABLE` environment variable.",
Description: "If present and set to true, allow ConfigMaps to be mutated.\nDisabled by default for backward-compatibility.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableConfigMapMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_CONFIGMAP_MUTABLE` environment variable.",
TypeSpec: pschema.TypeSpec{Type: "boolean"},
},
"enableSecretMutable": {
Description: "BETA FEATURE - If present and set to true, allow Secrets to be mutated.\nThis feature is in developer preview, and is disabled by default.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableSecretMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_SECRET_MUTABLE` environment variable.",
Description: "If present and set to true, allow Secrets to be mutated.\nDisabled by default for backward compatibility.\n\nThis config can be specified in the following ways using this precedence:\n1. This `enableSecretMutable` parameter.\n2. The `PULUMI_K8S_ENABLE_SECRET_MUTABLE` environment variable.",
TypeSpec: pschema.TypeSpec{Type: "boolean"},
},
"renderYamlToDirectory": {
Expand Down
8 changes: 4 additions & 4 deletions sdk/dotnet/Config/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public static bool? DeleteUnreachable

private static readonly __Value<bool?> _enableConfigMapMutable = new __Value<bool?>(() => __config.GetBoolean("enableConfigMapMutable"));
/// <summary>
/// BETA FEATURE - If present and set to true, allow ConfigMaps to be mutated.
/// This feature is in developer preview, and is disabled by default.
/// If present and set to true, allow ConfigMaps to be mutated.
/// Disabled by default for backward-compatibility.
///
/// This config can be specified in the following ways using this precedence:
/// 1. This `enableConfigMapMutable` parameter.
Expand All @@ -103,8 +103,8 @@ public static bool? EnableReplaceCRD

private static readonly __Value<bool?> _enableSecretMutable = new __Value<bool?>(() => __config.GetBoolean("enableSecretMutable"));
/// <summary>
/// BETA FEATURE - If present and set to true, allow Secrets to be mutated.
/// This feature is in developer preview, and is disabled by default.
/// If present and set to true, allow Secrets to be mutated.
/// Disabled by default for backward compatibility.
///
/// This config can be specified in the following ways using this precedence:
/// 1. This `enableSecretMutable` parameter.
Expand Down
8 changes: 4 additions & 4 deletions sdk/go/kubernetes/config/config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions sdk/java/src/main/java/com/pulumi/kubernetes/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public Optional<Boolean> deleteUnreachable() {
return Codegen.booleanProp("deleteUnreachable").config(config).get();
}
/**
* BETA FEATURE - If present and set to true, allow ConfigMaps to be mutated.
* This feature is in developer preview, and is disabled by default.
* If present and set to true, allow ConfigMaps to be mutated.
* Disabled by default for backward-compatibility.
*
* This config can be specified in the following ways using this precedence:
* 1. This `enableConfigMapMutable` parameter.
Expand All @@ -63,8 +63,8 @@ public Optional<Boolean> enableReplaceCRD() {
return Codegen.booleanProp("enableReplaceCRD").config(config).get();
}
/**
* BETA FEATURE - If present and set to true, allow Secrets to be mutated.
* This feature is in developer preview, and is disabled by default.
* If present and set to true, allow Secrets to be mutated.
* Disabled by default for backward compatibility.
*
* This config can be specified in the following ways using this precedence:
* 1. This `enableSecretMutable` parameter.
Expand Down
Loading