OSDN Git Service

updates roles.
[metasearch/grid-chef-repo.git] / roles / concourse-on-docker.rb
index a351b19..b85339e 100644 (file)
@@ -1,3 +1,19 @@
+#
+# Copyright 2017, whitestar
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 name 'concourse-on-docker'
 description 'Concourse on Docker'
 
@@ -19,9 +35,9 @@ run_list(
 override_attributes(
   # for https
   'ssl_cert' => {
-    'common_names' => [
+    #'common_names' => [
       #concourse_cn,
-    ],
+    #],
   },
   'docker-grid' => {
     'engine' => {
@@ -41,10 +57,10 @@ override_attributes(
         # Version 1 docker-compose format
         'concourse-web' => {
           'image' => image,
-          'ports' => [
+          #'ports' => [
             #"#{port}:8080",  # If you sepecify no value, Chef will sets '8080:8080'.
             #"#{port}:8443",  # for https
-          ],
+          #],
           'environment' => {
             # If you sepecify no value, Chef will sets "http://#{node['ipaddress']}:8080".
             #'CONCOURSE_EXTERNAL_URL' => "http://192.168.1.3:#{port}",  # or "https://192.168.1.3:#{port}"
@@ -53,11 +69,11 @@ override_attributes(
             #'CONCOURSE_TLS_CERT' => '/root/server.crt',
             #'CONCOURSE_TLS_KEY' => '/root/server.key',
           },
-          'volumes' => [
+          #'volumes' => [
             # These volumes will be set by the concourse-ci::docker-compose recipe automatically.
             #"#{server_cert_path(node['concourse-ci']['ssl_cert']['common_name'])}:/root/server.crt:ro",
             #"#{server_key_path(node['concourse-ci']['ssl_cert']['common_name'])}:/root/server.key:ro",
-          ],
+          #],
         },
         'concourse-worker' => {
           'image' => image,