--- apiVersion: v1 kind: Service metadata: name: icebay-web-service namespace: icebay labels: app: icebay component: web spec: type: NodePort selector: app: icebay component: web ports: - name: http port: 80 targetPort: 5000 nodePort: 30080 --- apiVersion: v1 kind: Service metadata: name: postgres-service namespace: icebay labels: app: icebay component: database spec: type: ClusterIP selector: app: icebay component: database ports: - name: postgres port: 5432 targetPort: 5432 --- apiVersion: v1 kind: Service metadata: name: redis-service namespace: icebay labels: app: icebay component: cache spec: type: ClusterIP selector: app: icebay component: cache ports: - name: redis port: 6379 targetPort: 6379