feat: added argocd and arr
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
---
|
||||
- kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: {{ item.name }}
|
||||
namespace: default
|
||||
labels:
|
||||
app: {{ item.name }}
|
||||
spec:
|
||||
replicas: 1
|
||||
progressDeadlineSeconds: 600
|
||||
revisionHistoryLimit: 2
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
app: {{ item.name }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: {{ item.name }}
|
||||
spec:
|
||||
containers:
|
||||
- name: {{ item.name }}
|
||||
image: linuxserver/{{ item.name }}
|
||||
ports:
|
||||
- name: app-port
|
||||
containerPort: {{ item.port }}
|
||||
hostPort: {{ item.port }}
|
||||
protocol: TCP
|
||||
Reference in New Issue
Block a user