Questions tagged [skaffold]

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.

263 questions
0
votes
1 answer

Change skaffold command for Cloud Code VSCode extension

I'm using the Cloud Code extension for VSCode and each time I'm deploying, the skaffold command executed is the following: skaffold run --enable-rpc -v info --rpc-http-port 33291 --default-repo gcr.io/project-1` while in my skaffold.yaml file I…
0
votes
1 answer

How to listen to Skaffold events without compiling the Event API protos?

I am experimenting with the Skaffold Event API. From a python application I would like to listen to the events over HTTP that are exposed through port 50052 on the /v1/events endpoint. I have compiled the .proto files to python by roughly following…
uvegla
  • 1
  • 1
  • 2
0
votes
1 answer

Deploy external helm chart with Skaffold

Is there something like examples/helm-deployment for external helm charts? Specifically, I'm looking to set up all the monitoring, tracing, etc infrastructure just as in staging/production, on minikube, starting with stable/prometheus-operator
Henrik
  • 9,714
  • 5
  • 53
  • 87
-1
votes
0 answers

Getting error while running skaffold run on Mac m1

I am trying to run skaffold command: skaffold run -f skaffold.yaml --platform=linux/amd64, But I am getting the following error : invalid skaffold config: getting minikube env: running [/opt/homebrew/bin/minikube docker-env --shell none -p minikube…
Shubham Gupta
  • 19
  • 1
  • 4
-1
votes
1 answer

How do I pass resources that were created by Terraform to Kustomize

Am using a combination of these tools Terraform - To deploy the Application specific AWS resources I need (For instance a secret) Skaffold - To help with the inner development loop, surrounding the deployment of K8s resources to local and remote…
Karthik Balasubramanian
  • 1,127
  • 4
  • 13
  • 36
-1
votes
2 answers

skaffold: build image using local maven dependency

I'm building my images using pack cli: pack build fhir-mongo --builder paketobuildpacks/builder:base --path target/hes-mpi-fhir-mongodb-service-0.0.1-SNAPSHOT.jar This is my project structure: . ├── hes-mpi-fhir-mongodb │ ├── deployment.yaml │ …
Jordi
  • 20,868
  • 39
  • 149
  • 333
-1
votes
1 answer

Unable to connect to the mongoDB using docker Kubernetes

I am trying to connect to the default mongo image in Kubernetes, I am running Desktop docker for windows, below is the YAML configuration for the mongo service which I am using in the server code to connect. apiVersion: apps/v1 kind:…
Rahul Gupta
  • 69
  • 2
  • 14
-1
votes
2 answers

How can I run a docker container from a docker image from docker hub in skaffold?

Let's say I want to run a container from an image from docker hub, let's say mosquitto I'd execute docker run -it -p 1883:1883 -p 9001:9001 eclipse-mosquitto. I tried to pull the image from gcr.io (deployment.yaml) like done here: apiVersion:…
thinwybk
  • 4,193
  • 2
  • 40
  • 76
1 2 3
17
18