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
Copy file name to clipboardexpand all lines: api/swagger-spec/oapi-v1.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -28593,7 +28593,7 @@
28593
28593
"items": {
28594
28594
"$ref": "runtime.RawExtension"
28595
28595
},
28596
-
"description": "objects is an array of resources to include in this template."
28596
+
"description": "objects is an array of resources to include in this template. If a namespace value is hardcoded in the object, it will be removed during template instantiation, however if the namespace value is, or contains, a ${PARAMETER_REFERENCE}, the resolved value after parameter substitution will be respected and the object will be created in that namespace."
Copy file name to clipboardexpand all lines: api/swagger-spec/openshift-openapi-spec.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -56428,7 +56428,7 @@
56428
56428
"$ref": "#/definitions/v1.ObjectMeta"
56429
56429
},
56430
56430
"objects": {
56431
-
"description": "objects is an array of resources to include in this template.",
56431
+
"description": "objects is an array of resources to include in this template. If a namespace value is hardcoded in the object, it will be removed during template instantiation, however if the namespace value is, or contains, a ${PARAMETER_REFERENCE}, the resolved value after parameter substitution will be respected and the object will be created in that namespace.",
Copy file name to clipboardexpand all lines: pkg/openapi/zz_generated.openapi.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -23696,7 +23696,7 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{
23696
23696
},
23697
23697
"objects": {
23698
23698
SchemaProps: spec.SchemaProps{
23699
-
Description: "objects is an array of resources to include in this template.",
23699
+
Description: "objects is an array of resources to include in this template. If a namespace value is hardcoded in the object, it will be removed during template instantiation, however if the namespace value is, or contains, a ${PARAMETER_REFERENCE}, the resolved value after parameter substitution will be respected and the object will be created in that namespace.",
Copy file name to clipboardexpand all lines: pkg/template/api/v1/swagger_doc.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ var map_Template = map[string]string{
24
24
"": "Template contains the inputs needed to produce a Config.",
25
25
"metadata": "Standard object's metadata.",
26
26
"message": "message is an optional instructional message that will be displayed when this template is instantiated. This field should inform the user how to utilize the newly created resources. Parameter substitution will be performed on the message before being displayed so that generated credentials and other parameters can be included in the output.",
27
-
"objects": "objects is an array of resources to include in this template.",
27
+
"objects": "objects is an array of resources to include in this template. If a namespace value is hardcoded in the object, it will be removed during template instantiation, however if the namespace value is, or contains, a ${PARAMETER_REFERENCE}, the resolved value after parameter substitution will be respected and the object will be created in that namespace.",
28
28
"parameters": "parameters is an optional array of Parameters used during the Template to Config transformation.",
29
29
"labels": "labels is a optional set of labels that are applied to every object during the Template to Config transformation.",
# non-string parameterized values should be stripped
62
+
os::cmd::expect_failure_and_text 'oc new-app -f test/testdata/template-with-namespaces.json -o jsonpath="{.items[?(@.metadata.name==\"route-edge-refstripped\")].metadata.namespace}"''namespace is not found'
63
+
os::cmd::expect_failure_and_text 'oc new-app -f test/testdata/template-with-namespaces.json -o jsonpath="{.items[?(@.metadata.name==\"route-edge-prefix-refstripped\")].metadata.namespace}"''namespace is not found'
64
+
# ensure the objects can actually get created with a namespace specified
0 commit comments