aboutsummaryrefslogtreecommitdiff
path: root/pkg/bindings/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 /pkg/bindings/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 'pkg/bindings/kube')
-rw-r--r--pkg/bindings/kube/kube.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/bindings/kube/kube.go b/pkg/bindings/kube/kube.go
index b9cc0efa7..db40c5134 100644
--- a/pkg/bindings/kube/kube.go
+++ b/pkg/bindings/kube/kube.go
@@ -51,7 +51,7 @@ func PlayWithBody(ctx context.Context, body io.Reader, options *PlayOptions) (*e
return nil, err
}
- response, err := conn.DoRequest(ctx, body, http.MethodPost, "/kube/play", params, header)
+ response, err := conn.DoRequest(ctx, body, http.MethodPost, "/play/kube", params, header)
if err != nil {
return nil, err
}
@@ -85,7 +85,7 @@ func DownWithBody(ctx context.Context, body io.Reader) (*entities.KubePlayReport
return nil, err
}
- response, err := conn.DoRequest(ctx, body, http.MethodDelete, "/kube/play", nil, nil)
+ response, err := conn.DoRequest(ctx, body, http.MethodDelete, "/play/kube", nil, nil)
if err != nil {
return nil, err
}