From b0b657cc63f348547511efb63dfab7d3ee2dc68e Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <frank@sauerburger.com> Date: Tue, 13 Feb 2024 20:48:22 +0100 Subject: [PATCH] Add Kubernetes manifest --- .gitlab-ci.yml | 4 ++-- kubernetes.yaml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 kubernetes.yaml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 551805f..446501e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -61,7 +61,7 @@ deploy_production: variables: NAMESPACE: howlargeisthelhc-staging AGENT: stratus - HOST: grpc-helloworld.sauerburger.cloud + HOST: grpc-helloworld.sauerburger.io environment: name: Production Environment - url: https://grpc-helloworld.sauerburger.cloud/ + url: https://grpc-helloworld.sauerburger.io/ diff --git a/kubernetes.yaml b/kubernetes.yaml new file mode 100644 index 0000000..ecf6394 --- /dev/null +++ b/kubernetes.yaml @@ -0,0 +1,57 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: grpc-helloworld + name: grpc-helloworld +spec: + selector: + matchLabels: + app: grpc-helloworld + template: + metadata: + labels: + app: grpc-helloworld + spec: + containers: + - image: DOCKER_IMAGE + name: grpc-helloworld +--- +apiVersion: v1 +kind: Service +metadata: + name: grpc-helloworld +spec: + type: ClusterIP + ports: + - port: 50051 + protocol: TCP + targetPort: 50051 + selector: + app: grpc-helloworld +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + annotations: + cert-manager.io/cluster-issuer: letsencrypt-production + nginx.ingress.kubernetes.io/backend-protocol: "GRPC" + # kubernetes.io/ingress.class: nginx + name: grpc-helloworld +spec: + ingressClassName: nginx + rules: + - host: HOST + http: + paths: + - path: "/" + pathType: Prefix + backend: + service: + name: grpc-helloworld + port: + number: 50051 + tls: + - hosts: + - HOST + secretName: grpc-helloworld-tls-secret \ No newline at end of file -- GitLab