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
5
votes
1 answer
Erratic and slow behavior with create-react-app and Skaffold kubernetes
I have Skaffold working well with local development server and database deployments. I'm trying to get working on the create-react-app front-end, but the behavior is incredibly slow and erratic.
Issues
The main problems are the following:
It takes…

cjones
- 8,384
- 17
- 81
- 175
5
votes
1 answer
How Do I Get Skaffold And Helm Charts To Work With A Local Image Repository?
We're trying to set up a local development environment with several microservices app under Skaffold. We managed to do it with base Skaffold, using a (slightly outdated) tutorial at https://github.com/ahmetb/skaffold-from-laptop-to-cloud. And to…

Ferrett Steinmetz
- 338
- 4
- 12
4
votes
1 answer
In skaffold/v2alpha3, i am getting error of "property manifests is not allowed"
apiVersion: skaffold/v2alpha3
kind: Config
deploy:
kubectl:
manifests:
- ./infra/k8s/*
build:
local:
push: false
artifacts:
- image: fifapes123/auth
context: auth
docker:
dockerfile: Dockerfile
…

Gaurav Sharma
- 43
- 4
4
votes
2 answers
pass constant to skaffold
I am trying to use a constant in skaffold, and to access it in skaffold profile:
example export SOME_IP=199.99.99.99 && skaffold run -p dev
skaffold.yaml
...
deploy:
helm:
flags:
global:
- "--debug"
releases:
- name: ***
…

Binzari Catalin
- 172
- 1
- 8
4
votes
1 answer
How to use skaffold with volumes
So i have a monorepo project that i want to use with skaffold
this is the file structure:
- apps
- server
...
- packages
- common
...
- k8s
- server-deployment.yaml
i want to use skaffold to deploy the server and link the common…

Nir Berko
- 1,368
- 1
- 13
- 33
4
votes
1 answer
No plugin found for prefix 'jib' in the current project and in the plugin groups while using quarkus + skaffold
I have a quarkus project which uses jib. I'm using skaffold to deploy the application to a local k8s cluster, this is my skaffold.yaml file:
apiVersion: skaffold/v1
kind: Config
build:
artifacts:
- image:…

Carlos Gonzalez
- 607
- 1
- 5
- 13
4
votes
0 answers
Client side throttling error while running skaffold dev
Link to the github
I'm trying to build a microservices application and when I ran Skaffold dev yesterday it worked fine but today when I run it I get this error:
I1106 19:00:53.703569 7794 request.go:668] Waited for 1.558340853s due to…

oliviaflexx
- 41
- 2
4
votes
0 answers
Skaffold.yaml not being parsed correctly
I have the following skaffold.yaml config file:
apiVersion: skaffold/v2alpha3
kind: Config
deploy:
kubectl:
manifest:
- ./infra/k8s/*
build:
local:
push: false
artifacts:
- image: hamza9899/auth
context: auth
…

Hamza LAHLOU
- 69
- 1
- 6
4
votes
2 answers
How to resolve DNS lookup error when trying to run example microservice application using minikube
Dear StackOverflow community!
I am trying to run the https://github.com/GoogleCloudPlatform/microservices-demo locally on minikube, so I am following their development guide:…

trebi
- 433
- 1
- 5
- 14
4
votes
2 answers
Problem with minikube and nginx ingress when reinstalled minikube
When I'm running following code:
minikube addons enable ingress
I'm getting following error:
▪ Using image k8s.gcr.io/ingress-nginx/controller:v0.44.0
▪ Using image docker.io/jettech/kube-webhook-certgen:v1.5.1
▪ Using image…

Ishan Joshi
- 151
- 3
- 19
4
votes
2 answers
How can I restart only one service by using skaffold?
I use skaffold for k8s based microservices app. I enter skaffold dev and skaffold run to run and skaffold delete to restart all microservices.
If I need to restart only one service, what must I do?

Yasin Okumuş
- 2,299
- 7
- 31
- 62
4
votes
1 answer
skaffold dev returns error Error 400: User project specified in the request is invalid., invalid?
i am not really sure how to debug this error, as i'm on terminal i am sure of my project id and i already logged in with my gcloud. This is my error with -vdebug:
INFO[0000] starting gRPC server on port 50051
INFO[0000] starting gRPC HTTP…

gpbaculio
- 5,693
- 13
- 60
- 102
4
votes
1 answer
Skaffold Kustomize Passing External Environment Variable into kustomization.yaml
Is there a way I can pass external environment variable to kustomization.yaml from Skaffold.
Assuming i have a kustomization file below
resources:
- ./deployment.yaml
- ./service.yaml
images:
- name: abc
newName:

jlim
- 909
- 2
- 12
- 24
4
votes
2 answers
Setting up a readiness, liveness or startup probe
I'm having difficulty understanding which would be best for my situation and how to actually implement it.
In a nutshell, the problem is this:
I'm spinning up my DB (Postgres), BE (Django), and FE (React) deployments with Skaffold
About 50% of the…

cjones
- 8,384
- 17
- 81
- 175
4
votes
4 answers
How to prevent pushing Kubernetes Secrets into git repository?
So I have this manifest in my project:
apiVersion: v1
kind: Secret
metadata:
name: cambiotoday-secret-key
namespace: default
type: Opaque
stringData:
ct-key:
---
# The rest of it, deployment and service.
...
And…

RottenCheese
- 869
- 2
- 12
- 18