I'm trying to deploy a docker image (https://hub.docker.com/r/digitorus/eramba-db) to Kubernetes. My workflow is using docker pull digitorus/eramba-db
to pull the image and using the below .yaml file to deploy to a separate namespace (eramba-1)
apiVersion: apps/v1
kind: Deployment
metadata:
name: eramba
namespace: eramba-1
labels:
app: eramba
spec:
replicas: 1
selector:
matchLabels:
app: eramba
template:
metadata:
labels:
app: eramba
spec:
containers:
- name: eramba
image: docker.io/digitorus/eramba:latest
ports:
- containerPort: 80
The master node has a status of (notReady) and the pod is pending.