From bcfbc3d253478ef6c9afa5953530aea57d5c6169 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 15 Nov 2023 23:03:27 -0300 Subject: [PATCH] Remove unused files --- .gitignore | 1 + api-deployment.yaml | 59 ----------------------- api-ingress.yaml | 19 -------- client-deployment.yaml | 41 ---------------- client-ingress.yaml | 15 ------ db-deployment.yaml | 103 ----------------------------------------- ingress.yaml | 27 ----------- 7 files changed, 1 insertion(+), 264 deletions(-) delete mode 100644 api-deployment.yaml delete mode 100644 api-ingress.yaml delete mode 100644 client-deployment.yaml delete mode 100644 client-ingress.yaml delete mode 100644 db-deployment.yaml delete mode 100644 ingress.yaml diff --git a/.gitignore b/.gitignore index 51b2e75..d94a444 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .venv old-helm +old \ No newline at end of file diff --git a/api-deployment.yaml b/api-deployment.yaml deleted file mode 100644 index 4f16b23..0000000 --- a/api-deployment.yaml +++ /dev/null @@ -1,59 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: api - labels: - app: api -spec: - ports: - - port: 5000 - selector: - app: api - tier: backend - type: ClusterIP ---- -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/api-ingress.yaml b/api-ingress.yaml deleted file mode 100644 index 2f9d506..0000000 --- a/api-ingress.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: minikube-ingress-2 - annotations: - nginx.ingress.kubernetes.io/ssl-redirect: "false" - nginx.ingress.kubernetes.io/use-regex: "true" - nginx.ingress.kubernetes.io/rewrite-target: /$2 -spec: - rules: - - http: - paths: - - path: /api(/|$)(.*) - pathType: ImplementationSpecific - backend: - service: - name: api - port: - number: 5000 \ No newline at end of file diff --git a/client-deployment.yaml b/client-deployment.yaml deleted file mode 100644 index a44ee34..0000000 --- a/client-deployment.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: client - labels: - app: client -spec: - ports: - - port: 8080 - targetPort: 80 - selector: - app: client - tier: frontend - type: ClusterIP ---- -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/client-ingress.yaml b/client-ingress.yaml deleted file mode 100644 index 5788e6c..0000000 --- a/client-ingress.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: minikube-ingress -spec: - rules: - - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: client - port: - number: 8080 \ No newline at end of file diff --git a/db-deployment.yaml b/db-deployment.yaml deleted file mode 100644 index 664780c..0000000 --- a/db-deployment.yaml +++ /dev/null @@ -1,103 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: postgres - labels: - app: postgres -spec: - ports: - - port: 5432 - selector: - app: postgres - tier: postgres - clusterIP: None ---- -apiVersion: v1 -kind: PersistentVolume -metadata: - name: postgres-pv - labels: - type: local -spec: - capacity: - storage: 1Gi - volumeMode: Filesystem - accessModes: - - ReadWriteOnce - persistentVolumeReclaimPolicy: Retain - storageClassName: manual - # TODO: change hostPath (short.slc.ar/YkdtaD) - hostPath: - path: /tmp/minikube/postgres ---- -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: postgres-pv-claim - labels: - app: db -spec: - accessModes: - - ReadWriteOnce - storageClassName: manual - resources: - requests: - storage: 1Gi ---- -apiVersion: v1 -kind: Secret -metadata: - name: postgres-secrets -type: Opaque -data: - username: dXNlcm5hbWU= - password: cGFzc3dvcmQxMjM0 ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: db - labels: - app: db -spec: - replicas: 1 - selector: - matchLabels: - app: db - tier: postgres - strategy: - type: Recreate - template: - metadata: - labels: - app: db - tier: postgres - spec: - containers: - - image: db:prod - name: postgres - env: - - name: POSTGRES_PASSWORD - valueFrom: - secretKeyRef: - name: postgres-secrets - key: password - - name: PGDATA - value: /var/lib/postgresql/data/pgdata - - name: POSTGRES_DB - value: db - - name: POSTGRES_USER - valueFrom: - secretKeyRef: - name: postgres-secrets - key: username - ports: - - containerPort: 5432 - name: postgres - volumeMounts: - - name: postgres-pv-storage - mountPath: /var/lib/postgresql/data - volumes: - - name: postgres-pv-storage - persistentVolumeClaim: - claimName: postgres-pv-claim \ No newline at end of file diff --git a/ingress.yaml b/ingress.yaml deleted file mode 100644 index 55f26b0..0000000 --- a/ingress.yaml +++ /dev/null @@ -1,27 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: minikube-ingress - annotations: - nginx.ingress.kubernetes.io/ssl-redirect: "false" - nginx.ingress.kubernetes.io/use-regex: "true" - nginx.ingress.kubernetes.io/rewrite-target: /$2 -spec: - rules: - # - host: kube.slc.ar - - http: - paths: - - path: /()(.*) - pathType: ImplementationSpecific - backend: - service: - name: client - port: - number: 8080 - - path: /api(/|$)(.*) - pathType: ImplementationSpecific - backend: - service: - name: api - port: - number: 5000 \ No newline at end of file