Merge pull request #78 from HideyoshiSolutions/fixes-per-deployment-refresh
Fixes per deployment refresh
This commit is contained in:
1
.github/workflows/deploy-prod.yml
vendored
1
.github/workflows/deploy-prod.yml
vendored
@@ -48,6 +48,7 @@ jobs:
|
|||||||
username: ${{ secrets.SSH_USER }}
|
username: ${{ secrets.SSH_USER }}
|
||||||
port: ${{ secrets.SSH_PORT }}
|
port: ${{ secrets.SSH_PORT }}
|
||||||
key: ${{ secrets.SSH_KEY }}
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
command_timeout: 30m
|
||||||
script: |
|
script: |
|
||||||
sudo apt update && sudo apt install -y jq
|
sudo apt update && sudo apt install -y jq
|
||||||
source ~/.profile
|
source ~/.profile
|
||||||
|
|||||||
89
.github/workflows/deploy-staging.yml
vendored
89
.github/workflows/deploy-staging.yml
vendored
@@ -1,54 +1,55 @@
|
|||||||
name: remote ssh command
|
name: remote ssh command
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- staging
|
- staging
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
environment: staging
|
environment: staging
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
uses: actions/setup-python@v3
|
uses: actions/setup-python@v3
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
|
|
||||||
- name: Create Config Json File
|
- name: Create Config Json File
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.CONFIG_JSON }}" | base64 -d > config.json
|
echo "${{ secrets.CONFIG_JSON }}" | base64 -d > config.json
|
||||||
|
|
||||||
- name: Inserts Prod Enviromental Variables
|
- name: Inserts Prod Enviromental Variables
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip pipenv
|
python -m pip install --upgrade pip pipenv
|
||||||
pipenv install
|
pipenv install
|
||||||
pipenv run python setup.py -e staging -f config.json
|
pipenv run python setup.py -e staging -f config.json
|
||||||
|
|
||||||
- name: copy file via ssh
|
- name: copy file via ssh
|
||||||
uses: appleboy/scp-action@master
|
uses: appleboy/scp-action@master
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.SSH_HOST }}
|
host: ${{ secrets.SSH_HOST }}
|
||||||
username: ${{ secrets.SSH_USER }}
|
username: ${{ secrets.SSH_USER }}
|
||||||
port: ${{ secrets.SSH_PORT }}
|
port: ${{ secrets.SSH_PORT }}
|
||||||
key: ${{ secrets.SSH_KEY }}
|
key: ${{ secrets.SSH_KEY }}
|
||||||
source: "."
|
source: "."
|
||||||
target: "infra-hideyoshi.com"
|
target: "infra-hideyoshi.com"
|
||||||
|
|
||||||
- name: executing remote ssh commands
|
- name: executing remote ssh commands
|
||||||
uses: appleboy/ssh-action@master
|
uses: appleboy/ssh-action@master
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.SSH_HOST }}
|
host: ${{ secrets.SSH_HOST }}
|
||||||
username: ${{ secrets.SSH_USER }}
|
username: ${{ secrets.SSH_USER }}
|
||||||
port: ${{ secrets.SSH_PORT }}
|
port: ${{ secrets.SSH_PORT }}
|
||||||
key: ${{ secrets.SSH_KEY }}
|
key: ${{ secrets.SSH_KEY }}
|
||||||
script: |
|
command_timeout: 30m
|
||||||
sudo apt update && sudo apt install -y jq
|
script: |
|
||||||
source ~/.profile
|
sudo apt update && sudo apt install -y jq
|
||||||
cd infra-hideyoshi.com
|
source ~/.profile
|
||||||
./deploy.sh --staging
|
cd infra-hideyoshi.com
|
||||||
./refresh.sh
|
./deploy.sh --staging
|
||||||
|
./refresh.sh
|
||||||
|
|||||||
2
.github/workflows/refresh-deployment.yml
vendored
2
.github/workflows/refresh-deployment.yml
vendored
@@ -41,4 +41,4 @@ jobs:
|
|||||||
script: |
|
script: |
|
||||||
[[ -d infra-hideyoshi.com ]] && \
|
[[ -d infra-hideyoshi.com ]] && \
|
||||||
cd infra-hideyoshi.com && \
|
cd infra-hideyoshi.com && \
|
||||||
./infra-hideyoshi.com/refresh.sh ${{ env.deployments }}
|
./refresh.sh ${{ env.deployments }}
|
||||||
@@ -111,7 +111,7 @@ function main() {
|
|||||||
minikube kubectl -- $@
|
minikube kubectl -- $@
|
||||||
}
|
}
|
||||||
|
|
||||||
minikube start --driver kvm2 --cpus 4 --memory 4Gib
|
minikube start --driver kvm2 --cpus 6 --memory 6Gib
|
||||||
minikube addons enable ingress-dns
|
minikube addons enable ingress-dns
|
||||||
minikube addons enable ingress
|
minikube addons enable ingress
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user