summaryrefslogtreecommitdiff
path: root/cmd/podman/kube
diff options
context:
space:
mode:
authorNiall Crowe <nicrowe@redhat.com>2022-07-27 23:16:57 +0100
committerNiall Crowe <nicrowe@redhat.com>2022-08-02 12:09:59 +0100
commit69d7407afbe76eb7553b84193f93281b9c5ce904 (patch)
treed488d2bcb666c56c329127b8f148dad6f2595331 /cmd/podman/kube
parent47a814aa6df97da834315d778cb68f66a82c3231 (diff)
downloadpodman-69d7407afbe76eb7553b84193f93281b9c5ce904.tar.gz
podman-69d7407afbe76eb7553b84193f93281b9c5ce904.tar.bz2
podman-69d7407afbe76eb7553b84193f93281b9c5ce904.zip
switch from "kube/play" endpoint to "play/kube" endpoint.
When podman kube play was added the endpoint for the kube play/play kube commands was switched from the "play kube" endpoint to the new "kube play" endpoint. This caused issues with the remote client, requiring the need to use the "play kube" endpoint again in order to avoid these issues. Signed-off-by: Niall Crowe <nicrowe@redhat.com>
Diffstat (limited to 'cmd/podman/kube')
-rw-r--r--cmd/podman/kube/play.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/kube/play.go b/cmd/podman/kube/play.go
index 685cb521c..6e0050cbf 100644
--- a/cmd/podman/kube/play.go
+++ b/cmd/podman/kube/play.go
@@ -164,7 +164,7 @@ func playFlags(cmd *cobra.Command) {
_ = cmd.RegisterFlagCompletionFunc(contextDirFlagName, completion.AutocompleteDefault)
// NOTE: The service-container flag is marked as hidden as it
- // is purely designed for running kube-play in systemd units.
+ // is purely designed for running kube-play or play-kube in systemd units.
// It is not something users should need to know or care about.
//
// Having a flag rather than an env variable is cleaner.