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
- Host: GitHub
- URL: https://github.com/scriptcamp/kubernetes-kaniko
- Owner: scriptcamp
- Created: 2021-07-22T06:57:30.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T19:20:39.000Z (about 1 year ago)
- Last Synced: 2025-04-28T12:59:45.645Z (23 days ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 9
- Watchers: 3
- Forks: 71
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```