Skip to content

Commit e6b3d7e

Browse files
ostermanclaude
andcommitted
feat(kubernetes): mark atmos kubernetes command experimental
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 71f4a82 commit e6b3d7e

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

cmd/kubernetes/kubernetes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func (p *CommandProvider) GetCompatibilityFlags() map[string]compat.Compatibilit
8383
}
8484

8585
func (p *CommandProvider) IsExperimental() bool {
86-
return false
86+
return true
8787
}
8888

8989
func newOperationCommand(name string, short string) *cobra.Command {

cmd/kubernetes/kubernetes_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func TestCommandProviderMetadata(t *testing.T) {
4949
assert.Nil(t, provider.GetFlagsBuilder())
5050
assert.Nil(t, provider.GetPositionalArgsBuilder())
5151
assert.Nil(t, provider.GetCompatibilityFlags())
52-
assert.False(t, provider.IsExperimental())
52+
assert.True(t, provider.IsExperimental())
5353

5454
var subcommands []string
5555
for _, cmd := range provider.GetCommand().Commands() {

docs/prd/experimental-features-system.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ The following commands are marked as experimental:
183183
| `atmos terraform backend` | Terraform state backend management |
184184
| `atmos terraform workdir` | Component working directory management |
185185
| `atmos list affected` | Identify changes for targeted CI/CD |
186+
| `atmos kubernetes` | Manage Kubernetes-native components |
186187

187188
## Implementation Details
188189

0 commit comments

Comments
 (0)