Signed-off-by: John Howard (VM) <jhoward@ntdev.microsoft.com>
| ... | ... |
@@ -115,7 +115,6 @@ type containerOptions struct {
|
| 115 | 115 |
autoRemove bool |
| 116 | 116 |
init bool |
| 117 | 117 |
initPath string |
| 118 |
- credentialSpec string |
|
| 119 | 118 |
|
| 120 | 119 |
Image string |
| 121 | 120 |
Args []string |
| ... | ... |
@@ -188,8 +187,6 @@ func addFlags(flags *pflag.FlagSet) *containerOptions {
|
| 188 | 188 |
flags.BoolVar(&copts.privileged, "privileged", false, "Give extended privileges to this container") |
| 189 | 189 |
flags.Var(&copts.securityOpt, "security-opt", "Security Options") |
| 190 | 190 |
flags.StringVar(&copts.usernsMode, "userns", "", "User namespace to use") |
| 191 |
- flags.StringVar(&copts.credentialSpec, "credentialspec", "", "Credential spec for managed service account (Windows only)") |
|
| 192 |
- flags.SetAnnotation("credentialspec", "ostype", []string{"windows"})
|
|
| 193 | 191 |
|
| 194 | 192 |
// Network and port publishing flag |
| 195 | 193 |
flags.Var(&copts.extraHosts, "add-host", "Add a custom host-to-IP mapping (host:ip)") |