instance.cfg.in 4.86 KB
Newer Older
1 2 3
[buildout]
parts =
  instance
4 5
  ipython_notebook
  read-knowledge0
6
  publish-connection-parameter
Ayush Tiwari's avatar
Ayush Tiwari committed
7 8 9
  erp5-kernel
  kernel-json
  custom-js
10 11 12
  monitor-base
extends =
  {{ monitor_template_rendered }}/template-monitor.cfg
13 14 15 16 17 18 19


eggs-directory = {{ eggs_directory }}
develop-eggs-directory = {{ develop_eggs_directory }}
offline = true

[slapconfiguration]
20
recipe = slapos.cookbook:slapconfiguration.serialised
21 22 23 24 25 26
computer = ${slap-connection:computer-id}
partition = ${slap-connection:partition-id}
url = ${slap-connection:server-url}
key = ${slap-connection:key-file}
cert = ${slap-connection:cert-file}

27 28 29 30
# ERP5 URL to use in Jupyter by default
# default value is empty - which means no default ERP5 URL
configuration.erp5-url =

31 32 33 34 35 36 37 38
[instance-parameter]
port = 8888
host = ${slapconfiguration:ipv6-random}
cert_file = ${generate-certificate:cert_file}
key_file = ${generate-certificate:key_file}
logfile = ${directory:log}/ipython_notebook.log
notebook_dir = ${directory:notebook_dir}

39 40 41 42
[dynamic-jinja2-template-base]
recipe = slapos.recipe.template:jinja2
mode = 0644

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
[generate-certificate]
; TODO: there is a slapos recipe to generate certificates. Use it instead
recipe = plone.recipe.command
command =
  if [ ! -e ${instance-parameter:key_file} ]
  then
    {{ openssl_output }} req -x509 -nodes -days 3650 \
      -subj "/C=AA/ST=X/L=X/O=Dis/CN=${instance-parameter:host}" \
      -newkey rsa:1024 -keyout ${instance-parameter:key_file} \
      -out ${instance-parameter:cert_file}
  fi
update-command = ${:command}
cert_file = ${directory:etc}/ipython_notebook_cert.crt
key_file = ${directory:etc}/ipython_notebook_cert.key

[instance]
recipe = slapos.cookbook:wrapper
command-line =
  {{ bin_directory }}/ipython notebook
  --no-browser
  --ip=${instance-parameter:host}
  --port=${instance-parameter:port}
  --port-retries=0
  --certfile=${instance-parameter:cert_file}
  --keyfile=${instance-parameter:key_file}
  --notebook-dir=${instance-parameter:notebook_dir}
  --logfile=${instance-parameter:logfile}
  --config=${ipython-notebook-config:rendered}
71 72 73
# Add 'log-level' alias to 'DEBUG' so as to log requests being done while running
# of service ipython_notebook.
  --log-level="DEBUG"
74 75
wrapper-path = ${directory:service}/ipython_notebook
parameters-extra = true
76
# Explicitly define IPython Directory to be used while starting ipython notebook
77 78 79
environment =
  IPYTHONDIR=${directory:ipython_dir}
  JUPYTER_CONFIG_DIR=${directory:ipython_dir}
80 81

[ipython-notebook-config]
82
<= dynamic-jinja2-template-base
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
template = {{ ipython_notebook_config_location }}/{{ ipython_notebook_config_filename }}
rendered = ${directory:etc}/ipython_notebook_config.py
mode = 0744
context =
  raw config_cfg ${buildout:directory}/knowledge0.cfg

[directory]
recipe = slapos.cookbook:mkdirectory
home = ${buildout:directory}
etc = ${:home}/etc
var = ${:home}/var
script = ${:etc}/run/
service = ${:etc}/service
promise = ${:etc}/promise/
log = ${:var}/log
notebook_dir = ${:var}/notebooks
99 100 101
# Add folders to explicitly define ipython directory
ipython_dir = ${:home}/ipython
ipython_kernel_dir = ${:ipython_dir}/kernels
Ayush Tiwari's avatar
Ayush Tiwari committed
102
erp5_kernel_dir = ${:ipython_kernel_dir}/ERP5
103

104 105 106 107 108 109 110 111 112 113
[ipython_notebook]
# This part is called like this because knowledge0.write uses the part name for
# the section name in the config file.
recipe = slapos.cookbook:zero-knowledge.write
password = 
filename = knowledge0.cfg

[read-knowledge0]
recipe = slapos.cookbook:zero-knowledge.read
filename = knowledge0.cfg
114
password =
115 116 117 118 119 120 121 122 123 124

[monitor-instance-parameter]
monitor-base-url = ${monitor-frontend-promise:url}
# In case you're using a developer instance you should edit these in:
# monitor-base-url = ${monitor-httpd-conf-parameter:url}
# cors-domains = softinstXXXXX.host.vifib.net (or equivalent)
# interface-url = https://softinstXXXXX.host.vifib.net/erp5/web_site_module/monitoring_rjs_unsafe
instance-configuration =
  raw jupyter-password ${read-knowledge0:password}

125
[publish-connection-parameter]
126
recipe = slapos.cookbook:publish.serialised
127
url = https://[${instance-parameter:host}]:${instance-parameter:port}
Ayush Tiwari's avatar
Ayush Tiwari committed
128 129 130 131 132 133 134 135

[erp5-kernel]
<= dynamic-jinja2-template-base
template = {{ erp5_kernel_location }}/{{ erp5_kernel_filename }}
rendered = ${directory:erp5_kernel_dir}/ERP5kernel.py
# Use ipython as executable python as we'll be needing requests library in kernel
context =
  raw python_executable {{ bin_directory }}/ipython
136
  key erp5_url slapconfiguration:configuration.erp5-url
Ayush Tiwari's avatar
Ayush Tiwari committed
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

[kernel-json]
<= dynamic-jinja2-template-base
template = {{ kernel_json_location }}/{{ kernel_json_filename }}
rendered = ${directory:erp5_kernel_dir}/kernel.json
# Use python2.7 executable bin file for kernel config
context =
  raw python_executable {{ python_executable }}
  key kernel_dir erp5-kernel:rendered
  raw display_name ERP5
  raw language_name python

[custom-js]
<= dynamic-jinja2-template-base
template = {{ custom_js_location }}/{{ custom_js_filename }}
rendered = ${directory:ipython_dir}/profile_default/static/custom/custom.js
mode = 0744
154