mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-07 07:50:29 -05:00
update
This commit is contained in:
parent
9d0a172198
commit
b33158e0fe
7 changed files with 190 additions and 74 deletions
33
dmz/redlib/templates/deployment.yaml
Normal file
33
dmz/redlib/templates/deployment.yaml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: redlib
|
||||
name: redlib
|
||||
labels:
|
||||
app: redlib
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: redlib
|
||||
replicas: 3
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: redlib
|
||||
spec:
|
||||
containers:
|
||||
- name: redlib
|
||||
image: registry.durp.info/redlib/redlib:latest
|
||||
imagePullPolicy: Always
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 8080
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 8080
|
||||
env:
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8080
|
||||
Loading…
Add table
Add a link
Reference in a new issue