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 /hack/swagger-check | |
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 'hack/swagger-check')
-rwxr-xr-x | hack/swagger-check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/swagger-check b/hack/swagger-check index 1e5b95c3a..b4481f5bb 100755 --- a/hack/swagger-check +++ b/hack/swagger-check @@ -320,8 +320,8 @@ sub operation_name { if ($action eq 'df') { $action = 'dataUsage'; } - elsif ($action eq "delete" && $endpoint eq "/libpod/kube/play") { - $action = "PlayDown" + elsif ($action eq "delete" && $endpoint eq "/libpod/play/kube") { + $action = "KubeDown" } # Grrrrrr, this one is annoying: some operations get an extra 'All' elsif ($action =~ /^(delete|get|stats)$/ && $endpoint !~ /\{/) { |