Skip to content

--cache-artifacts fails when there is no local docker daemon #2677

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
prary opened this issue Aug 17, 2019 · 10 comments · Fixed by #2685
Closed

--cache-artifacts fails when there is no local docker daemon #2677

prary opened this issue Aug 17, 2019 · 10 comments · Fixed by #2685
Assignees
Labels
area/debug kind/bug Something isn't working platform/windows priority/p0 Highest priority. We are actively looking at delivering it.

Comments

@prary
Copy link
Contributor

prary commented Aug 17, 2019

I am trying to run skaffold debug mode but it fails with port-forwarding failure. I am using latest Cloud code plugin and a sample java application, mvn is builder used, Intellij version 19.x.x

Expected behavior

Should be able to put breakpoints in live application

Actual behavior

Not able to put breakpoints

Information

  • Skaffold version: 35( will uprade to latest and test)
  • Operating system: Windows
  • Contents of skaffold.yaml:
apiVersion: skaffold/v1beta11
kind: Config
build:
  artifacts:
  - image: ....../kube/test/jserver
    jibMaven:
      args: ["-f", "java-hello-world/pom.xml"]
    context: .
# defines the Kubernetes manifests to deploy on each run
deploy:
  kubectl:
    manifests:
    - C:\Users\prashant\cloud-code-samples-master\java\java-hello-world\kubernetes-manifests\hello.deployment.yaml

deployment yaml

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: simplehttp
  namespace: 103000-pra-dev
spec:
  selector:
    matchLabels:
      app: simplehttp
  replicas: 1
  template:
    metadata:
      labels:
        app: simplehttp
    spec:
      containers:
      - name: simplehttp
        image: ......kube/test/jserver:latest
        ports:
        - containerPort: 8080
        env:
        - name: PORT
          value: "8080"
      securityContext:
        runAsUser: 199
      imagePullSecrets:
      - name: regcred
---
apiVersion: v1
kind: Service
metadata:
  name: simplehttp
  namespace: ns-pra-dev
  labels:
    app: simplehttp
spec:
  ports:
  - port: 80
    targetPort: 8080
    protocol: TCP
    name: http
  selector:
    app: simplehttp

---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    ingress.kubernetes.io/ssl-redirect: "true"
    nginx.ingress.kubernetes.io/ssl-redirect: "true"
  generation: 1
  labels:
    app: simplehttp
  name: skaffold-example-ingress
  namespace: ns-pra-dev
  resourceVersion: "14651061"
spec:
  rules:
  - host: skaffold-example1.apps.net
    http:
      paths:
      - backend:
          serviceName: simplehttp
          servicePort: 8080
        path: /

  tls:
  - hosts:
    - skaffold-example1.apps.net
status:
  loadBalancer:
    ingress:
    - {}

Steps to reproduce the behavior

  1. C:\Users\prashant\go\src\github.com\GoogleContainerTools\skaffold.exe debug --filename java-hello-world/skaffold.yaml
    --label ide=idea --label ideVersion=2019.1.3.0.0 --label ijPluginVersion=unknown --port-forward=true -v=debug
@prary
Copy link
Contributor Author

prary commented Aug 18, 2019

Error logs with latest skaffold 36, I don't have docker on my system.
Command invoked by k8s continous deploy

C:\Users\prashant\go\src\github.com\GoogleContainerTools\skaffold.exe debug --filename java-hello-world/skaffold.yaml --label ide=idea --label ideVersion=2019.1.3.0.0 --label ijPluginVersion=unknown --port-forward=true

Build complete in 31.3071002s
Starting test...
Test complete in 0s
time="2019-08-18T18:46:39+05:30" level=debug msg="FIXME: Got an status-code for which error does not match any expected type!!!: -1" module=api status_code=-1
time="2019-08-18T18:46:39+05:30" level=fatal msg="exiting dev mode because first build failed: adding artifacts to cache: inspecting image: error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/images/...../..../kube/test/jserver:dirty@sha256:b7bf6c4239e79074b5c4344c1ac5d125635015d92fefb106a47c22a444870877/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running."

@balopat balopat added area/debug kind/bug Something isn't working platform/windows priority/p0 Highest priority. We are actively looking at delivering it. labels Aug 19, 2019
@balopat
Copy link
Contributor

balopat commented Aug 19, 2019

Thank you for filing @prary - we should look into this asap and try to reproduce on Windows. Can you try running with --cache-artifacts=false - we might have the bug there.

@briandealwis
Copy link
Member

I was able to reproduce on Windows. This seems to be a byproduct of #2621 that enables Skaffold's artifact caching by default. Running with --cache-artifacts=false (or setting environment SKAFFOLD_CACHE_ARTIFACTS=false`) should work around the issue.

@briandealwis briandealwis changed the title Unable to run skaffold Debug mode --cache-artifacts fails when there is no local docker daemon Aug 19, 2019
@briandealwis
Copy link
Member

(Oops, missed @balopat's reply)

@prary

This comment has been minimized.

@prary

This comment has been minimized.

@prary
Copy link
Contributor Author

prary commented Aug 20, 2019

←[34mStarting deploy...←[0m
time="2019-08-20T20:11:51+05:30" level=debug msg="Running command: [kubectl version --client -ojson]"
time="2019-08-20T20:12:01+05:30" level=debug msg="Command output: [{\n  \"clientVersion\": {\n    \"major\": \"1\",\n    \"minor\": \"13\",\n    \"gitVersion\": \"v1
.13.5\",\n    \"gitCommit\": \"2166946f41b36dea2c4626f90a77706f426cdea2\",\n    \"gitTreeState\": \"clean\",\n    \"buildDate\": \"2019-03-25T15:26:52Z\",\n    \"goV
ersion\": \"go1.11.5\",\n    \"compiler\": \"gc\",\n    \"platform\": \"windows/amd64\"\n  }\n}\n]"
←[34mkubectl client version: 1.13←[0m
time="2019-08-20T20:12:01+05:30" level=debug msg="Running command: [kubectl --context api...../....@.... create --d
ry-run -oyaml -f C:\\Users\\....\\cloud-code-samples-master\\java\\java-hello-world\\kubernetes-manifests\\hello.deployment.yaml]"
time="2019-08-20T20:30:45+05:30" level=debug msg="Command output: [apiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: simplehttp\n  namespace: 103000-pra-dev\
nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      app: simplehttp\n  template:\n    metadata:\n      labels:\n        app: simplehttp\n    spec:\n      con
tainers:\n      - env:\n        - name: PORT\n          value: \"8080\"\n        image: ..../test/jserver:latest\n
       name: simplehttp\n        ports:\n        - containerPort: 8080\n      imagePullSecrets:\n      - name: regcred\n      securityContext:\n        runAsUser: 19
9\napiVersion: v1\nkind: Service\nmetadata:\n  labels:\n    app: simplehttp\n  name: simplehttp\n  namespace: 103000-pra-dev\nspec:\n  ports:\n  - name: http\n    po
rt: 80\n    protocol: TCP\n    targetPort: 8080\n  selector:\n    app: simplehttp\napiVersion: extensions/v1beta1\nkind: Ingress\nmetadata:\n  annotations:\n    ingr
ess.kubernetes.io/ssl-redirect: \"true\"\n    nginx.ingress.kubernetes.io/ssl-redirect: \"true\"\n  creationTimestamp: \"2018-11-05T10:41:19Z\"\n  generation: 1\n  l
abels:\n    app: simplehttp\n  name: skaffold-example-ingress\n  namespace: 103000-pra-dev\n  resourceVersion: \"14651061\"\n  selfLink: /apis/extensions/v1beta1/nam
espaces/..../ingresses/skaffold-example-ingress\n  uid: 54698fa9-e0e7-11e8-ad52-6a1aa97f2964\nspec:\n  rules:\n  - host: skaffold-example1.apps.mt-d3.belv.gk
....\n    http:\n      paths:\n      - backend:\n          serviceName: simplehttp\n          servicePort: 8080\n        path: /\n  tls:\n  - hosts:\n    -
 ....\nstatus:\n  loadBalancer:\n    ingress:\n    - {}\n]"
time="2019-08-20T20:30:45+05:30" level=debug msg="manifests apiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: simplehttp\n  namespace: 103000-pra-dev\nspec:\
n  replicas: 1\n  selector:\n    matchLabels:\n      app: simplehttp\n  template:\n    metadata:\n      labels:\n        app: simplehttp\n    spec:\n      containers
:\n      - env:\n        - name: PORT\n          value: \"8080\"\n        image: ..../test/jserver:latest\n
name: simplehttp\n        ports:\n        - containerPort: 8080\n      imagePullSecrets:\n      - name: regcred\n      securityContext:\n        runAsUser: 199\n---\
napiVersion: v1\nkind: Service\nmetadata:\n  labels:\n    app: simplehttp\n  name: simplehttp\n  namespace: 103000-pra-dev\nspec:\n  ports:\n  - name: http\n    port
: 80\n    protocol: TCP\n    targetPort: 8080\n  selector:\n    app: simplehttp\n---\napiVersion: extensions/v1beta1\nkind: Ingress\nmetadata:\n  annotations:\n    i
ngress.kubernetes.io/ssl-redirect: \"true\"\n    nginx.ingress.kubernetes.io/ssl-redirect: \"true\"\n  creationTimestamp: \"2018-11-05T10:41:19Z\"\n  generation: 1\n
  labels:\n    app: simplehttp\n  name: skaffold-example-ingress\n  namespace: 103000-pra-dev\n  resourceVersion: \"14651061\"\n  selfLink: /apis/extensions/v1beta1/
namespaces/..../ingresses/skaffold-example-ingress\n  uid: 54698fa9-e0e7-11e8-ad52-6a1aa97f2964\nspec:\n  rules:\n  - host: skaffold-example1.apps.mt-d3.belv
.gk....\n    http:\n      paths:\n      - backend:\n          serviceName: simplehttp\n          servicePort: 8080\n        path: /\n  tls:\n  - hosts:\n
  - ....\nstatus:\n  loadBalancer:\n    ingress:\n    - {}"
time="2019-08-20T20:30:45+05:30" level=debug msg="manifests with tagged images apiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: simplehttp\n  namespace: 103
000-pra-dev\nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      app: simplehttp\n  template:\n    metadata:\n      labels:\n        app: simplehttp\n    spec
:\n      containers:\n      - env:\n        - name: PORT\n          value: \"8080\"\n        image: ..../test/jserv
er:dirty@sha256:b7bf6c4239e79074b5c4344c1ac5d125635015d92fefb106a47c22a444870877\n        name: simplehttp\n        ports:\n        - containerPort: 8080\n      imag
ePullSecrets:\n      - name: regcred\n      securityContext:\n        runAsUser: 199\n---\napiVersion: v1\nkind: Service\nmetadata:\n  labels:\n    app: simplehttp\n
  name: simplehttp\n  namespace: 103000-pra-dev\nspec:\n  ports:\n  - name: http\n    port: 80\n    protocol: TCP\n    targetPort: 8080\n  selector:\n    app: simple
http\n---\napiVersion: extensions/v1beta1\nkind: Ingress\nmetadata:\n  annotations:\n    ingress.kubernetes.io/ssl-redirect: \"true\"\n    nginx.ingress.kubernetes.i
o/ssl-redirect: \"true\"\n  creationTimestamp: \"2018-11-05T10:41:19Z\"\n  generation: 1\n  labels:\n    app: simplehttp\n  name: skaffold-example-ingress\n  namespa
ce: 103000-pra-dev\n  resourceVersion: \"14651061\"\n  selfLink: /apis/extensions/v1beta1/namespaces/..../ingresses/skaffold-example-ingress\n  uid: 54698fa9
-e0e7-11e8-ad52-6a1aa97f2964\nspec:\n  rules:\n  - host: ....\n    http:\n      paths:\n      - backend:\n          ser
viceName: simplehttp\n          servicePort: 8080\n        path: /\n  tls:\n  - hosts:\n    - ....\nstatus:\n  loadBala
ncer:\n    ingress:\n    - {}"
time="2019-08-20T20:30:45+05:30" level=debug msg="FIXME: Got an status-code for which error does not match any expected type!!!: -1" module=api status_code=-1
time="2019-08-20T20:30:45+05:30" level=debug msg="manifests with labels apiVersion: apps/v1\nkind: Deployment\nmetadata:\n  labels:\n    app.kubernetes.io/managed-by
: skaffold-unknown\n    ide: idea\n    ideVersion: 2019.1.3.0.0\n    ijPluginVersion: unknown\n    skaffold.dev/builder: local\n    skaffold.dev/cleanup: \"true\"\n
   skaffold.dev/deployer: kubectl\n    skaffold.dev/tag-policy: git-commit\n    skaffold.dev/tail: \"true\"\n  name: simplehttp\n  namespace: 103000-pra-dev\nspec:\n
  replicas: 1\n  selector:\n    matchLabels:\n      app: simplehttp\n  template:\n    metadata:\n      labels:\n        app: simplehttp\n        app.kubernetes.io/ma
naged-by: skaffold-unknown\n        ide: idea\n        ideVersion: 2019.1.3.0.0\n        ijPluginVersion: unknown\n        skaffold.dev/builder: local\n        skaff
old.dev/cleanup: \"true\"\n        skaffold.dev/deployer: kubectl\n        skaffold.dev/tag-policy: git-commit\n        skaffold.dev/tail: \"true\"\n    spec:\n
 containers:\n      - env:\n        - name: PORT\n          value: \"8080\"\n        image: ..../test/jserver:dirty
@sha256:b7bf6c4239e79074b5c4344c1ac5d125635015d92fefb106a47c22a444870877\n        name: simplehttp\n        ports:\n        - containerPort: 8080\n      imagePullSec
rets:\n      - name: regcred\n      securityContext:\n        runAsUser: 199\n---\napiVersion: v1\nkind: Service\nmetadata:\n  labels:\n    app: simplehttp\n    app.
kubernetes.io/managed-by: skaffold-unknown\n    ide: idea\n    ideVersion: 2019.1.3.0.0\n    ijPluginVersion: unknown\n    skaffold.dev/builder: local\n    skaffold.
dev/cleanup: \"true\"\n    skaffold.dev/deployer: kubectl\n    skaffold.dev/tag-policy: git-commit\n    skaffold.dev/tail: \"true\"\n  name: simplehttp\n  namespace:
 103000-pra-dev\nspec:\n  ports:\n  - name: http\n    port: 80\n    protocol: TCP\n    targetPort: 8080\n  selector:\n    app: simplehttp\n---\napiVersion: extension
s/v1beta1\nkind: Ingress\nmetadata:\n  annotations:\n    ingress.kubernetes.io/ssl-redirect: \"true\"\n    nginx.ingress.kubernetes.io/ssl-redirect: \"true\"\n  crea
tionTimestamp: \"2018-11-05T10:41:19Z\"\n  generation: 1\n  labels:\n    app: simplehttp\n    app.kubernetes.io/managed-by: skaffold-unknown\n    ide: idea\n    ideV
ersion: 2019.1.3.0.0\n    ijPluginVersion: unknown\n    skaffold.dev/builder: local\n    skaffold.dev/cleanup: \"true\"\n    skaffold.dev/deployer: kubectl\n    skaf
fold.dev/tag-policy: git-commit\n    skaffold.dev/tail: \"true\"\n  name: skaffold-example-ingress\n  namespace: 103000-pra-dev\n  resourceVersion: \"14651061\"\n  s
elfLink: /apis/extensions/v1beta1/namespaces/..../ingresses/skaffold-example-ingress\n  uid: 54698fa9-e0e7-11e8-ad52-6a1aa97f2964\nspec:\n  rules:\n  - host:
 ....\n    http:\n      paths:\n      - backend:\n          serviceName: simplehttp\n          servicePort: 8080\n
   path: /\n  tls:\n  - hosts:\n    - ....\nstatus:\n  loadBalancer:\n    ingress:\n    - {}"
time="2019-08-20T20:30:45+05:30" level=debug msg="Found artifact for image \"..../test/jserver:dirty@sha256:b7bf6c4
239e79074b5c4344c1ac5d125635015d92fefb106a47c22a444870877\""
time="2019-08-20T20:30:45+05:30" level=debug msg="FIXME: Got an status-code for which error does not match any expected type!!!: -1" module=api status_code=-1
time="2019-08-20T20:30:49+05:30" level=debug msg="Retrieved local image configuration for ..../test/jserver:dirty@s
ha256:b7bf6c4239e79074b5c4344c1ac5d125635015d92fefb106a47c22a444870877: {false false false [] <nil>  [java -cp /app/resources:/app/classes:/app/libs/* cloudcode.hell
oworld.HelloWorldApplication] [PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/
bin JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk JAVA_VERSION=8u191 JAVA_ALPINE_VERSION=8.191.12-r0 LANG=C.UTF-8]   map[] [] false false false  map[]  map[] false false
 []}"
time="2019-08-20T20:30:49+05:30" level=info msg="Configuring \"simplehttp\" for JVM debugging"
time="2019-08-20T20:30:49+05:30" level=debug msg="Applied debugging transform:\n apiVersion: apps/v1\nkind: Deployment\nmetadata:\n  creationTimestamp: null\n  label
s:\n    app.kubernetes.io/managed-by: skaffold-unknown\n    ide: idea\n    ideVersion: 2019.1.3.0.0\n    ijPluginVersion: unknown\n    skaffold.dev/builder: local\n
   skaffold.dev/cleanup: \"true\"\n    skaffold.dev/deployer: kubectl\n    skaffold.dev/tag-policy: git-commit\n    skaffold.dev/tail: \"true\"\n  name: simplehttp\n
  namespace: 103000-pra-dev\nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      app: simplehttp\n  strategy: {}\n  template:\n    metadata:\n      annotation
s:\n        debug.cloud.google.com/config: '{\"simplehttp\":{\"jdwp\":5005,\"runtime\":\"jvm\"}}'\n      creationTimestamp: null\n      labels:\n        app: simpleh
ttp\n        app.kubernetes.io/managed-by: skaffold-unknown\n        ide: idea\n        ideVersion: 2019.1.3.0.0\n        ijPluginVersion: unknown\n        skaffold.
dev/builder: local\n        skaffold.dev/cleanup: \"true\"\n        skaffold.dev/deployer: kubectl\n        skaffold.dev/tag-policy: git-commit\n        skaffold.dev
/tail: \"true\"\n    spec:\n      containers:\n      - env:\n        - name: PORT\n          value: \"8080\"\n        - name: JAVA_TOOL_OPTIONS\n          value: -ag
entlib:jdwp=transport=dt_socket,server=y,address=5005,suspend=n,quiet=y\n        image: ..../test/jserver:dirty@sha
256:b7bf6c4239e79074b5c4344c1ac5d125635015d92fefb106a47c22a444870877\n        name: simplehttp\n        ports:\n        - containerPort: 8080\n        - containerPor
t: 5005\n          name: jdwp\n        resources: {}\n      imagePullSecrets:\n      - name: regcred\n      securityContext:\n        runAsUser: 199\nstatus: {}\n"
time="2019-08-20T20:30:49+05:30" level=debug msg="no debug transformation for: service/simplehttp"
time="2019-08-20T20:30:49+05:30" level=debug msg="no debug transformation for: ingress.extensions/skaffold-example-ingress"
time="2019-08-20T20:30:49+05:30" level=debug msg="3 manifests to deploy. 3 are updated or new"
time="2019-08-20T20:30:49+05:30" level=debug msg="Running command: [kubectl --context api...../....@.... apply -f -
 --force]"
deployment.apps/simplehttp created
service/simplehttp created
ingress.extensions/skaffold-example-ingress created
←[34mDeploy complete in 36m43.486s←[0m
time="2019-08-20T20:48:40+05:30" level=debug msg="Change detected <nil>"
←[33mWatching for changes...←[0m
time="2019-08-20T20:48:48+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:48:54+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:02+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:13+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:19+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:20+05:30" level=info msg="Stream logs from pod: simplehttp-6999f4c87f-kds4q container: simplehttp"
time="2019-08-20T20:49:20+05:30" level=debug msg="Running command: [kubectl logs --since=2250s -f simplehttp-6999f4c87f-kds4q -c simplehttp --namespace 103000-pra-de
v]"
time="2019-08-20T20:49:27+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:35+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:40+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:49:43+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:47+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:49:50+05:30" level=debug msg="port forwarding service-simplehttp-103000-pra-dev-80 terminated: exit status 1, output: "
time="2019-08-20T20:49:54+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:49:58+05:30" level=warning msg="Unable to port forward service/simplehttp: timed out waiting for the condition"
time="2019-08-20T20:50:02+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:50:10+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:50:19+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:50:26+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:50:35+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:50:42+05:30" level=debug msg="port forwarding pod-simplehttp-6999f4c87f-kds4q-103000-pra-dev-8080 terminated: exit status 1, output: "
time="2019-08-20T20:50:50+05:30" level=warning msg="port forwarding pod failed: timed out waiting for the condition"
time="2019-08-20T20:51:19+05:30" level=debug msg="Change detected notify.Create: \"C:\\Users\\prashant\\cloud-code-samples-master\\java\\.idea\\workspace.xml___jb_tmp
___\""
time="2019-08-20T20:51:19+05:30" level=debug msg="Change detected notify.Write: \"C:\\Users\\prashant\\cloud-code-samples-master\\java\\.idea\\workspace.xml___jb_tmp_
__\""


@prary
Copy link
Contributor Author

prary commented Aug 20, 2019

Kubectl version through skaffold

time="2019-08-20T20:11:51+05:30" level=debug msg="Running command: [kubectl version --client -ojson]"
time="2019-08-20T20:12:01+05:30" level=debug msg="Command output: [{\n  \"clientVersion\": {\n    \"major\": \"1\",\n    \"minor\": \"13\",\n    \"gitVersion\": \"v1
.13.5\",\n    \"gitCommit\": \"2166946f41b36dea2c4626f90a77706f426cdea2\",\n    \"gitTreeState\": \"clean\",\n    \"buildDate\": \"2019-03-25T15:26:52Z\",\n    \"goV
ersion\": \"go1.11.5\",\n    \"compiler\": \"gc\",\n    \"platform\": \"windows/amd64\"\n  }\n}\n]"

Kubectl version through terminal

Client Version: version.Info{Major:"1", Minor:"13", GitVersion:"v1.13.5", GitCommit:"2166946f41b36dea2c4626f90a77706f426cdea2", GitTreeState:"clean", BuildDate:"2019
-03-25T15:26:52Z", GoVersion:"go1.11.5", Compiler:"gc", Platform:"windows/amd64"}
Server Version: version.Info{Major:"1", Minor:"14", GitVersion:"v1.14.3+vmware.1", GitCommit:"5e53fd6bc17c0dec8434817e69b04a25d8ae0ff0", GitTreeState:"clean", BuildD
ate:"2019-06-06T17:34:53Z", GoVersion:"go1.12.5", Compiler:"gc", Platform:"linux/amd64"}

@prary

This comment has been minimized.

@balopat
Copy link
Contributor

balopat commented Aug 22, 2019

I opened a new issue to track the port-forwarding conversation: #2706

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/debug kind/bug Something isn't working platform/windows priority/p0 Highest priority. We are actively looking at delivering it.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants