-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
Translate a Docker Compose File to Kubernetes Resources - Command Typo / Change #33548
Comments
@princefishthrower: This issue is currently awaiting triage. SIG Docs takes a lead on issue triage for this website, but any Kubernetes member can accept issues by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Actually this then follows to further commands. Instead of: minikube service frontend It should be:
Really, the culprit or source of the bug would be to find where the |
Hah, even after running the proper I found this comment useful as a fix: kubernetes/minikube#14097 (comment) In summary, you just forward the port manually by issuing: kubectl port-forward service/frontend-tcp 8080:80 Then the service should be accessible at localhost:8080 in the browser |
/assign |
Is this a pr to work on ? @princefishthrower |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close not-planned |
@k8s-triage-robot: Closing this issue, marking it as "Not Planned". In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
From this page: https://kubernetes.io/docs/tasks/configure-pod-container/translate-compose-kubernetes/
Small change requested: I notice that after I run
I don't get a
frontend-service.yaml
but rather afrontend-tcp-service.yaml
.So the line:
Should be changed to:
I'm on macOS, not sure if that has an impact.
The text was updated successfully, but these errors were encountered: