Compare commits

...

31 Commits

Author SHA1 Message Date
b125237880 Compose image 2023-10-06 15:55:37 -05:00
711f36f4da Do triggeredoo 2023-10-06 15:53:49 -05:00
5ad147032e Fix again 2023-10-06 15:52:33 -05:00
68ce724d31 Fix 'content' 2023-10-06 15:51:01 -05:00
a54002252c Some deploy updates 2023-10-06 15:40:34 -05:00
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
10 changed files with 88 additions and 83 deletions

View File

@@ -1,53 +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

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

@@ -0,0 +1 @@
HOST=dvdemo.privatedns.org

View File

@@ -3,5 +3,4 @@ PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q=
PORTAINER_EP=CICD-runner
GITEA_API_KEY=f449c74ec7f04e54fe1e481eae43492b34cea406
DEPLOY_REPO_URL=https://dvgit.privatedns.org/lars/DeployTests
DEPLOY_BRANCH=main
DEPLOY_HOST=dvdemo.privatedns.org
DEPLOY_BRANCH=main

View File

@@ -6,12 +6,12 @@ import argparse
import requests
import json
import uuid
from dotenv import load_dotenv
from dotenv import load_dotenv, dotenv_values
from string import Template
from pathlib import Path
from urllib.parse import urlparse
load_dotenv()
load_dotenv('.env.deploy')
required_env_vars = {
'PORTAINER': 'The portainer instance to deploy to',
@@ -20,7 +20,6 @@ required_env_vars = {
'GITEA_API_KEY': 'API-Key to access Gitea instance',
'DEPLOY_REPO_URL': 'The repository URL to deploy',
'DEPLOY_BRANCH': 'The branch to deploy',
'DEPLOY_HOST': 'The host name under which the deployment will be reachable',
}
# Try getting all arguments from (in order): 1 command line, 2 .env file, 3 Environment
@@ -58,7 +57,7 @@ try:
json_endpoints = response.json()
except requests.exceptions.RequestException as err:
raise Exception(f'Could not retrieve portainer endpoints: {err}')
raise Exception(f'Could not retrieve portainer endpoints: {err}. \n\n Response: {response.content}')
endpoint_id = None
for endpoint in json_endpoints:
@@ -78,6 +77,17 @@ owner = repo_parts[0]
repo = repo_parts[1]
### Template substitution for the portainer stack deployment ###
app_env = dotenv_values('.env.app')
portainer_deploy_env = [{
"name": "COMPOSE_PROJECT_NAME",
"value": args.DEPLOY_BRANCH
}]
for key, value in app_env.items():
portainer_deploy_env.append({
"name": key,
"value": os.getenv(value) if value.startswith("$") else value
})
portainer_deploy_payload = {
"additionalFiles": [
"deploy/portainer/portainer_deploy.docker-compose.yml"
@@ -86,16 +96,7 @@ portainer_deploy_payload = {
"webhook": deploy_webhook
},
"composeFile": "docker-compose.yml",
"env": [
{
"name": "HOST",
"value": args.DEPLOY_HOST
},
{
"name": "COMPOSE_PROJECT_NAME",
"value": args.DEPLOY_BRANCH
}
],
"env": portainer_deploy_env,
"fromAppTemplate": False,
"name": f"{owner}_{repo}_{args.DEPLOY_BRANCH.replace('/', '_')}".lower(),
"repositoryAuthentication": True,
@@ -114,7 +115,7 @@ try:
deploy_response = response.json()
except requests.exceptions.RequestException as err:
raise Exception(f'Could not deploy portainer stack: {err}')
raise Exception(f'Could not deploy portainer stack: {err}.\n\n Response: {response.content}')
### Add Webhook to Gitea ###
webhook_payload = {
@@ -138,5 +139,5 @@ try:
webhook_response = response.json()
except requests.exceptions.RequestException as err:
raise Exception(f'Could not add webhook to Gitea: {err}')
raise Exception(f'Could not add webhook to Gitea: {err}.\n\n Response: {response.content}')
print(f'Successfully deployed project')

View File

@@ -1,10 +1,10 @@
version: '3.4'
version: '3'
services:
http-echo:
networks:
- cicd
networks:
cicd:
driver: bridge

View File

@@ -11,7 +11,7 @@ from string import Template
from pathlib import Path
from urllib.parse import urlparse
load_dotenv()
load_dotenv('.env.deploy')
required_env_vars = {
'PORTAINER': 'The portainer instance to deploy to',
@@ -53,7 +53,7 @@ try:
json_endpoints = endpoint_response.json()
except requests.exceptions.RequestException as err:
raise Exception(f'Could not retrieve portainer endpoints: {err}')
raise Exception(f'Could not retrieve portainer endpoints: {err}.\n\n Response: {endpoint_response.content}')
endpoint_id = None
for endpoint in json_endpoints:
@@ -73,7 +73,7 @@ try:
json_stacks = stacks_response.json()
except requests.exceptions.RequestException as err:
raise Exception(f'Could not retrieve portainer stacks: {err}')
raise Exception(f'Could not retrieve portainer stacks: {err}.\n\n Response: {stacks_response.content}')
stack_id = None
stack_webhook = None
@@ -112,7 +112,7 @@ try:
json_webhooks = get_webhooks_response.json()
except requests.exceptions.RequestException as err:
raise Exception(f'Could not get webhooks from Gitea: {err}')
raise Exception(f'Could not get webhooks from Gitea: {err}.\n\n Response:{get_webhooks_response.content}')
webhook_id = None
for webhook in json_webhooks:
@@ -128,21 +128,19 @@ else:
### Remove Webhook from Gitea ###
remove_webhook_url = f"{gitea}/api/v1/repos/{repo_path}/hooks/{webhook_id}"
try:
#TODO: Webhooks are returned paginated, this only checks first page
del_webhooks_response = requests.delete(remove_webhook_url, headers=gitea_headers)
del_webhooks_response.raise_for_status() # Raise HTTPError for bad requests
except requests.exceptions.RequestException as err:
raise Exception(f"Could not delete webhook '{webhook_id}' from Gitea: {err}")
raise Exception(f"Could not delete webhook '{webhook_id}' from Gitea: {err}.\n\n Response: {del_webhooks_response.content}")
## Remove Stack from Portainer ###
remove_stack_url = f"{args.PORTAINER}/api/stacks/{stack_id}?endpointId={endpoint_id}"
try:
#TODO: Webhooks are returned paginated, this only checks first page
del_stack_response = requests.delete(remove_stack_url, headers=portainer_headers)
del_stack_response.raise_for_status() # Raise HTTPError for bad requests
except requests.exceptions.RequestException as err:
raise Exception(f"Could not delete stack '{stack_id}' from Portainer: {err}")
raise Exception(f"Could not delete stack '{stack_id}' from Portainer: {err}.\n\n Response: {del_stack_response.content}")
print(f'Successfully undeployed project')

View File

@@ -1,8 +1,11 @@
version: '3.4'
services:
services:
http-echo:
image: mendhak/http-https-echo:latest
build:
image: ${COMPOSE_PROJECT_NAME}_httpecho
context: ./
dockerfile: httpecho.Dockerfile
expose:
- 8080
environment:

2
httpecho.Dockerfile Normal file
View File

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