Pachyderm pipeline unable to pull docker image

2019-06-05 02:10发布

I have successfully pushed my docker image to the registry: my-username/image-name

However, pachyderm is still unable to pull docker image(from logs):

container "user" in pod "pipeline-mopng-beneficiary-v2-v1-b6kln" is waiting to start: trying and failing to pull image

Where should I specify the image so that pachyderm is able to pull one? This is my config file:

{
    "pipeline": {
        "name": "mopng-beneficiary-v2"
    },
    "input": {
        "pfs": {
            "repo": "mopng_beneficiary_v2",
            "glob": "/*"
        }
    },
    "transform": {
        "cmd": ["python3", "/pclean.py /pfs/mopng_beneficiary_v2/euoEQHIwIQTe1wXtg46fFYok.csv /pfs/mopng_beneficiary_v2//Users/aviralsrivastava/Downloads/5Feb18_master_ujjwala_latlong_dist_dno_so_v7.csv /pfs/mopng_beneficiary_v2//Users/aviralsrivastava/Downloads/ppac_master_v3_mmi_enriched_with_sanity_check.csv /pfs/mopng_beneficiary_v2/Qc.csv"],
        "image": "username/my-image"
    }
}

1条回答
再贱就再见
2楼-- · 2019-06-05 03:01

It sounds like you might be missing image_pull_secrets: [] (documented further down in the spec)

查看更多
登录 后发表回答