Added text-to-dxf

This commit is contained in:
Marcus Noble 2021-07-27 05:53:55 +01:00
parent 91c2018722
commit 025e542a58
2 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,24 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: text-to-dxf
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: text-to-dxf
name: cluster-fun (scaleway)
source:
path: manifests/text-to-dxf
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data

View File

@ -0,0 +1,63 @@
apiVersion: v1
kind: Service
metadata:
name: text-to-dxf
namespace: text-to-dxf
spec:
type: ClusterIP
ports:
- port: 80
targetPort: web
name: web
selector:
app: text-to-dxf
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: text-to-dxf
namespace: text-to-dxf
spec:
replicas: 1
selector:
matchLabels:
app: text-to-dxf
template:
metadata:
labels:
app: text-to-dxf
spec:
containers:
- name: web
image: docker.cluster.fun/averagemarcus/text-to-dxf:latest
imagePullPolicy: Always
ports:
- containerPort: 8080
name: web
resources:
requests:
memory: 100Mi
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: text-to-dxf
namespace: text-to-dxf
annotations:
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/frontend-entry-points: http,https
traefik.ingress.kubernetes.io/redirect-entry-point: https
traefik.ingress.kubernetes.io/redirect-permanent: "true"
spec:
tls:
- hosts:
- text-to-dxf.cluster.fun
secretName: text-to-dxf-ingress
rules:
- host: text-to-dxf.cluster.fun
http:
paths:
- path: /
backend:
serviceName: text-to-dxf
servicePort: 80