How to generate and use K8s's imagepullsecrets

Source: Internet
Author: User
Tags k8s

If the company's Docker Warehouse (Harbor) requires user authentication, the image can be pulled.

So how do you generate this secret in k8s?

How can this secret be restored?

How is it implemented in the k8s yaml file?

Here are a few command tips:

1, generate Docker-registry's Secret

KUBECTL Create secret docker-registry harborsecret--docker-server=harbor.demo.com.cn--docker-username=' Docker-admin ' --docker-password='==pwd==' --docker-email='[email protected]  '

2, define the contents of this secret.

Kubectl Get Secrets Harborsecret--output="Jsonpath={.data.\.dockerconfigjson}" | Base64-d

3, examples of use in the Demployment yaml file.

... spec:      imagepullsecrets:      -name:harborsecret      containers:      -Name:eureka        Image: Harbor.demo.com.cn/eurekaserver:v1 ...

4, delete this secret.

Kubectl Delete Secrets Harborsecret

How to generate and use K8s's imagepullsecrets

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.