This commit is contained in:
2023-09-26 18:14:36 -06:00
commit fb5a0fc542
443 changed files with 21892 additions and 0 deletions

109
K2D/.drone.yml Normal file
View File

@@ -0,0 +1,109 @@
---
kind: pipeline
type: docker
name: deploy
environment:
PACKAGE: K2D
steps:
- name: Tests
image: ps03fd.alexlebens.net:5000/droneimage:latest
commands:
- /scripts/tests.sh
- name: Nofification > Discord | Tests - Failure
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Docker compose validation for K2D failed.
when:
status:
- failure
- name: Configuration
image: ps03fd.alexlebens.net:5000/droneimage:latest
commands:
- mkdir ~/.ssh/
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-keyscan -H $HOST_IP >> ~/.ssh/known_hosts
- /scripts/configuration.sh
environment:
SSH_KEY:
from_secret: ssh_key_ps03fd_drone
DOCKER_HOST:
from_secret: docker_host_ps03fd
HOST_IP:
from_secret: host_ip_ps03fd
UPTIMEKUMA_NAME:
from_secret: uptimekuma_name
UPTIMEKUMA_PASSWORD:
from_secret: uptimekuma_password
UPTIMEKUMA_URL:
from_secret: uptimekuma_url
when:
branch:
- main
- name: Nofification > Discord | Configuration - Failure
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Configuration for K2D failed.
when:
status:
- failure
- name: Deploy
image: ps03fd.alexlebens.net:5000/droneimage:latest
commands:
- mkdir ~/.ssh/
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-keyscan -H $HOST_IP >> ~/.ssh/known_hosts
- /scripts/deploy.sh
environment:
SSH_KEY:
from_secret: ssh_key_ps03fd_drone
DOCKER_HOST:
from_secret: docker_host_ps03fd
HOST_IP:
from_secret: host_ip_ps03fd
when:
branch:
- main
- name: Nofification > Discord | Deploy - Success
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Docker compose deployment for K2D succeeded
when:
status:
- sucess
- name: Nofification > Discord | Deploy - Failure
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: DroneCI - ps03fd
message: Docker compose deployment for K2D failed.
when:
status:
- failure

2
K2D/.env Normal file
View File

@@ -0,0 +1,2 @@
K2D_ADVERTISE_ADDR=192.168.1.15
K2D_SECRET=YOUR_OWN_SECRET

3
K2D/README.md Normal file
View File

@@ -0,0 +1,3 @@
# K2D
[![Build Status](https://drone.alexlebens.net/api/badges/alexlebens/K2D/status.svg)](https://drone.alexlebens.net/alexlebens/K2D)

17
K2D/UptimeKuma/docker-1.json Executable file
View File

@@ -0,0 +1,17 @@
{
"type": "docker",
"name": "K2D - Docker",
"interval": 60,
"retryInterval": 20,
"maxretries": 1,
"notificationIDList": [
3,
4
],
"url": "https://portainer.alexlebens.net/admin",
"accepted_statuscodes": [
"200-299"
],
"docker_container": "k2d",
"docker_host": 1
}

33
K2D/docker-compose.yml Normal file
View File

@@ -0,0 +1,33 @@
services:
k2d:
container_name: k2d
env_file:
- .env
image: portainer/k2d:1.0.0-alpha
logging:
driver: json-file
options:
max-size: 50m
max-file: "3"
networks:
traefik: null
ports:
- 6443:6443
restart: always
privileged: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- store:/var/lib/k2d
networks:
traefik:
name: traefik
external: true
volumes:
store:
driver: local
driver_opts:
type: none
o: bind
device: /var/lib/docker/volumes/partition/k2d_store