You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 12, 2024. It is now read-only.
I'm not really sure where to start troubleshooting this. Everything seems to work great except there are no pods created after a draft up.
$ draft up
WARNING: no registry has been set, therefore Draft will not push to a container registry. This can be fixed by running `draft config set registry docker.io/myusername`
Hint: this warning can be disabled by running `draft config set disable-push-warning 1`
Draft Up Started: 'example-nodejs': 01DPVKFTT69D4MVFR3R998Q1C0
example-nodejs: Building Docker Image: SUCCESS ⚓ (1.0002s)
example-nodejs: Releasing Application: SUCCESS ⚓ (2.0919s)
Inspect the logs with `draft logs 01DPVKFTT69D4MVFR3R998Q1C0`
$ kubectl get pods
No resources found.
$ kubectl cluster-info
Kubernetes master is running at https://kubernetes.docker.internal:6443
KubeDNS is running at https://kubernetes.docker.internal:6443/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
$ draft logs 01DPVKFTT69D4MVFR3R998Q1C0
Step 1/9 : FROM node:10
---> 636ef87129d6
Step 2/9 : ENV PORT 8080
---> Using cache
---> f500e017d9bf
Step 3/9 : EXPOSE 8080
---> Using cache
---> a9778da2688e
Step 4/9 : RUN mkdir -p /usr/src/app
---> Using cache
---> db6086346864
Step 5/9 : WORKDIR /usr/src/app
---> Using cache
---> 7b20ca6e653c
Step 6/9 : COPY package.json .
---> Using cache
---> 19c4c31a36bd
Step 7/9 : RUN npm install
---> Using cache
---> a05150a4123d
Step 8/9 : COPY . .
---> Using cache
---> 1ab8ec9ad0a3
Step 9/9 : CMD ["npm", "start"]
---> Using cache
---> 4ca90cdae875
Successfully built 4ca90cdae875
Successfully tagged example-nodejs:edb6c96293bf835b42a2f0a265c08e930b0491f9