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"]