Compare commits

...

29 Commits

Author SHA1 Message Date
af00f3729d Use build in compose 2023-10-06 15:37:44 -05:00
2f141ba9c1 Update .gitea/workflows/UndeployPR.yaml
All checks were successful
Deploy PR / Deploy PR (pull_request) Successful in 30s
Undeploy PR / Deploy PR (pull_request) Successful in 31s
2023-10-05 02:09:03 +00:00
3a32158272 Update .gitea/workflows/DeployPR.yaml 2023-10-05 02:08:53 +00:00
612b1e078c Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 27s
Undeploy PR / Deploy PR (pull_request) Failing after 30s
2023-10-05 02:05:13 +00:00
5b0e7641b8 Update .gitea/workflows/DeployPR.yaml 2023-10-05 02:04:57 +00:00
fd15ed45ee Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 1m5s
Undeploy PR / Deploy PR (pull_request) Failing after 26s
2023-10-05 01:45:20 +00:00
eb0a6d9483 Update .gitea/workflows/DeployPR.yaml 2023-10-05 01:45:11 +00:00
4ead2aa92d Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 1m3s
Undeploy PR / Deploy PR (pull_request) Failing after 6s
2023-10-05 01:35:30 +00:00
28f45e37ee Update .gitea/workflows/DeployPR.yaml 2023-10-05 01:35:19 +00:00
280a2d6c92 Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 5s
Undeploy PR / Deploy PR (pull_request) Failing after 51s
2023-10-05 01:22:54 +00:00
e8fd475820 Update .gitea/workflows/DeployPR.yaml 2023-10-05 01:22:40 +00:00
58381805e9 Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 5s
Undeploy PR / Deploy PR (pull_request) Failing after 6s
2023-10-05 01:14:17 +00:00
ab47ee2e18 Update .gitea/workflows/DeployPR.yaml 2023-10-05 01:13:50 +00:00
1d42c7f95c Update .gitea/workflows/DeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 5s
2023-10-05 01:09:15 +00:00
398db54e15 Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Deploy PR / Deploy PR (pull_request) Failing after 5s
Undeploy PR / Deploy PR (pull_request) Failing after 5s
2023-10-05 01:02:32 +00:00
c6f62df2c2 Update .gitea/workflows/DeployPR.yaml 2023-10-05 01:02:21 +00:00
3a5b246220 Merge pull request 'ActRunner' (#8) from ActRunner into main
Reviewed-on: #8
2023-10-05 00:59:46 +00:00
00e89bdc64 Update .gitea/workflows/UndeployPR.yaml
Some checks failed
Undeploy PR / Deploy PR (pull_request) Failing after 52s
2023-10-05 00:59:08 +00:00
cc61dba1a8 Update .gitea/workflows/DeployPR.yaml 2023-10-05 00:58:47 +00:00
ffed04c846 Delete .drone.yml 2023-10-05 00:56:03 +00:00
fd6520128e Merge branch 'ActRunner' of http://localhost:3000/larsito/DeployTests into ActRunner
All checks were successful
continuous-integration/drone/pr Build is passing
2023-10-04 15:36:22 -05:00
90dbbc1239 Try multiline run block 2023-10-04 15:35:58 -05:00
larsito
3c163b391c Merge branch 'main' into ActRunner 2023-10-04 20:33:50 +00:00
b380440f5a Fix steps syntax in workflow 2023-10-04 15:33:02 -05:00
larsito
39ee09787c Merge pull request 'Add Gitea workflow' (#1) from ActRunner into main
Reviewed-on: http://localhost:3000/larsito/DeployTests/pulls/1
2023-10-04 20:30:22 +00:00
87e1749d49 Add Gitea workflow 2023-10-04 15:29:08 -05:00
64363a929c Remove whiteline to recognize pipeline 2023-10-03 21:34:15 -05:00
521b046940 Merge branch 'main' of https://dvgit.privatedns.org/lars/DeployTests
All checks were successful
continuous-integration/drone/pr Build is passing
2023-10-03 21:22:04 -05:00
e8b353b28d Trigger on closed 2023-10-03 21:21:54 -05:00
5 changed files with 67 additions and 63 deletions

View File

@@ -1,54 +0,0 @@
kind: pipeline
type: docker
name: deploy
steps:
- name: Deploy to Portainer
image: alpine
commands:
- apk update
- apk add envsubst curl python3
- python3 -m ensurepip
- pip3 install requests python-dotenv --quiet
- python3 deploy/portainer/deploy.py
--PORTAINER https://dvportainer.privatedns.org
--PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q=
--PORTAINER_EP=CICD-runner
--GITEA_API_KEY=f449c74ec7f04e54fe1e481eae43492b34cea406
--DEPLOY_REPO_URL=${DRONE_REPO_LINK}
--DEPLOY_BRANCH=${DRONE_SOURCE_BRANCH}
--DEPLOY_HOST=dvdemo.privatedns.org
trigger:
event:
- pull_request
action:
- opened
---
kind: pipeline
type: docker
name: undeploy
steps:
- name: Undeploy from Portainer
image: alpine
commands:
- apk update
- apk add envsubst curl python3
- python3 -m ensurepip
- pip3 install requests python-dotenv --quiet
- python3 deploy/portainer/undeploy.py
--PORTAINER https://dvportainer.privatedns.org
--PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q=
--PORTAINER_EP=CICD-runner
--GITEA_API_KEY=f449c74ec7f04e54fe1e481eae43492b34cea406
--DEPLOY_REPO_URL=${DRONE_REPO_LINK}
--DEPLOY_BRANCH=${DRONE_COMMIT_BRANCH}
trigger:
event:
- pull_request
action:
- closed, merged

View File

@@ -0,0 +1,27 @@
name: Deploy PR
run-name: ${{ gitea.actor }} is deploying a PR
on:
pull_request:
types: [ opened, reopened ]
jobs:
Deploy PR:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12.0'
- name: Install pip packages
run: pip install requests python-dotenv --quiet
- name: Run Deploy script
run: >
python deploy/portainer/deploy.py
--PORTAINER https://dvportainer.privatedns.org
--PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q=
--PORTAINER_EP=CICD-runner
--GITEA_API_KEY=f449c74ec7f04e54fe1e481eae43492b34cea406
--DEPLOY_REPO_URL=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}
--DEPLOY_BRANCH=${GITHUB_HEAD_REF}
--DEPLOY_HOST=dvdemo.privatedns.org

View File

@@ -0,0 +1,27 @@
name: Undeploy PR
run-name: ${{ gitea.actor }} is undeploying a PR
on:
pull_request:
types: [ closed ]
jobs:
Deploy PR:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12.0'
- name: Install pip packages
run: pip install requests python-dotenv --quiet
- name: Run Undeploy script
run: >
python deploy/portainer/undeploy.py
--PORTAINER https://dvportainer.privatedns.org
--PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q=
--PORTAINER_EP=CICD-runner
--GITEA_API_KEY=f449c74ec7f04e54fe1e481eae43492b34cea406
--DEPLOY_REPO_URL=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}
--DEPLOY_BRANCH=${GITHUB_HEAD_REF}

View File

@@ -1,10 +1,12 @@
version: '3.4'
services:
http-echo:
image: mendhak/http-https-echo:latest
expose:
- 8080
environment:
- VIRTUAL_PORT=8080
version: '3.4'
services:
http-echo:
build:
content: ./
dockerfile: httpecho.Dockerfile
expose:
- 8080
environment:
- VIRTUAL_PORT=8080
- VIRTUAL_HOST=${HOST}

2
httpecho.Dockerfile Normal file
View File

@@ -0,0 +1,2 @@
FROM mendhak/http-https-echo:latest
RUN echo "Hello"