I'm having an issue when trying to issue with logging.
kubectl -n staging get po
job-ingestor-2118144467-82qqd 1/1 Running 0 1d
svc-bot-1878717742-vnn6r 1/1 Running 0 11m
svc-key-phrase-detector-304701101-s3z9q 1/1 Running 0 1d
svc-search-relevance-1480769826-6mg3w 1/1 Running 0 1d
svc-settings-3026457329-mr34d 1/1 Running 0 1d
ui-dashboard-3272795982-8j4zr 1/1 Running 0 1d
however if I:
kubectl -n staging log svc-bot-1878717742-vnn6r -v6
I get the following result:
I1208 18:19:07.111172 43640 round_trippers.go:405] GET https://redacted:443/api/v1/namespaces/staging/pods/svc-bot-1878717742-vnn6r 200 OK in 380 milliseconds
I1208 18:19:07.208461 43640 round_trippers.go:405] GET https://redacted:443/api/v1/namespaces/staging/pods/svc-bot-1878717742-vnn6r/log 404 Not Found in 94 milliseconds
I1208 18:19:07.208760 43640 helpers.go:207] server response object: [{
"metadata": {},
"status": "Failure",
"message": "the server could not find the requested resource ( pods/log svc-bot-1878717742-vnn6r)",
"reason": "NotFound",
"details": {
"name": "svc-bot-1878717742-vnn6r",
"kind": "pods/log"
},
"code": 404
}]
F1208 18:19:07.208787 43640 helpers.go:120] Error from server (NotFound): the server could not find the requested resource ( pods/log svc-bot-1878717742-vnn6r)
Having a hard time figuring this out and googling has been of zero help to this point.
Any help would be greatly appreciated.