Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 474 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 474 Bytes

kubernetes kaniko Examples With jenkins

Builiding Docker images using kaniko on Kubernetes pods

Full Documenation: https://devopscube.com/build-docker-image-kubernetes-pod/

Tech: Github + Dockerhub + Kubernetes

Create Kube Secret

kubectl create secret \
    docker-registry regcred \
    --docker-server=https://index.docker.io/v1/ \
    --docker-username=$REGISTRY_USER \
    --docker-password=$REGISTRY_PASS \
    --docker-email=$REGISTRY_EMAIL