Created
July 22, 2022 15:52
-
-
Save isimmons/34affa75901d0c6dd86e2143a1a019fc to your computer and use it in GitHub Desktop.
skaffold dev -vdebug output for course project sg microservices with node and react
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
selector: | |
app: auth-mongo | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: client-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: client | |
template: | |
metadata: | |
labels: | |
app: client | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- image: isimmons33/ticketing-client:3f0ee8d05d8ea4e09d674946e619c7658780846700352f5403226cbc3afef664 | |
name: client | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: client-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: client | |
port: 3000 | |
protocol: TCP | |
targetPort: 3000 | |
selector: | |
app: client | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: expiration-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: expiration | |
template: | |
metadata: | |
labels: | |
app: expiration | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- env: | |
- name: NATS_CLIENT_ID | |
valueFrom: | |
fieldRef: | |
fieldPath: metadata.name | |
- name: NATS_CLUSTER_ID | |
value: ticketing | |
- name: NATS_URL | |
value: http://nats-ip-srv:4222 | |
- name: REDIS_HOST | |
value: expiration-redis-ip-srv | |
image: isimmons33/ticketing-expiration:5c28d14176b0c40dc3e811c013674c9070e9957ab0640cc0b718de8ececee67e | |
name: expiration | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: expiration-redis-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: expiration-redis | |
template: | |
metadata: | |
labels: | |
app: expiration-redis | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- image: redis | |
name: expiration-redis | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: expiration-redis-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: expiration-redis-db | |
port: 6379 | |
protocol: TCP | |
targetPort: 6379 | |
selector: | |
app: expiration-redis | |
type: ClusterIP | |
--- | |
apiVersion: networking.k8s.io/v1 | |
kind: Ingress | |
metadata: | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
nginx.ingress.kubernetes.io/use-regex: "true" | |
name: ingress-service | |
namespace: default | |
spec: | |
rules: | |
- host: ticketing.com | |
http: | |
paths: | |
- backend: | |
service: | |
name: payments-ip-srv | |
port: | |
number: 3000 | |
path: /api/payments/?(.*) | |
pathType: Prefix | |
- backend: | |
service: | |
name: auth-ip-srv | |
port: | |
number: 3000 | |
path: /api/users/?(.*) | |
pathType: Prefix | |
- backend: | |
service: | |
name: tickets-ip-srv | |
port: | |
number: 3000 | |
path: /api/tickets/?(.*) | |
pathType: Prefix | |
- backend: | |
service: | |
name: orders-ip-srv | |
port: | |
number: 3000 | |
path: /api/orders/?(.*) | |
pathType: Prefix | |
- backend: | |
service: | |
name: client-ip-srv | |
port: | |
number: 3000 | |
path: /?(.*) | |
pathType: Prefix | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: nats-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: nats | |
template: | |
metadata: | |
labels: | |
app: nats | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- args: | |
- -p | |
- "4222" | |
- -m | |
- "8222" | |
- -hbi | |
- 5s | |
- -hbt | |
- 5s | |
- -hbf | |
- "2" | |
- -SD | |
- -cid | |
- ticketing | |
image: nats-streaming:latest | |
name: nats | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: nats-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: client | |
port: 4222 | |
protocol: TCP | |
targetPort: 4222 | |
- name: monitoring | |
port: 8222 | |
protocol: TCP | |
targetPort: 8222 | |
selector: | |
app: nats | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: orders-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: orders | |
template: | |
metadata: | |
labels: | |
app: orders | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- env: | |
- name: NATS_CLIENT_ID | |
valueFrom: | |
fieldRef: | |
fieldPath: metadata.name | |
- name: NATS_CLUSTER_ID | |
value: ticketing | |
- name: NATS_URL | |
value: http://nats-ip-srv:4222 | |
- name: MONGO_URI | |
value: mongodb://orders-mongo-ip-srv:27017/orders | |
- name: JWT_KEY | |
valueFrom: | |
secretKeyRef: | |
key: JWT_KEY | |
name: jwt-secret | |
image: isimmons33/ticketing-orders:b115eb3eb2326f2e8d3f32f829b79ac7d67fcd47ea5c58f1721dd43ea98ce44f | |
name: orders | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: orders-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: orders | |
port: 3000 | |
protocol: TCP | |
targetPort: 3000 | |
selector: | |
app: orders | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: orders-mongo-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: orders-mongo | |
template: | |
metadata: | |
labels: | |
app: orders-mongo | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- image: mongo | |
name: orders-mongo | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: orders-mongo-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: orders-mongo-db | |
port: 27017 | |
protocol: TCP | |
targetPort: 27017 | |
selector: | |
app: orders-mongo | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: payments-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: payments | |
template: | |
metadata: | |
labels: | |
app: payments | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- env: | |
- name: NATS_CLIENT_ID | |
valueFrom: | |
fieldRef: | |
fieldPath: metadata.name | |
- name: NATS_CLUSTER_ID | |
value: ticketing | |
- name: NATS_URL | |
value: http://nats-ip-srv:4222 | |
- name: MONGO_URI | |
value: mongodb://payments-mongo-ip-srv:27017/payments | |
- name: JWT_KEY | |
valueFrom: | |
secretKeyRef: | |
key: JWT_KEY | |
name: jwt-secret | |
- name: STRIPE_KEY | |
valueFrom: | |
secretKeyRef: | |
key: STRIPE_KEY | |
name: stripe-secret | |
image: isimmons33/ticketing-payments:0c26a7736a0cf15a4a1abb07b69ca7d9539eae6ba45682224213307e01a083c9 | |
name: payments | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: payments-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: payments | |
port: 3000 | |
protocol: TCP | |
targetPort: 3000 | |
selector: | |
app: payments | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: payments-mongo-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: payments-mongo | |
template: | |
metadata: | |
labels: | |
app: payments-mongo | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- image: mongo | |
name: payments-mongo | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: payments-mongo-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: payments-mongo-db | |
port: 27017 | |
protocol: TCP | |
targetPort: 27017 | |
selector: | |
app: payments-mongo | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: tickets-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: tickets | |
template: | |
metadata: | |
labels: | |
app: tickets | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- env: | |
- name: NATS_CLIENT_ID | |
valueFrom: | |
fieldRef: | |
fieldPath: metadata.name | |
- name: NATS_CLUSTER_ID | |
value: ticketing | |
- name: NATS_URL | |
value: http://nats-ip-srv:4222 | |
- name: MONGO_URI | |
value: mongodb://tickets-mongo-ip-srv:27017/tickets | |
- name: JWT_KEY | |
valueFrom: | |
secretKeyRef: | |
key: JWT_KEY | |
name: jwt-secret | |
image: isimmons33/ticketing-tickets:b8529b754f9c6dd982e4274e60056d2a9217f8a657c6ed1dca71dd415cecf0ca | |
name: tickets | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: tickets-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: tickets | |
port: 3000 | |
protocol: TCP | |
targetPort: 3000 | |
selector: | |
app: tickets | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: tickets-mongo-depl | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: tickets-mongo | |
template: | |
metadata: | |
labels: | |
app: tickets-mongo | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
spec: | |
containers: | |
- image: mongo | |
name: tickets-mongo | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
name: tickets-mongo-ip-srv | |
namespace: default | |
spec: | |
ports: | |
- name: tickets-mongo-db | |
port: 27017 | |
protocol: TCP | |
targetPort: 27017 | |
selector: | |
app: tickets-mongo | |
type: ClusterIP subtask=-1 task=DevLoop | |
DEBU[0002] Running command: [kubectl --context docker-desktop get -f - --ignore-not-found -ojson] subtask=0 task=Deploy | |
DEBU[0002] Command output: [] subtask=0 task=Deploy | |
DEBU[0002] 24 manifests to deploy. 24 are updated or new subtask=0 task=Deploy | |
DEBU[0002] Running command: [kubectl --context docker-desktop apply -f -] subtask=0 task=Deploy | |
- deployment.apps/auth-depl created | |
- service/auth-ip-srv created | |
- deployment.apps/auth-mongo-depl created | |
- service/auth-mongo-ip-srv created | |
- deployment.apps/client-depl created | |
- service/client-ip-srv created | |
- deployment.apps/expiration-depl created | |
- deployment.apps/expiration-redis-depl created | |
- service/expiration-redis-ip-srv created | |
- ingress.networking.k8s.io/ingress-service created | |
- deployment.apps/nats-depl created | |
- service/nats-ip-srv created | |
- deployment.apps/orders-depl created | |
- service/orders-ip-srv created | |
- deployment.apps/orders-mongo-depl created | |
- service/orders-mongo-ip-srv created | |
- deployment.apps/payments-depl created | |
- service/payments-ip-srv created | |
- deployment.apps/payments-mongo-depl created | |
- service/payments-mongo-ip-srv created | |
- deployment.apps/tickets-depl created | |
- service/tickets-ip-srv created | |
- deployment.apps/tickets-mongo-depl created | |
- service/tickets-mongo-ip-srv created | |
INFO[0003] Deploy completed in 1.419 second subtask=-1 task=Deploy | |
Waiting for deployments to stabilize... | |
DEBU[0003] getting client config for kubeContext: `docker-desktop` subtask=-1 task=DevLoop | |
DEBU[0003] getting client config for kubeContext: `docker-desktop` subtask=-1 task=DevLoop | |
DEBU[0003] checking status deployment/expiration-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/orders-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/payments-mongo-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/nats-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/payments-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/expiration-redis-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/orders-mongo-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/tickets-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/client-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/tickets-mongo-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/auth-mongo-depl subtask=-1 task=Deploy | |
DEBU[0003] checking status deployment/auth-depl subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment auth-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment nats-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment auth-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment expiration-redis-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment tickets-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment payments-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment orders-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment expiration-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment orders-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment tickets-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment client-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Running command: [kubectl --context docker-desktop rollout status deployment payments-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "auth-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "auth-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "orders-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "expiration-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "tickets-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "client-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "expiration-redis-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "payments-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0004] Command output: [Waiting for deployment "tickets-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Pod "expiration-redis-depl-5d7d84c6cc-tw4gc" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "expiration-redis-depl-5d7d84c6cc-tw4gc" subtask=-1 task=DevLoop | |
DEBU[0005] Pod "orders-depl-6d96f558f4-dtn64" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "orders-depl-6d96f558f4-dtn64" subtask=-1 task=DevLoop | |
DEBU[0005] Pod "expiration-depl-66579554d5-wft28" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Pod "auth-mongo-depl-79bc76b7c4-ss4j9" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Pod "auth-depl-5d575c4465-446f2" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Pod "client-depl-85f5f56c6f-xtlsv" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Pod "tickets-mongo-depl-89d47db56-4ls6w" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "tickets-mongo-depl-89d47db56-4ls6w" subtask=-1 task=DevLoop | |
DEBU[0005] Command output: [Waiting for deployment "payments-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "nats-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "orders-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Pod "tickets-depl-58c95ddffc-4swfq" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "tickets-depl-58c95ddffc-4swfq" subtask=-1 task=DevLoop | |
DEBU[0005] Pod "payments-mongo-depl-586777f45b-2dqwg" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "payments-mongo-depl-586777f45b-2dqwg" subtask=-1 task=DevLoop | |
DEBU[0005] Pod "payments-depl-67b97f54db-46krp" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "payments-depl-67b97f54db-46krp" subtask=-1 task=DevLoop | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment auth-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment orders-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment auth-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment client-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment expiration-redis-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment expiration-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment tickets-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Pod "nats-depl-6888cb775c-d9xcs" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0005] Fetching events for pod "nats-depl-6888cb775c-d9xcs" subtask=-1 task=DevLoop | |
DEBU[0005] Command output: [Waiting for deployment "expiration-redis-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "auth-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "orders-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "auth-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "tickets-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "client-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0005] Running command: [kubectl --context docker-desktop rollout status deployment tickets-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0005] Command output: [Waiting for deployment "expiration-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0006] Command output: [Waiting for deployment "tickets-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0006] Pod "orders-mongo-depl-7c4d864c9b-rwpwk" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0006] Fetching events for pod "orders-mongo-depl-7c4d864c9b-rwpwk" subtask=-1 task=DevLoop | |
DEBU[0006] Running command: [kubectl --context docker-desktop rollout status deployment payments-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0006] Running command: [kubectl --context docker-desktop rollout status deployment payments-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0006] Command output: [Waiting for deployment "payments-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0006] Command output: [Waiting for deployment "payments-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0006] Running command: [kubectl --context docker-desktop rollout status deployment nats-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0006] Command output: [Waiting for deployment "nats-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
I0722 11:44:37.033910 14687 request.go:668] Waited for 1.0439075s due to client-side throttling, not priority and fairness, request: GET:https://kubernetes.docker.internal:6443/api/v1/namespaces/default/pods?labelSelector=app%!D(MISSING)expiration-redis%!C(MISSING)skaffold.dev%!F(MISSING)run-id%!D(MISSING)c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 | |
DEBU[0006] Pod "expiration-redis-depl-5d7d84c6cc-tw4gc" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0006] Running command: [kubectl --context docker-desktop rollout status deployment expiration-redis-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0007] Command output: [Waiting for deployment "expiration-redis-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0007] Pod "auth-depl-5d575c4465-446f2" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0007] Running command: [kubectl --context docker-desktop rollout status deployment auth-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0007] Command output: [Waiting for deployment "auth-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0007] Pod "orders-depl-6d96f558f4-dtn64" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0007] Running command: [kubectl --context docker-desktop rollout status deployment orders-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0007] Command output: [Waiting for deployment "orders-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0007] Pod "auth-mongo-depl-79bc76b7c4-ss4j9" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0007] Running command: [kubectl --context docker-desktop rollout status deployment auth-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0007] Command output: [Waiting for deployment "auth-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0007] Running command: [kubectl --context docker-desktop rollout status deployment orders-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0007] Command output: [Waiting for deployment "orders-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0007] Pod "tickets-mongo-depl-89d47db56-4ls6w" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0007] Fetching events for pod "tickets-mongo-depl-89d47db56-4ls6w" subtask=-1 task=DevLoop | |
DEBU[0008] Pod "client-depl-85f5f56c6f-xtlsv" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0008] Running command: [kubectl --context docker-desktop rollout status deployment client-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0008] Command output: [Waiting for deployment "client-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0008] Pod "expiration-depl-66579554d5-wft28" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0008] Running command: [kubectl --context docker-desktop rollout status deployment expiration-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0008] Command output: [Waiting for deployment "expiration-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0008] Pod "tickets-depl-58c95ddffc-4swfq" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0008] Running command: [kubectl --context docker-desktop rollout status deployment tickets-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0008] Command output: [Waiting for deployment "tickets-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
- deployment/auth-depl: creating container auth | |
- pod/auth-depl-5d575c4465-446f2: creating container auth | |
- deployment/auth-mongo-depl: creating container auth-mongo | |
- pod/auth-mongo-depl-79bc76b7c4-ss4j9: creating container auth-mongo | |
- deployment/client-depl: creating container client | |
- pod/client-depl-85f5f56c6f-xtlsv: creating container client | |
- deployment/expiration-depl: creating container expiration | |
- pod/expiration-depl-66579554d5-wft28: creating container expiration | |
- deployment/expiration-redis-depl: creating container expiration-redis | |
- pod/expiration-redis-depl-5d7d84c6cc-tw4gc: creating container expiration-redis | |
- deployment/nats-depl: waiting for rollout to finish: 0 of 1 updated replicas are available... | |
- deployment/orders-depl: creating container orders | |
- pod/orders-depl-6d96f558f4-dtn64: creating container orders | |
- deployment/orders-mongo-depl: waiting for rollout to finish: 0 of 1 updated replicas are available... | |
- deployment/payments-depl: waiting for rollout to finish: 0 of 1 updated replicas are available... | |
- deployment/payments-mongo-depl: waiting for rollout to finish: 0 of 1 updated replicas are available... | |
- deployment/tickets-depl: creating container tickets | |
- pod/tickets-depl-58c95ddffc-4swfq: creating container tickets | |
- deployment/tickets-mongo-depl: waiting for rollout to finish: 0 of 1 updated replicas are available... | |
DEBU[0008] Pod "payments-mongo-depl-586777f45b-2dqwg" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0008] Running command: [kubectl --context docker-desktop rollout status deployment payments-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0008] Command output: [Waiting for deployment "payments-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0008] Pod "payments-depl-67b97f54db-46krp" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0008] Running command: [kubectl --context docker-desktop rollout status deployment payments-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0009] Command output: [Waiting for deployment "payments-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0009] Pod "nats-depl-6888cb775c-d9xcs" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0009] Running command: [kubectl --context docker-desktop rollout status deployment nats-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0009] Command output: [Waiting for deployment "nats-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0009] Pod "expiration-redis-depl-5d7d84c6cc-tw4gc" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0009] Running command: [kubectl --context docker-desktop rollout status deployment expiration-redis-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0009] Command output: [Waiting for deployment "expiration-redis-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0009] Pod "auth-depl-5d575c4465-446f2" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0009] Running command: [kubectl --context docker-desktop rollout status deployment auth-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0009] Command output: [Waiting for deployment "auth-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0009] Running command: [kubectl --context docker-desktop rollout status deployment tickets-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0009] Command output: [Waiting for deployment "tickets-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0009] Pod "orders-depl-6d96f558f4-dtn64" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0009] Running command: [kubectl --context docker-desktop rollout status deployment orders-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0010] Command output: [Waiting for deployment "orders-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0010] Pod "auth-mongo-depl-79bc76b7c4-ss4j9" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0010] Running command: [kubectl --context docker-desktop rollout status deployment auth-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0010] Command output: [Waiting for deployment "auth-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0010] Pod "orders-mongo-depl-7c4d864c9b-rwpwk" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0010] Running command: [kubectl --context docker-desktop rollout status deployment orders-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0010] Command output: [Waiting for deployment "orders-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0010] Fetching events for pod "client-depl-85f5f56c6f-xtlsv" subtask=-1 task=DevLoop | |
DEBU[0010] Fetching events for pod "expiration-depl-66579554d5-wft28" subtask=-1 task=DevLoop | |
DEBU[0010] Pod "tickets-depl-58c95ddffc-4swfq" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0010] Running command: [kubectl --context docker-desktop rollout status deployment tickets-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0011] Command output: [Waiting for deployment "tickets-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0011] Pod "payments-mongo-depl-586777f45b-2dqwg" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0011] Running command: [kubectl --context docker-desktop rollout status deployment payments-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0011] Command output: [Waiting for deployment "payments-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0011] Pod "payments-depl-67b97f54db-46krp" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0011] Running command: [kubectl --context docker-desktop rollout status deployment payments-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0011] Command output: [Waiting for deployment "payments-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0011] Fetching events for pod "nats-depl-6888cb775c-d9xcs" subtask=-1 task=DevLoop | |
DEBU[0011] Fetching events for pod "expiration-redis-depl-5d7d84c6cc-tw4gc" subtask=-1 task=DevLoop | |
DEBU[0011] Fetching events for pod "auth-depl-5d575c4465-446f2" subtask=-1 task=DevLoop | |
DEBU[0012] Pod "tickets-mongo-depl-89d47db56-4ls6w" scheduled but not ready: checking container statuses subtask=-1 task=DevLoop | |
DEBU[0012] Running command: [kubectl --context docker-desktop rollout status deployment tickets-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0012] Command output: [Waiting for deployment "tickets-mongo-depl" rollout to finish: 0 of 1 updated replicas are available... | |
] subtask=-1 task=Deploy | |
DEBU[0012] Fetching events for pod "orders-depl-6d96f558f4-dtn64" subtask=-1 task=DevLoop | |
DEBU[0012] Running command: [kubectl --context docker-desktop rollout status deployment client-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0012] Command output: [deployment "client-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/client-depl is ready. [11/12 deployment(s) still pending] | |
DEBU[0012] Fetching events for pod "auth-mongo-depl-79bc76b7c4-ss4j9" subtask=-1 task=DevLoop | |
DEBU[0012] Running command: [kubectl --context docker-desktop rollout status deployment expiration-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0013] Command output: [deployment "expiration-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/expiration-depl is ready. [10/12 deployment(s) still pending] | |
DEBU[0013] Fetching events for pod "orders-mongo-depl-7c4d864c9b-rwpwk" subtask=-1 task=DevLoop | |
DEBU[0013] Fetching events for pod "tickets-depl-58c95ddffc-4swfq" subtask=-1 task=DevLoop | |
DEBU[0013] Fetching events for pod "payments-mongo-depl-586777f45b-2dqwg" subtask=-1 task=DevLoop | |
DEBU[0013] Fetching events for pod "payments-depl-67b97f54db-46krp" subtask=-1 task=DevLoop | |
DEBU[0013] Running command: [kubectl --context docker-desktop rollout status deployment nats-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0014] Command output: [deployment "nats-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/nats-depl is ready. [9/12 deployment(s) still pending] | |
DEBU[0014] Running command: [kubectl --context docker-desktop rollout status deployment expiration-redis-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0014] Command output: [deployment "expiration-redis-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/expiration-redis-depl is ready. [8/12 deployment(s) still pending] | |
DEBU[0014] Running command: [kubectl --context docker-desktop rollout status deployment auth-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0014] Command output: [deployment "auth-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/auth-depl is ready. [7/12 deployment(s) still pending] | |
DEBU[0014] Fetching events for pod "tickets-mongo-depl-89d47db56-4ls6w" subtask=-1 task=DevLoop | |
DEBU[0014] Running command: [kubectl --context docker-desktop rollout status deployment orders-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0014] Command output: [deployment "orders-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/orders-depl is ready. [6/12 deployment(s) still pending] | |
DEBU[0014] Running command: [kubectl --context docker-desktop rollout status deployment auth-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0015] Command output: [deployment "auth-mongo-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/auth-mongo-depl is ready. [5/12 deployment(s) still pending] | |
DEBU[0015] Running command: [kubectl --context docker-desktop rollout status deployment orders-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0015] Command output: [deployment "orders-mongo-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/orders-mongo-depl is ready. [4/12 deployment(s) still pending] | |
DEBU[0015] Running command: [kubectl --context docker-desktop rollout status deployment tickets-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0015] Command output: [deployment "tickets-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/tickets-depl is ready. [3/12 deployment(s) still pending] | |
DEBU[0015] Running command: [kubectl --context docker-desktop rollout status deployment payments-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0015] Command output: [deployment "payments-mongo-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/payments-mongo-depl is ready. [2/12 deployment(s) still pending] | |
DEBU[0015] Running command: [kubectl --context docker-desktop rollout status deployment payments-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0015] Command output: [deployment "payments-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/payments-depl is ready. [1/12 deployment(s) still pending] | |
DEBU[0015] Running command: [kubectl --context docker-desktop rollout status deployment tickets-mongo-depl --namespace default --watch=false] subtask=-1 task=Deploy | |
DEBU[0016] Command output: [deployment "tickets-mongo-depl" successfully rolled out | |
] subtask=-1 task=Deploy | |
- deployment/tickets-mongo-depl is ready. | |
Deployments stabilized in 12.401 seconds | |
DEBU[0016] getting client config for kubeContext: `docker-desktop` subtask=-1 task=DevLoop | |
Press Ctrl+C to exit | |
INFO[0016] Streaming logs from pod: auth-depl-5d575c4465-446f2 container: auth subtask=-1 task=DevLoop | |
DEBU[0016] Running command: [kubectl --context docker-desktop logs --since=14s -f auth-depl-5d575c4465-446f2 -c auth --namespace default] subtask=-1 task=DevLoop | |
INFO[0016] Streaming logs from pod: client-depl-85f5f56c6f-xtlsv container: client subtask=-1 task=DevLoop | |
DEBU[0016] Running command: [kubectl --context docker-desktop logs --since=14s -f client-depl-85f5f56c6f-xtlsv -c client --namespace default] subtask=-1 task=DevLoop | |
INFO[0016] Streaming logs from pod: expiration-depl-66579554d5-wft28 container: expiration subtask=-1 task=DevLoop | |
DEBU[0016] Running command: [kubectl --context docker-desktop logs --since=14s -f expiration-depl-66579554d5-wft28 -c expiration --namespace default] subtask=-1 task=DevLoop | |
INFO[0016] Streaming logs from pod: orders-depl-6d96f558f4-dtn64 container: orders subtask=-1 task=DevLoop | |
DEBU[0016] Running command: [kubectl --context docker-desktop logs --since=14s -f orders-depl-6d96f558f4-dtn64 -c orders --namespace default] subtask=-1 task=DevLoop | |
INFO[0016] Streaming logs from pod: tickets-depl-58c95ddffc-4swfq container: tickets subtask=-1 task=DevLoop | |
DEBU[0016] Running command: [kubectl --context docker-desktop logs --since=14s -f tickets-depl-58c95ddffc-4swfq -c tickets --namespace default] subtask=-1 task=DevLoop | |
INFO[0016] Streaming logs from pod: payments-depl-67b97f54db-46krp container: payments subtask=-1 task=DevLoop | |
DEBU[0016] Running command: [kubectl --context docker-desktop logs --since=14s -f payments-depl-67b97f54db-46krp -c payments --namespace default] subtask=-1 task=DevLoop | |
[auth] | |
[auth] > [email protected] start | |
[auth] > nodemon src/index.ts | |
[auth] | |
[auth] [nodemon] 2.0.19 | |
[auth] [nodemon] to restart at any time, enter `rs` | |
[auth] [nodemon] watching path(s): *.* | |
[auth] [nodemon] watching extensions: ts,json | |
[auth] [nodemon] starting `ts-node src/index.ts` | |
[expiration] | |
[expiration] > [email protected] start | |
[expiration] > ts-node-dev src/index.ts | |
[expiration] | |
[expiration] [INFO] 15:44:36 ts-node-dev ver. 2.0.0 (using ts-node ver. 10.9.1, typescript ver. 4.7.4) | |
[expiration] Connected to NATS | |
[client] | |
[client] > [email protected] dev | |
[client] > next | |
[client] | |
[client] ready - started server on 0.0.0.0:3000, url: http://localhost:3000 | |
[client] event - compiled client and server successfully in 9.1s (250 modules) | |
[tickets] | |
[tickets] > [email protected] start | |
[tickets] > ts-node-dev src/index.ts | |
[tickets] | |
[tickets] [INFO] 15:44:39 ts-node-dev ver. 2.0.0 (using ts-node ver. 10.9.1, typescript ver. 4.7.4) | |
[payments] | |
[payments] > [email protected] start | |
[payments] > ts-node-dev src/index.ts | |
[payments] | |
[payments] [INFO] 15:44:38 ts-node-dev ver. 2.0.0 (using ts-node ver. 10.9.1, typescript ver. 4.7.4) | |
[orders] | |
[orders] > [email protected] start | |
[orders] > ts-node-dev src/index.ts | |
[orders] | |
[orders] [INFO] 15:44:37 ts-node-dev ver. 2.0.0 (using ts-node ver. 10.9.1, typescript ver. 4.7.4) | |
[client] Attention: Next.js now collects completely anonymous telemetry regarding usage. | |
[client] This information is used to shape Next.js' roadmap and prioritize features. | |
[client] You can learn more, including how to opt-out if you'd not like to participate in this anonymous program, by visiting the following URL: | |
[client] https://nextjs.org/telemetry | |
[client] | |
DEBU[0017] Change detected<nil> subtask=-1 task=DevLoop | |
Watching for changes... | |
DEBU[0018] Found dependencies for dockerfile: [{package.json /app true 4 4} {. /app true 7 7}] subtask=-1 task=DevLoop | |
DEBU[0018] Found dependencies for dockerfile: [{package.json /app true 4 4} {. /app true 7 7}] subtask=-1 task=DevLoop | |
DEBU[0018] Found dependencies for dockerfile: [{package.json /app true 4 4} {. /app true 7 7}] subtask=-1 task=DevLoop | |
DEBU[0018] Found dependencies for dockerfile: [{package.json /app true 4 4} {. /app true 7 7}] subtask=-1 task=DevLoop | |
DEBU[0018] Found dependencies for dockerfile: [{package.json /app true 4 4} {. /app true 7 7}] subtask=-1 task=DevLoop | |
DEBU[0018] Found dependencies for dockerfile: [{package.json /app true 4 4} {. /app true 7 7}] subtask=-1 task=DevLoop | |
[auth] Connected to MongoDB | |
[auth] Listening on http://localhost:3000!! | |
[orders] Connected to NATS | |
[orders] Connected to MongoDB | |
[orders] Listening on http://localhost:3000!! | |
[tickets] Connected to NATS | |
[tickets] Connected to MongoDB | |
[tickets] Listening on http://localhost:3000!! | |
[payments] Connected to NATS | |
[payments] Connected to MongoDB | |
[payments] Listening on http://localhost:3000!! | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
k