From ae31cd08ce927e63107f4f4c64b8893d044ecc8c Mon Sep 17 00:00:00 2001 From: IngCr3at1on Date: Wed, 30 Oct 2019 17:52:17 -0500 Subject: [PATCH] Purge k8s config, I'm not going to be using it and I'm not sure anyone else will be anytime soon. --- k8s/deploy.yaml | 18 ------------------ k8s/ingress.yaml | 22 ---------------------- k8s/service.yaml | 12 ------------ 3 files changed, 52 deletions(-) delete mode 100644 k8s/deploy.yaml delete mode 100644 k8s/ingress.yaml delete mode 100644 k8s/service.yaml diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml deleted file mode 100644 index 809c84a..0000000 --- a/k8s/deploy.yaml +++ /dev/null @@ -1,18 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: glas -spec: - replicas: 1 - template: - metadata: - labels: - app: glas - spec: - containers: - - image: glasware/gateway:v0.0.0-alpha2 - imagePullPolicy: Always - name: glas - ports: - - name: http - containerPort: 8080 diff --git a/k8s/ingress.yaml b/k8s/ingress.yaml deleted file mode 100644 index 43b09bc..0000000 --- a/k8s/ingress.yaml +++ /dev/null @@ -1,22 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Ingress -metadata: - name: glas - annotations: - kubernetes.io/ingress.class: "nginx" - certmanager.k8s.io/issuer: "letsencrypt" - certmanager.k8s.io/acme-challenge-type: http01 - #external-dns.alpha.kubernetes.io/hostname: glas.ingcr3at1on.online -spec: - tls: - - hosts: - - glas.ingcr3at1on.online - secretName: glas-tls - rules: - - host: glas.ingcr3at1on.online - http: - paths: - - path: / - backend: - serviceName: glas - servicePort: http diff --git a/k8s/service.yaml b/k8s/service.yaml deleted file mode 100644 index 84cfc8e..0000000 --- a/k8s/service.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: glas -spec: - ports: - - name: http - port: 80 - targetPort: http - protocol: TCP - selector: - app: glas