An open API service indexing awesome lists of open source software.

https://github.com/scriptcamp/kubernetes-kaniko

Builiding Docker images using kaniko on Kubernetes pods
https://github.com/scriptcamp/kubernetes-kaniko

Last synced: 23 days ago
JSON representation

Builiding Docker images using kaniko on Kubernetes pods

Awesome Lists containing this project

README

        

# 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
```