Add Jenkins, Harbor, Portainer, Vault, ELK, Semaphore manifests

This commit is contained in:
Vlad
2025-11-26 10:44:46 +00:00
parent 550c67d154
commit e7cff9d8c1
37 changed files with 666 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: semaphore
namespace: semaphore
spec:
replicas: 1
selector:
matchLabels:
app: semaphore
template:
metadata:
labels:
app: semaphore
spec:
containers:
- name: semaphore
image: semaphoreui/semaphore:latest
env:
- name: SEMAPHORE_DB_DIALECT
value: bolt
- name: SEMAPHORE_DB_PATH
value: /var/lib/semaphore/semaphore.db
- name: SEMAPHORE_PLAYBOOK_PATH
value: /tmp/semaphore/
ports:
- containerPort: 3000
volumeMounts:
- name: semaphore-data
mountPath: /var/lib/semaphore
volumes:
- name: semaphore-data
persistentVolumeClaim:
claimName: semaphore-data