diff options
author | Niall Crowe <nicrowe@redhat.com> | 2022-07-27 23:16:57 +0100 |
---|---|---|
committer | Niall Crowe <nicrowe@redhat.com> | 2022-08-02 12:09:59 +0100 |
commit | 69d7407afbe76eb7553b84193f93281b9c5ce904 (patch) | |
tree | d488d2bcb666c56c329127b8f148dad6f2595331 /cmd/podman | |
parent | 47a814aa6df97da834315d778cb68f66a82c3231 (diff) | |
download | podman-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')
-rw-r--r-- | cmd/podman/kube/play.go | 2 |
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. |