Skip to content

Commit

Permalink
feat: support for reading environment variables from yaml configurati…
Browse files Browse the repository at this point in the history
…on files #5244 (#6505)
  • Loading branch information
wilson-1024 authored Mar 8, 2022
1 parent 65cd5d0 commit cbeb6eb
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apisix/cli/file.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ local function resolve_conf_var(conf)
end


_M.resolve_conf_var = resolve_conf_var


local function tinyyaml_type(t)
local mt = getmetatable(t)
if mt then
Expand Down Expand Up @@ -234,6 +237,20 @@ function _M.read_yaml_conf(apisix_home)
end
end

if default_conf.apisix.config_center == "yaml" then
local apisix_conf_path = profile:yaml_path("apisix")
local apisix_conf_yaml, _ = util.read_file(apisix_conf_path)
if apisix_conf_yaml then
local apisix_conf = yaml.parse(apisix_conf_yaml)
if apisix_conf then
local ok, err = resolve_conf_var(apisix_conf)
if not ok then
return nil, err
end
end
end
end

return default_conf
end

Expand Down
7 changes: 7 additions & 0 deletions apisix/core/config_yaml.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ local new_tab = require("table.new")
local check_schema = require("apisix.core.schema").check
local profile = require("apisix.core.profile")
local lfs = require("lfs")
local file = require("apisix.cli.file")
local exiting = ngx.worker.exiting
local insert_tab = table.insert
local type = type
Expand Down Expand Up @@ -105,6 +106,12 @@ local function read_apisix_yaml(premature, pre_mtime)
return
end

local ok, err = file.resolve_conf_var(apisix_yaml_new)
if not ok then
log.error("failed: failed to resolve variables:" .. err)
return
end

apisix_yaml = apisix_yaml_new
apisix_yaml_ctime = last_change_time
end
Expand Down
67 changes: 67 additions & 0 deletions t/cli/test_standalone.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/usr/bin/env bash

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#

. ./t/cli/common.sh

standalone() {
clean_up
git checkout conf/apisix.yaml
}

trap standalone EXIT

# support environment variables
echo '
apisix:
enable_admin: false
config_center: yaml
' > conf/config.yaml

echo '
routes:
-
uri: ${{var_test_path}}
plugins:
proxy-rewrite:
uri: ${{var_test_proxy_rewrite_uri:=/apisix/nginx_status}}
upstream:
nodes:
"127.0.0.1:9091": 1
type: roundrobin
#END
' > conf/apisix.yaml

# check for resolve variables
var_test_path=/test make init

if ! grep "env var_test_path=/test;" conf/nginx.conf > /dev/null; then
echo "failed: failed to resolve variables"
exit 1
fi

# variable is valid
var_test_path=/test make run
sleep 0.1
code=$(curl -o /dev/null -s -m 5 -w %{http_code} http://127.0.0.1:9080/test)
if [ ! $code -eq 200 ]; then
echo "failed: resolve variables in apisix.yaml conf failed"
exit 1
fi

echo "passed: resolve variables in apisix.yaml conf success"

0 comments on commit cbeb6eb

Please sign in to comment.