underpost 2.8.786 → 2.8.787
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/deploy.js +3 -0
- package/cli.md +1 -1
- package/docker-compose.yml +1 -1
- package/manifests/lxd/underpost-setup.sh +5 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
package/bin/deploy.js
CHANGED
|
@@ -822,6 +822,9 @@ try {
|
|
|
822
822
|
}
|
|
823
823
|
|
|
824
824
|
case 'version-deploy': {
|
|
825
|
+
shellExec(
|
|
826
|
+
`underpost secret underpost --create-from-file /home/dd/engine/engine-private/conf/dd-cron/.env.production`,
|
|
827
|
+
);
|
|
825
828
|
shellExec(`node bin/build dd conf`);
|
|
826
829
|
shellExec(`git add . && cd ./engine-private && git add .`);
|
|
827
830
|
shellExec(`node bin cmt . ci package-pwa-microservices-template`);
|
package/cli.md
CHANGED
package/docker-compose.yml
CHANGED
|
@@ -70,8 +70,12 @@ for arg in "$@"; do
|
|
|
70
70
|
esac
|
|
71
71
|
done
|
|
72
72
|
|
|
73
|
+
echo "USE_KUBEADM = $USE_KUBEADM"
|
|
74
|
+
echo "USE_KIND = $USE_KIND"
|
|
75
|
+
echo "USE_WORKER = $USE_WORKER"
|
|
76
|
+
|
|
73
77
|
underpost cluster --kubeadm
|
|
74
|
-
underpost --reset
|
|
78
|
+
underpost cluster --reset
|
|
75
79
|
|
|
76
80
|
# Behavior based on flags
|
|
77
81
|
if $USE_KUBEADM; then
|
package/package.json
CHANGED