Skip to content

Commit

Permalink
fix: overwrite apisix.yaml (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamly authored Sep 26, 2023
1 parent 328fc9d commit 39145b4
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 12 deletions.
11 changes: 8 additions & 3 deletions centos/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ deployment:
role: data_plane
role_data_plane:
config_provider: yaml
routes:
-
#END
_EOC_
else
wget -qO /usr/local/apisix/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
Expand All @@ -40,6 +37,14 @@ _EOC_
/usr/local/apisix/yq -i '.deployment.role_data_plane.config_provider = "yaml"' ${PREFIX}/conf/config.yaml
rm /usr/local/apisix/yq
fi

if [ ! -f "${PREFIX}/conf/apisix.yaml" ]; then
cat > ${PREFIX}/conf/apisix.yaml << _EOC_
routes:
-
#END
_EOC_
fi
/usr/bin/apisix init
else
/usr/bin/apisix init
Expand Down
11 changes: 8 additions & 3 deletions debian-dev/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ deployment:
role: data_plane
role_data_plane:
config_provider: yaml
routes:
-
#END
_EOC_
else
wget -qO /usr/local/apisix/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
Expand All @@ -40,6 +37,14 @@ _EOC_
/usr/local/apisix/yq -i '.deployment.role_data_plane.config_provider = "yaml"' ${PREFIX}/conf/config.yaml
rm /usr/local/apisix/yq
fi

if [ ! -f "${PREFIX}/conf/apisix.yaml" ]; then
cat > ${PREFIX}/conf/apisix.yaml << _EOC_
routes:
-
#END
_EOC_
fi
/usr/bin/apisix init
else
/usr/bin/apisix init
Expand Down
11 changes: 8 additions & 3 deletions debian/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ deployment:
role: data_plane
role_data_plane:
config_provider: yaml
routes:
-
#END
_EOC_
else
wget -qO /usr/local/apisix/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
Expand All @@ -40,6 +37,14 @@ _EOC_
/usr/local/apisix/yq -i '.deployment.role_data_plane.config_provider = "yaml"' ${PREFIX}/conf/config.yaml
rm /usr/local/apisix/yq
fi

if [ ! -f "${PREFIX}/conf/apisix.yaml" ]; then
cat > ${PREFIX}/conf/apisix.yaml << _EOC_
routes:
-
#END
_EOC_
fi
/usr/bin/apisix init
else
/usr/bin/apisix init
Expand Down
11 changes: 8 additions & 3 deletions redhat/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ deployment:
role: data_plane
role_data_plane:
config_provider: yaml
routes:
-
#END
_EOC_
else
wget -qO /usr/local/apisix/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
Expand All @@ -40,6 +37,14 @@ _EOC_
/usr/local/apisix/yq -i '.deployment.role_data_plane.config_provider = "yaml"' ${PREFIX}/conf/config.yaml
rm /usr/local/apisix/yq
fi

if [ ! -f "${PREFIX}/conf/apisix.yaml" ]; then
cat > ${PREFIX}/conf/apisix.yaml << _EOC_
routes:
-
#END
_EOC_
fi
/usr/bin/apisix init
else
/usr/bin/apisix init
Expand Down

0 comments on commit 39145b4

Please sign in to comment.