Skip to content

Commit

Permalink
import files
Browse files Browse the repository at this point in the history
  • Loading branch information
aya committed Feb 9, 2021
1 parent f5c4576 commit 44a6d37
Show file tree
Hide file tree
Showing 425 changed files with 23,195 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.git*
build/cache/*
build/iso/*
11 changes: 11 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
APP=yaip
APP_DOMAIN=${ENV}.${DOMAIN}
APP_HOST=${APP}.${APP_DOMAIN}
APP_NAME=${APP}
APP_PATH=/${ENV_SUFFIX}
APP_SCHEME=http
APP_URI=${APP_HOST}${APP_PATH}
APP_URL=${APP_SCHEME}://${APP_URI}
DOMAIN=localhost
ENV=dist
SSH_DIR=${HOME}/.ssh
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.env
/build
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
APP_TYPE := infra
include make/include.mk

##
# APP

app-build: build-rm infra-base
$(call install-parameters,,curator,build)
$(call make,docker-compose-build)
$(call make,up)
$(call make,docker-compose-exec ARGS='rm -Rf /root/.npm /log-buffer/*' SERVICE=logagent)
$(call make,docker-commit)

app-deploy: deploy-ping

app-install: base node up
2 changes: 2 additions & 0 deletions ansible/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
playbook.retry
inventories/packer-provisioner-ansible*
9 changes: 9 additions & 0 deletions ansible/ansible.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[defaults]
inventory = inventories
roles_path = roles
filter_plugins = plugins/filter
host_key_checking = False

[ssh_connection]
scp_if_ssh = smart
pipelining =True
Loading

0 comments on commit 44a6d37

Please sign in to comment.