summaryrefslogtreecommitdiffstats
path: root/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-07-08 14:48:08 -0400
committerGitHub <noreply@github.com>2016-07-08 14:48:08 -0400
commita2b368f82701cac41cbd904c63931d657d0673dd (patch)
tree4b645a13dcfe7be0f41de9089bbae3e1dc5ca514 /roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json
parente56ced5ac18b183611717198a73ff8a3bedb9237 (diff)
parent9328953e9fe11af544835ae7ebe1288b50862636 (diff)
downloadopenshift-a2b368f82701cac41cbd904c63931d657d0673dd.tar.gz
openshift-a2b368f82701cac41cbd904c63931d657d0673dd.tar.bz2
openshift-a2b368f82701cac41cbd904c63931d657d0673dd.tar.xz
openshift-a2b368f82701cac41cbd904c63931d657d0673dd.zip
Merge pull request #2133 from sdodson/image-stream-sync
Sync latest image stream content
Diffstat (limited to 'roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json')
-rw-r--r--roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json17
1 files changed, 16 insertions, 1 deletions
diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json
index 0adb02a46..08c7d3106 100644
--- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json
+++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json
@@ -84,7 +84,13 @@
"kind": "ImageStreamTag",
"namespace": "${NAMESPACE}",
"name": "nodejs:0.10"
- }
+ },
+ "env": [
+ {
+ "name": "NPM_MIRROR",
+ "value": "${NPM_MIRROR}"
+ }
+ ]
}
},
"output": {
@@ -237,18 +243,21 @@
"name": "NAMESPACE",
"displayName": "Namespace",
"description": "The OpenShift Namespace where the ImageStream resides.",
+ "required": true,
"value": "openshift"
},
{
"name": "MEMORY_LIMIT",
"displayName": "Memory Limit",
"description": "Maximum amount of memory the container can use.",
+ "required": true,
"value": "512Mi"
},
{
"name": "SOURCE_REPOSITORY_URL",
"displayName": "Git Repository URL",
"description": "The URL of the repository with your application source code.",
+ "required": true,
"value": "https://github.com/openshift/nodejs-ex.git"
},
{
@@ -303,6 +312,12 @@
"name": "MONGODB_ADMIN_PASSWORD",
"displayName": "Database Administrator Password",
"description": "Password for the database admin user."
+ },
+ {
+ "name": "NPM_MIRROR",
+ "displayName": "Custom NPM Mirror URL",
+ "description": "The custom NPM mirror URL",
+ "value": ""
}
]
}