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