diff --git a/manifest/deployment.yml b/manifest/deployment.yml deleted file mode 100644 index 386799a..0000000 --- a/manifest/deployment.yml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: weather-app -spec: - replicas: 2 - selector: - matchLabels: - app: weather-app - template: - metadata: - labels: - app: weather-app - spec: - containers: - - name: weather-app - image: wededo4644/react_weather_app:latest - imagePullPolicy: Always - ports: - - containerPort: 3000 - diff --git a/manifest/service.yml b/manifest/service.yml deleted file mode 100644 index c6b0369..0000000 --- a/manifest/service.yml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: weather-app -spec: - type: LoadBalancer - selector: - app: weather-app - ports: - - port: 80 - protocol: TCP - targetPort: 3000 - nodePort: 31000