Minimal Node.js application for intro to Docker tutorial: https://www.digitalocean.com/community/tutorials/how-to-build-a-node-js-application-with-docker
kubectl create secret docker-registry regcred \
--docker-server=docker.pkg.github.com/<username>/ \
--docker-username=<username> \
--docker-password=<personal access tokens> \
--docker-email=<user email>
spec:
containers:
- name: nodejs
image: docker.pkg.github.com/<username>/istio-sample/app:1.0
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred
## References How To Install and Use Istio With Kubernetes