Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Latest commit

 

History

History

deploy-example

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

deploy-example

Here is an example deployment to a kubernetes cluster.

Remember to change the Secret is specified in 2_deployment.yaml. It's a base64-encoded json string which has credentials to the private registries.

To manually create such secret can follow https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#create-a-secret-by-providing-credentials-on-the-command-line.

kubectl create secret docker-registry image-pull-secret-src \
  -n imagepullsecret-patcher \
  --docker-server=<your-registry-server> \
  --docker-username=<your-name> \
  --docker-password=<your-pword> \
  --docker-email=<your-email>