cluster.fun/manifests/paradoxfox/paradoxfox.yaml

126 lines
2.5 KiB
YAML
Raw Normal View History

2020-07-04 18:42:10 +00:00
apiVersion: v1
kind: Secret
metadata:
name: docker-config
namespace: paradoxfox
annotations:
kube-1password: i6ngbk5zf4k52xgwdwnfup5bby
kube-1password/vault: Kubernetes
kube-1password/secret-text-key: .dockerconfigjson
type: kubernetes.io/dockerconfigjson
data:
.dockerconfigjson: e30=
---
apiVersion: v1
2020-07-08 10:50:11 +00:00
kind: Secret
metadata:
name: etsy-token
namespace: paradoxfox
annotations:
kube-1password: akkchysgrvhawconx63plt3xgy
kube-1password/vault: Kubernetes
kube-1password/secret-text-key: password
stringData:
password: ""
---
apiVersion: v1
2020-07-04 18:42:10 +00:00
kind: Service
metadata:
name: paradoxfox
namespace: paradoxfox
spec:
type: ClusterIP
ports:
- port: 80
2020-07-08 10:50:11 +00:00
targetPort: 443
2020-07-04 18:42:10 +00:00
name: web
selector:
app: paradoxfox
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: paradoxfox
namespace: paradoxfox
spec:
replicas: 1
selector:
matchLabels:
app: paradoxfox
template:
metadata:
labels:
app: paradoxfox
spec:
imagePullSecrets:
- name: docker-config
containers:
- name: web
image: rg.fr-par.scw.cloud/averagemarcus-private/paradoxfox:latest
2020-07-04 18:42:10 +00:00
imagePullPolicy: Always
ports:
2020-07-08 10:50:11 +00:00
- containerPort: 443
2020-07-04 18:42:10 +00:00
name: web
2020-07-08 10:50:11 +00:00
env:
- name: ETSY_TOKEN
valueFrom:
secretKeyRef:
name: etsy-token
key: password
2020-07-04 18:42:10 +00:00
resources:
limits:
2022-05-27 20:06:54 +00:00
memory: 60Mi
2020-07-04 18:42:10 +00:00
requests:
2022-05-27 20:06:54 +00:00
memory: 60Mi
2020-07-04 18:42:10 +00:00
---
apiVersion: networking.k8s.io/v1
2020-07-04 18:42:10 +00:00
kind: Ingress
metadata:
name: paradoxfox
namespace: paradoxfox
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
2020-07-04 18:42:10 +00:00
spec:
tls:
- hosts:
- paradoxfox.space
secretName: paradoxfox-ingress
rules:
- host: paradoxfox.space
http:
paths:
- path: /
pathType: ImplementationSpecific
2020-07-04 18:42:10 +00:00
backend:
service:
name: paradoxfox
port:
number: 80
2020-07-04 18:42:10 +00:00
---
apiVersion: networking.k8s.io/v1
2020-07-04 18:42:10 +00:00
kind: Ingress
metadata:
name: paradoxfox-www
namespace: paradoxfox
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
2020-07-04 18:42:10 +00:00
spec:
tls:
- hosts:
- www.paradoxfox.space
secretName: paradoxfox-www-ingress
rules:
- host: www.paradoxfox.space
http:
paths:
- path: /
pathType: ImplementationSpecific
2020-07-04 18:42:10 +00:00
backend:
service:
name: paradoxfox
port:
number: 80