31 lines
601 B
YAML
31 lines
601 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: semaphore
|
|
namespace: semaphore
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: semaphore
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: semaphore
|
|
spec:
|
|
securityContext:
|
|
fsGroup: 1000
|
|
containers:
|
|
- name: semaphore
|
|
image: semaphoreui/semaphore:latest
|
|
|
|
command: ["semaphore"]
|
|
args: ["server"]
|
|
|
|
env:
|
|
# --- DB ---
|
|
- name: SEMAPHORE_DB_DIALECT
|
|
value: bolt
|
|
- name: SEMAPHORE_DB_PATH
|
|
val
|