diff --git a/api-deployment.yaml b/api-deployment.yaml new file mode 100644 index 0000000..56aa890 --- /dev/null +++ b/api-deployment.yaml @@ -0,0 +1,59 @@ +apiVersion: v1 +kind: Service +metadata: + name: api + labels: + app: api +spec: + ports: + - port: 5000 + selector: + app: api + tier: backend + type: LoadBalancer +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api + labels: + app: api +spec: + replicas: 1 + selector: + matchLabels: + app: api + tier: backend + strategy: + type: Recreate + template: + metadata: + labels: + app: api + tier: backend + spec: + containers: + - image: api:prod + name: api + env: + - name: POSTGRES_DB + value: api-db + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: postgres-secrets + key: password + - name: POSTGRES_USER + valueFrom: + secretKeyRef: + name: postgres-secrets + key: username + - name: DATABASE_URL + value: postgresql://$(POSTGRES_USER):$(POSTGRES_PASS)@api-db/$(POSTGRES_DB) + - name: APP_SETTINGS + value: src.config.ProductionConfig + - name: PORT + value: "5000" + ports: + - containerPort: 5000 + name: api diff --git a/client-deployment.yaml b/client-deployment.yaml new file mode 100644 index 0000000..f33c971 --- /dev/null +++ b/client-deployment.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Service +metadata: + name: client + labels: + app: client +spec: + ports: + - port: 8080 + targetPort: 80 + selector: + app: client + tier: frontend + type: LoadBalancer +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: client + labels: + app: client +spec: + replicas: 1 + selector: + matchLabels: + app: client + tier: frontend + strategy: + type: Recreate + template: + metadata: + labels: + app: client + tier: frontend + spec: + containers: + - image: client:prod + name: client + ports: + - containerPort: 80 + name: client diff --git a/docker-compose.yml b/data/docker-compose.yml similarity index 100% rename from docker-compose.yml rename to data/docker-compose.yml diff --git a/data/sample-api-users/requirements.txt b/data/sample-api-users/requirements.txt index aaca2ce..1c9fc12 100644 --- a/data/sample-api-users/requirements.txt +++ b/data/sample-api-users/requirements.txt @@ -6,4 +6,5 @@ psycopg2-binary==2.9.5 flask-cors==3.0.10 flask-bcrypt==1.0.1 pyjwt==2.6.0 -gunicorn==20.1.0 \ No newline at end of file +gunicorn==20.1.0 +Werkzeug==2.3.7 \ No newline at end of file