Assuming I have the following skaffold.yaml
apiVersion: skaffold/v2beta12
kind: Config
metadata:
name: myapp
build:
local:
push: true
artifacts:
- image: pkaramol/my-image
docker:
dockerfile: Dockerfile
deploy:
helm:
releases:
- name: myapp
chartPath: charts
kubectl:
manifests:
- ./k8s/*
How can I instruct skaffold
to avoid uploading (and then downloading) pkaramol/myimage
to dockerhub but rather build it locally and using it directly within the cluster I am connected to?