From e8f34dec0fb602cece3619bf008cc9f1e7e173cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyulai=20D=C3=A1niel?= Date: Thu, 12 Nov 2020 06:47:15 -0500 Subject: [PATCH] Fix minio namespace, added redis --- deploy.sh | 3 +++ helm/covidok/templates/minio.yaml | 1 - helm/covidok/templates/redis.yaml | 32 +++++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) create mode 100755 deploy.sh create mode 100644 helm/covidok/templates/redis.yaml diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..ecf88c2 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +helm install --set service.type=LoadBalancer -n covidok covidok helm/covidok diff --git a/helm/covidok/templates/minio.yaml b/helm/covidok/templates/minio.yaml index d6d382f..dc3a5a2 100644 --- a/helm/covidok/templates/minio.yaml +++ b/helm/covidok/templates/minio.yaml @@ -11,7 +11,6 @@ spec: apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 kind: Deployment metadata: - namespace: minio name: minio-covidok spec: selector: diff --git a/helm/covidok/templates/redis.yaml b/helm/covidok/templates/redis.yaml new file mode 100644 index 0000000..06fe626 --- /dev/null +++ b/helm/covidok/templates/redis.yaml @@ -0,0 +1,32 @@ +apiVersion: v1 +kind: Service +metadata: + name: redis +spec: + ports: + - port: 6379 + selector: + app: redis-dev +--- +apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 +kind: Deployment +metadata: + name: redis-dev +spec: + selector: + matchLabels: + app: redis-dev + strategy: + type: Recreate + template: + metadata: + labels: + app: redis-dev + spec: + containers: + - image: redis:6 + name: redis + ports: + - containerPort: 6379 + name: redis + command: ["redis-server"]