Skip to content

Commit 639ee1f

Browse files
authored
Merge pull request #51416 from HirazawaUi/add-doc-4369
Add documentation for graduating the RelaxedEnvironmentVariableValidation to GA.
2 parents a29bca9 + 68225ef commit 639ee1f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

content/en/docs/reference/command-line-tools-reference/feature-gates/RelaxedEnvironmentVariableValidation.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,11 @@ stages:
1313
- stage: beta
1414
defaultValue: true
1515
fromVersion: "1.32"
16+
toVersion: "1.33"
17+
- stage: stable
18+
defaultValue: true
19+
locked: true
20+
fromVersion: "1.34"
21+
1622
---
1723
Allow almost all printable ASCII characters in environment variables.

content/en/docs/tasks/inject-data-application/define-environment-variable-container.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,7 @@ Honorable`, and `Kubernetes`, respectively. The environment variable
102102
`MESSAGE` combines the set of all these environment variables and then uses it
103103
as a CLI argument passed to the `env-print-demo` container.
104104

105-
Environment variable names consist of letters, numbers, underscores,
106-
dots, or hyphens, but the first character cannot be a digit.
107-
If the `RelaxedEnvironmentVariableValidation` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/) is enabled,
108-
all [printable ASCII characters](https://www.ascii-code.com/characters/printable-characters) except "=" may be used for environment variable names.
105+
Environment variable names may consist of any [printable ASCII characters](https://www.ascii-code.com/characters/printable-characters) except '='.
109106

110107
```yaml
111108
apiVersion: v1

0 commit comments

Comments
 (0)