Skip to content

create on subresource defunct #173

Open
@scones

Description

@scones

i am trying to create an eviction for a pod using the eviction api.

using

    eviction = K8s::Resource.new(
      apiVersion: "policy/v1beta1",
      "kind": "Eviction",
      "metadata": {
        "name": pod.metadata.name,
        "namespace": pod.metadata.namespace
      }
    )
    $client.api('v1').resource('pods/eviction').create_resource(eviction)

i get:

/gem/path/k8s-client-35b5020f99de/lib/k8s/transport.rb:261:in `parse_response': POST /cluster/path/api/v1/namespaces/some-namespace/pods => HTTP 400 Bad Request: Eviction in version "v1beta1" cannot be handled as a Pod: converting (v1beta1.Eviction) to (core.Pod): Spec not present in src (K8s::Error::BadRequest)

considering https://kubernetes.io/docs/tasks/administer-cluster/safely-drain-node/ the correct path for the post should be
/api/v1/namespaces/some-namespace/pods/some-pod/eviction

this obviously can't work right now, as i have no interface to set the pod within the request.

leaving me to ask for a feature to cover this :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions