-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
area/cleanupkind/frictionIssues causing user pain that do not have a workaroundIssues causing user pain that do not have a workaroundplatform/windowspriority/p2May take a couple of releasesMay take a couple of releases
Description
** Note from the Skaffold team: This issue is caused by Chocolatey's shim (chocolatey/home#134) and cannot be fixed by Skaffold **
Expected behavior
Skaffold cleans up all deployments when dev mode is exited.
Actual behavior
Skaffold doesn't clean up any deployments when dev mode is exited.
Information
After pressing Ctrl + c in Git Bash to exit dev mode, I see "Cleaning up..." in the logs, which exits immediately. All my services and pods are still running afterwards. I have installed Skaffold using chocolatey.
- Skaffold version: v1.14.0
- Operating system: Windows 10 Education (1909)
- Contents of skaffold.yaml:
apiVersion: skaffold/v2alpha3
kind: Config
deploy:
kubectl:
manifests:
- ./infra/k8s/*
build:
local:
push: false # disable default push to docker hub
artifacts:
- image: mattpodolak/client
context: client
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.js'
dest: .
- image: mattpodolak/comments
context: comments
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '*.js'
dest: .
- image: mattpodolak/event-bus
context: event-bus
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '*.js'
dest: .
- image: mattpodolak/moderation
context: moderation
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '*.js'
dest: .
- image: mattpodolak/posts
context: posts
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '*.js'
dest: .
- image: mattpodolak/query
context: query
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '*.js'
dest: .Steps to reproduce the behavior
- clone this repo: https://github.com/mattpodolak/mini-mern-ms
skaffold devin Git Bash on WindowsCtrl + ckubectl get podsorkubectl get services
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area/cleanupkind/frictionIssues causing user pain that do not have a workaroundIssues causing user pain that do not have a workaroundplatform/windowspriority/p2May take a couple of releasesMay take a couple of releases