mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-09 08:41:30 -05:00
initial commit
This commit is contained in:
commit
d91a4238cc
86 changed files with 4143 additions and 0 deletions
47
whoogle/templates/deployment.yaml
Normal file
47
whoogle/templates/deployment.yaml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: whoogle
|
||||
labels:
|
||||
helm.sh/chart: whoogle-0.1.0
|
||||
app.kubernetes.io/name: whoogle
|
||||
app.kubernetes.io/instance: whoogle
|
||||
app.kubernetes.io/version: "0.7.2"
|
||||
app.kubernetes.io/managed-by: Helm
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: whoogle
|
||||
app.kubernetes.io/instance: whoogle
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: whoogle
|
||||
app.kubernetes.io/instance: whoogle
|
||||
spec:
|
||||
serviceAccountName: whoogle
|
||||
securityContext:
|
||||
{}
|
||||
containers:
|
||||
- name: whoogle
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
image: "benbusby/whoogle-search:0.7.2"
|
||||
imagePullPolicy: Always
|
||||
resources:
|
||||
limits:
|
||||
cpu: 1000m
|
||||
requests:
|
||||
cpu: 100m
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 5000
|
||||
protocol: TCP
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
Loading…
Add table
Add a link
Reference in a new issue