Change-Id: I34e1aabf0fe91375688e9b92f67b89da693895ac
This commit is contained in:
zhangdebo 2018-06-08 15:38:44 +08:00
parent 2dbfd7af74
commit 3d06637c11
3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ QINLING_CONF_DIR=${QINLING_CONF_DIR:-/etc/qinling}
QINLING_CONF_FILE=${QINLING_CONF_DIR}/qinling.conf QINLING_CONF_FILE=${QINLING_CONF_DIR}/qinling.conf
QINLING_POLICY_FILE=${QINLING_CONF_DIR}/policy.json QINLING_POLICY_FILE=${QINLING_CONF_DIR}/policy.json
QINLING_AUTH_CACHE_DIR=${QINLING_AUTH_CACHE_DIR:-/var/cache/qinling} QINLING_AUTH_CACHE_DIR=${QINLING_AUTH_CACHE_DIR:-/var/cache/qinling}
QINLING_FUNCTION_STORAGE_DIR=${QINLING_FUNCTION_STORAGE_DIR:-/opt/qinling/funtion/packages} QINLING_FUNCTION_STORAGE_DIR=${QINLING_FUNCTION_STORAGE_DIR:-/opt/qinling/function/packages}
QINLING_PYTHON_RUNTIME_IMAGE=${QINLING_PYTHON_RUNTIME_IMAGE:-openstackqinling/python-runtime:0.0.3} QINLING_PYTHON_RUNTIME_IMAGE=${QINLING_PYTHON_RUNTIME_IMAGE:-openstackqinling/python-runtime:0.0.3}
QINLING_NODEJS_RUNTIME_IMAGE=${QINLING_NODEJS_RUNTIME_IMAGE:-openstackqinling/nodejs-runtime:0.0.1} QINLING_NODEJS_RUNTIME_IMAGE=${QINLING_NODEJS_RUNTIME_IMAGE:-openstackqinling/nodejs-runtime:0.0.1}
QINLING_SIDECAR_IMAGE=${QINLING_SIDECAR_IMAGE:-openstackqinling/sidecar:0.0.1} QINLING_SIDECAR_IMAGE=${QINLING_SIDECAR_IMAGE:-openstackqinling/sidecar:0.0.1}

View File

@ -10,7 +10,7 @@ Support Qinling function aliases
https://storyboard.openstack.org/#!/story/2001588 https://storyboard.openstack.org/#!/story/2001588
Function aliases are like pointers to the specific funtion versions. By using Function aliases are like pointers to the specific function versions. By using
aliases, you can access the specific version of a function an alias is pointing aliases, you can access the specific version of a function an alias is pointing
to (for example, to invoke the function) without having to know the specific to (for example, to invoke the function) without having to know the specific
version the alias is pointing to. Function aliases enable the following use version the alias is pointing to. Function aliases enable the following use

View File

@ -64,8 +64,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Initialize Qinling configuration. # Initialize Qinling configuration.
sudo mkdir -p /vagrant/etc/qinling sudo mkdir -p /vagrant/etc/qinling
sudo mkdir -p /vagrant/log sudo mkdir -p /vagrant/log
sudo mkdir -p /opt/qinling/funtion sudo mkdir -p /opt/qinling/function
sudo chown ubuntu:ubuntu /opt/qinling/funtion sudo chown ubuntu:ubuntu /opt/qinling/function
cp /vagrant/qinling.conf.sample /vagrant/etc/qinling/qinling.conf cp /vagrant/qinling.conf.sample /vagrant/etc/qinling/qinling.conf
# Qinling db migration. # Qinling db migration.