Updated paradoxfox

This commit is contained in:
Marcus Noble 2020-07-08 11:50:11 +01:00
parent e00db9e633
commit fd26f7b3de

View File

@ -17,6 +17,18 @@ data:
.dockerconfigjson: e30= .dockerconfigjson: e30=
--- ---
apiVersion: v1 apiVersion: v1
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
kind: Service kind: Service
metadata: metadata:
name: paradoxfox name: paradoxfox
@ -25,7 +37,7 @@ spec:
type: ClusterIP type: ClusterIP
ports: ports:
- port: 80 - port: 80
targetPort: 80 targetPort: 443
name: web name: web
selector: selector:
app: paradoxfox app: paradoxfox
@ -52,8 +64,14 @@ spec:
image: docker.cluster.fun/private/paradoxfox:latest image: docker.cluster.fun/private/paradoxfox:latest
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 80 - containerPort: 443
name: web name: web
env:
- name: ETSY_TOKEN
valueFrom:
secretKeyRef:
name: etsy-token
key: password
resources: resources:
limits: limits:
memory: 200Mi memory: 200Mi