Questions using this tag should be about the command line tool for Kubernetes applications. Questions about installation and use are on topic. Bug reports and feature requests should be submitted as GitHub issues.
Questions tagged [skaffold]
263 questions
168
votes
12 answers
Atleast one invalid signature was encountered
I am trying to build and deploy microservices images to a single-node Kubernetes cluster running on my development machine using minikube. I am using the cloud-native microservices demo application Online Boutique by Google to understand the use of…

Saranya Gupta
- 1,945
- 2
- 10
- 14
33
votes
3 answers
local development of microservices, methods and tools to work efficiently
I work with teams members to develop a microservices architecture but I have a problem with the way to work. Indeed, I have too many microservices and when I run them during my development, it consumes too memory even with a good workstation. So I…

jonn
- 660
- 2
- 7
- 18
18
votes
4 answers
Why does Colima failed to find Docker daemon
I was using Docker Desktop on my Mac for a long time. Currently Docker desktop causing a huge issues related to starting up. Everytime it needs some tweak to run or uninstall and install it again, that takes several hours to fix every time I start…

Siddiqui Noor
- 5,575
- 5
- 25
- 41
12
votes
0 answers
How do I get Google Cloud Build to properly substitute values when it responds to a GitHub trigger?
The Problem
A GitHub trigger set up in Google Cloud Build doesn't actually substitute the configured values while running the Build (cloudbuild.yaml)
This is the Google Cloud Build config
cloudbuild.yaml
steps:
- name:…

Joel Baudin
- 171
- 1
- 6
11
votes
1 answer
Multipass VM not reachable via specific http ports from host
I'm running an Ubuntu VM with multipass hyperkit do run microk8s. Within the VM all things checkout and available with skaffold/kubectl port forwarding. For instance:
$ multipass list
Name State IPv4 …

a11hard
- 1,904
- 4
- 19
- 41
9
votes
1 answer
one or more valid Kubernetes manifests are required to run skaffold
When I run skaffold init in my app directory it shows me:
one or more valid Kubernetes manifests are required to run skaffold
The content of the directory:
Do I have to provide Kubernetes manifests file with for example Pod, Service, etc?

softshipper
- 32,463
- 51
- 192
- 400
8
votes
4 answers
Why am I getting this error: ERROR [internal] load metadata
I am a Docker noob and am trying to run the make dev-services script, declared in the skaffold.yml file (I exchanged image and sha names with xxx):
- name: dev-services
build:
tagPolicy:
inputDigest: {}
local:
push: false
…

cachedcashew
- 257
- 2
- 3
- 9
8
votes
1 answer
In what order does Skaffold start up deployments and is there a way to specify order?
Basically, I need the database deployment to spin up before the API deployment. If the database isn't running, it throws an error in the API.
I've messed with the order in artifacts: and also in:
deploy:
kubectl:
manifests:
-…

cjones
- 8,384
- 17
- 81
- 175
6
votes
1 answer
POSTGRES_PASSWORD ignored and can access DB without or with any password
As the title says, I'm setting a POSTGRES_PASSWORD and after spinning up the cluster with Skaffold (--port-forward on so I can access the DB with pgAdmin), I can access the database
with or without the correct password. POSTGRES_DB and…

cjones
- 8,384
- 17
- 81
- 175
6
votes
4 answers
How do you debug python code with kubernetes and skaffold?
I am currently running a django app under python3 through kubernetes by going through skaffold dev. I have hot reload working with the Python source code. Is it currently possible to do interactive debugging with python on kubernetes?
For…

Thierry Lam
- 45,304
- 42
- 117
- 144
5
votes
3 answers
Skaffold syncs files but pod doesn't refresh
Kubernetes newbie here.
I have some strange Skaffold/Kubernetes behavior. I'm working in Google Cloud but I've changed to the local environment just for test and it's the same. So probably it's me how's doing something wrong. The problem is that…

Satorik
- 132
- 8
5
votes
2 answers
(Kubernetes + Docker) Skaffold keeps terminating my deployment files : Error: could not stabilize within 2m0s: context deadline exceeded
I'm trying to deploy a MicroServices system on my local machine using Skaffold.
ingress-srv.yaml
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: ingress-service
annotations:
kubernetes.io/ingress.class: nginx
…

JAN
- 21,236
- 66
- 181
- 318
5
votes
1 answer
skaffold does not reload golang code in minikube
I've been experimenting with skaffold with a local minikube installation. It's a nice to be able to develop your project on something that is as close as possible to production.
If I use the getting-started example provided on skaffold github repo,…

Fouad
- 855
- 1
- 11
- 30
5
votes
1 answer
Add a script or a command to run with Skaffold dev deployment to a Kubernetes cluster
I would like to run a command to clone a script from a remote repository before running skaffold dev I need to either somehow inject a git clone command or put the git clone command and the corresponding arguments in a shell script and run the shell…

Ali
- 1,759
- 2
- 32
- 69
5
votes
1 answer
Debugging a rails application in Minikube
I'm running a rails service inside a minikube cluster on my local machine. I like to throw breakpoints into my code in order to interact with the process. This doesn't work while inside Minikube. I can attach to the pod running my rails container…

E.E.33
- 2,013
- 3
- 22
- 34