add cloudflare tunel deployment
parent
7b3548d4ba
commit
9b13d25e4f
|
@ -12,7 +12,7 @@ spec:
|
||||||
path: simplysyncedllc-com/prod
|
path: simplysyncedllc-com/prod
|
||||||
destination:
|
destination:
|
||||||
server: https://kubernetes.default.svc
|
server: https://kubernetes.default.svc
|
||||||
namespace: simplysyncedllc_com
|
namespace: simplysyncedllc-com
|
||||||
|
|
||||||
syncPolicy:
|
syncPolicy:
|
||||||
syncOptions:
|
syncOptions:
|
||||||
|
|
|
@ -17,3 +17,51 @@ spec:
|
||||||
image: gitea.simplysyncedllc.com/dex/simplysyncedllc_website:1.0.0
|
image: gitea.simplysyncedllc.com/dex/simplysyncedllc_website:1.0.0
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: cloudflared
|
||||||
|
name: cloudflared-deployment
|
||||||
|
namespace: simplysyncedllc-com
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
pod: cloudflared
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
creationTimestamp: null
|
||||||
|
labels:
|
||||||
|
pod: cloudflared
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- command:
|
||||||
|
- cloudflared
|
||||||
|
- tunnel
|
||||||
|
# In a k8s environment, the metrics server needs to listen outside the pod it runs on.
|
||||||
|
# The address 0.0.0.0:2000 allows any pod in the namespace.
|
||||||
|
- --metrics
|
||||||
|
- 0.0.0.0:2000
|
||||||
|
- run
|
||||||
|
args:
|
||||||
|
- --token
|
||||||
|
- <token value>
|
||||||
|
env:
|
||||||
|
- name: TUNNEL_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
key: token
|
||||||
|
name: cf-secrets
|
||||||
|
image: cloudflare/cloudflared:latest
|
||||||
|
name: cloudflared
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
# Cloudflared has a /ready endpoint which returns 200 if and only if
|
||||||
|
# it has an active connection to the edge.
|
||||||
|
path: /ready
|
||||||
|
port: 2000
|
||||||
|
failureThreshold: 1
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
|
|
|
@ -10,4 +10,5 @@ spec:
|
||||||
- protocol: TCP
|
- protocol: TCP
|
||||||
port: 3000
|
port: 3000
|
||||||
targetPort: 3000
|
targetPort: 3000
|
||||||
nodePort: 30080
|
nodePort: 30081
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue