intellij-kubernetes icon indicating copy to clipboard operation
intellij-kubernetes copied to clipboard

As a user i want to be able to see my custom resource exists even though I have no perms to list those

Open adietish opened this issue 3 years ago • 0 comments

Steps:

  1. ASSERT: make sure that you're connected to a cluster where you dont have permissions to list the custom resource (ex. RH sandbox): image
  2. ASSERT: identify a custom resource that is supported and that you therefore can create (ex. knative services on RH sandbox)
  3. EXEC: open an editor with the yaml/json for a supported custom resource that doesn't exist yet. ex. knative service on RH sandbox:
---
apiVersion: "serving.knative.dev/v1"
kind: "Service"
metadata:
  labels:
    jedi: "yoda"
  name: "helloworld-go"
spec:
  template:
    spec:
      containers:
      - image: "gcr.io/knative-samples/helloworld-go"
        env:
        - name: "TARGET"
          value: "Go Sample v1"
  1. Then push it to the cluster, so that the resource gets created on the cluster

Result: i have no way to know that my new resource exists. In the web console, they are listing my resource in the topology image

Expected result: I want my resource shown in the resource tree if it exists.

adietish avatar Apr 11 '22 14:04 adietish