Browse code

mark docker compose as experimental

Ben Parees authored on 2016/06/07 08:20:31
Showing 3 changed files
... ...
@@ -1291,7 +1291,7 @@ Display one or many resources
1291 1291
 
1292 1292
 
1293 1293
 == oc import app.json
1294
-Import an app.json definition into OpenShift
1294
+Import an app.json definition into OpenShift (experimental)
1295 1295
 
1296 1296
 ====
1297 1297
 
... ...
@@ -1308,7 +1308,7 @@ Import an app.json definition into OpenShift
1308 1308
 
1309 1309
 
1310 1310
 == oc import docker-compose
1311
-Import a docker-compose.yml project into OpenShift
1311
+Import a docker-compose.yml project into OpenShift (experimental)
1312 1312
 
1313 1313
 ====
1314 1314
 
... ...
@@ -39,7 +39,9 @@ During transformation fields in the app.json syntax that are not relevant when r
39 39
 a containerized platform will be ignored and a warning printed.
40 40
 
41 41
 The command will create objects unless you pass the -o yaml or --as-template flags to generate a
42
-configuration file for later use.`
42
+configuration file for later use.
43
+
44
+Experimental: This command is under active development and may change without notice.`
43 45
 
44 46
 	appJSONExample = `  # Import a directory containing an app.json file
45 47
   $ %[1]s app.json -f .
... ...
@@ -81,7 +83,7 @@ func NewCmdAppJSON(fullName string, f *clientcmd.Factory, in io.Reader, out, err
81 81
 	}
82 82
 	cmd := &cobra.Command{
83 83
 		Use:     "app.json -f APPJSON",
84
-		Short:   "Import an app.json definition into OpenShift",
84
+		Short:   "Import an app.json definition into OpenShift (experimental)",
85 85
 		Long:    appJSONLong,
86 86
 		Example: fmt.Sprintf(appJSONExample, fullName),
87 87
 		Run: func(cmd *cobra.Command, args []string) {
... ...
@@ -34,7 +34,9 @@ During transformation fields in the compose syntax that are not relevant when ru
34 34
 a containerized platform will be ignored and a warning printed.
35 35
 
36 36
 The command will create objects unless you pass the -o yaml or --as-template flags to generate a
37
-configuration file for later use.`
37
+configuration file for later use.
38
+
39
+Experimental: This command is under active development and may change without notice.`
38 40
 
39 41
 	dockerComposeExample = `  # Import a docker-compose.yml file into OpenShift
40 42
   %[1]s docker-compose -f ./docker-compose.yml
... ...
@@ -74,7 +76,7 @@ func NewCmdDockerCompose(fullName string, f *clientcmd.Factory, in io.Reader, ou
74 74
 	}
75 75
 	cmd := &cobra.Command{
76 76
 		Use:     "docker-compose -f COMPOSEFILE",
77
-		Short:   "Import a docker-compose.yml project into OpenShift",
77
+		Short:   "Import a docker-compose.yml project into OpenShift (experimental)",
78 78
 		Long:    dockerComposeLong,
79 79
 		Example: fmt.Sprintf(dockerComposeExample, fullName),
80 80
 		Run: func(cmd *cobra.Command, args []string) {