You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -117,7 +117,6 @@ function provisionOptions(y: Argv) {
117
117
'additional-features': {type: 'string',description: 'Additional features to apply to the dev container (JSON as per "features" section in devcontainer.json)'},
118
118
'skip-feature-auto-mapping': {type: 'boolean',default: false,hidden: true,description: 'Temporary option for testing.'},
119
119
'skip-post-attach': {type: 'boolean',default: false,description: 'Do not run postAttachCommand.'},
120
-
'experimental-image-metadata': {type: 'boolean',default: experimentalImageMetadataDefault,hidden: true,description: 'Temporary option for testing.'},
121
120
'dotfiles-repository': {type: 'string',description: 'URL of a dotfiles Git repository (e.g., https://github.com/owner/repository.git)'},
122
121
'dotfiles-install-command': {type: 'string',description: 'The command to run after cloning the dotfiles repository. Defaults to run the first file of `install.sh`, `install`, `bootstrap.sh`, `bootstrap`, `setup.sh` and `setup` found in the dotfiles repository`s root folder.'},
123
122
'dotfiles-target-path': {type: 'string',default: '~/dotfiles',description: 'The path to clone the dotfiles repository to. Defaults to `~/dotfiles`.'},
@@ -467,7 +463,6 @@ function buildOptions(y: Argv) {
467
463
'output': {type: 'string',description: 'Overrides the default behavior to load built images into the local docker registry. Valid options are the same ones provided to the --output option of docker buildx build.'},
468
464
'additional-features': {type: 'string',description: 'Additional features to apply to the dev container (JSON as per "features" section in devcontainer.json)'},
469
465
'skip-feature-auto-mapping': {type: 'boolean',default: false,hidden: true,description: 'Temporary option for testing.'},
470
-
'experimental-image-metadata': {type: 'boolean',default: experimentalImageMetadataDefault,hidden: true,description: 'Temporary option for testing.'},
471
466
'skip-persisting-customizations-from-features': {type: 'boolean',default: false,hidden: true,description: 'Do not save customizations from referenced Features as image metadata'},
@@ -692,7 +685,6 @@ function runUserCommandsOptions(y: Argv) {
692
685
'remote-env': {type: 'string',description: 'Remote environment variables of the format name=value. These will be added when executing the user commands.'},
693
686
'skip-feature-auto-mapping': {type: 'boolean',default: false,hidden: true,description: 'Temporary option for testing.'},
694
687
'skip-post-attach': {type: 'boolean',default: false,description: 'Do not run postAttachCommand.'},
695
-
'experimental-image-metadata': {type: 'boolean',default: experimentalImageMetadataDefault,hidden: true,description: 'Temporary option for testing.'},
696
688
'dotfiles-repository': {type: 'string',description: 'URL of a dotfiles Git repository (e.g., https://github.com/owner/repository.git)'},
697
689
'dotfiles-install-command': {type: 'string',description: 'The command to run after cloning the dotfiles repository. Defaults to run the first file of `install.sh`, `install`, `bootstrap.sh`, `bootstrap`, `setup.sh` and `setup` found in the dotfiles repository`s root folder.'},
698
690
'dotfiles-target-path': {type: 'string',default: '~/dotfiles',description: 'The path to clone the dotfiles repository to. Defaults to `~/dotfiles`.'},
@@ -750,7 +742,6 @@ async function doRunUserCommands({
'additional-features': {type: 'string',description: 'Additional features to apply to the dev container (JSON as per "features" section in devcontainer.json)'},
884
874
'skip-feature-auto-mapping': {type: 'boolean',default: false,hidden: true,description: 'Temporary option for testing.'},
885
-
'experimental-image-metadata': {type: 'boolean',default: experimentalImageMetadataDefault,hidden: true,description: 'Temporary option for testing.'},
@@ -1043,7 +1031,6 @@ function execOptions(y: Argv) {
1043
1031
'default-user-env-probe': {choices: ['none'as'none','loginInteractiveShell'as'loginInteractiveShell','interactiveShell'as'interactiveShell','loginShell'as'loginShell'],default: defaultDefaultUserEnvProbe,description: 'Default value for the devcontainer.json\'s "userEnvProbe".'},
1044
1032
'remote-env': {type: 'string',description: 'Remote environment variables of the format name=value. These will be added when executing the user commands.'},
1045
1033
'skip-feature-auto-mapping': {type: 'boolean',default: false,hidden: true,description: 'Temporary option for testing.'},
1046
-
'experimental-image-metadata': {type: 'boolean',default: experimentalImageMetadataDefault,hidden: true,description: 'Temporary option for testing.'},
1047
1034
})
1048
1035
.positional('cmd',{
1049
1036
type: 'string',
@@ -1105,7 +1092,6 @@ export async function doExec({
Copy file name to clipboardExpand all lines: src/spec-node/featuresCLI/test.ts
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,6 @@ export function featuresTestOptions(y: Argv) {
19
19
'base-image': {type: 'string',alias: 'i',default: 'ubuntu:focal',description: 'Base Image. Not used for scenarios.'},// TODO: Optionally replace 'scenario' configs with this value?
20
20
'remote-user': {type: 'string',alias: 'u',describe: 'Remote user. Not used for scenarios.',},// TODO: Optionally replace 'scenario' configs with this value?
'skip-image-metadata': {type: 'boolean',default: false,description: 'Skip applying image metadata to the resultant test image. Image metadata is potentially appended to base images built with the dev container CLI'},
0 commit comments