-
Notifications
You must be signed in to change notification settings - Fork 555
docs: added cluster, k8s resource browser, k8s resource permission #2787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
fad8bbb to
c4c4910
Compare
2f0c8ce to
c979576
Compare
docs/user-guide/clusters.md
Outdated
|
|
||
| ### Drain a Node | ||
|
|
||
| Before performing maintenance on a node, draining a node evicts all of your pods safely from a node. Safe evictions allow the pod’s containers to gracefully terminate and will manage the `PodDisruptionBudgets` you have specified (if relevant). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will manage the PodDisruptionBudgets -> honour the PodDisruptionBudgets
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
docs/user-guide/clusters.md
Outdated
|
|
||
| ### Configure YAML | ||
|
|
||
| The config.yaml file contains all the configuration settings that are needed to deploy your cluster. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its node edit, not he cluster edit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
docs/user-guide/clusters.md
Outdated
|
|
||
| ### Delete a Node | ||
|
|
||
| * Go to the `Clusters` section from the left navigation pane. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
write this document with context of cluster-detail page
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for any change in app config you don't start with app listing page
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
|
|
||
| ### Debug Pod | ||
|
|
||
| You can also create pod for debugging which will connect to pod terminal. To find out why the particular pod is not running, you can check `Pod Events` and `Pod Manifest` for details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how we are supporting this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
docs/user-guide/resource-browser.md
Outdated
| @@ -0,0 +1,105 @@ | |||
| # Resource Browser | |||
|
|
|||
| `Resource Browser` lists all of the resources running in cluster in your current project. You can use it to view, inspect, manage, and delete resources in your clusters. You can also create resources from the `Resource Browser`. | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
project has no role here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
docs/user-guide/resource-browser.md
Outdated
|
|
||
|  | ||
|
|
||
| The following resources are grouped in the following categories: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
twice following is not required here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
docs/user-guide/resource-browser.md
Outdated
|
|
||
| * **Workloads** displays workloads (Cronjob, Deployment, StatefulSet, DaemonSet, Job, and Pod resources) deployed to clusters in your current project. Includes each workload's name, status, type, number of running and total desired Pods, namespace, and cluster. | ||
|
|
||
| * **Config & Storage** provide both long-term and temporary [storage](https://kubernetes.io/docs/concepts/storage/) to Pods in your cluster and [configuration](https://kubernetes.io/docs/concepts/configuration/) of pods. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
provide both long-term and temporary -> need to explain context better way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
docs/user-guide/resource-browser.md
Outdated
|
|
||
| #### Manifest | ||
|
|
||
| The Manifest shows the critical information such as container-image, restartCount, state, phase, podIP, startTime etc. and status of the pods which are deployed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to revisit this definition
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
docs/user-guide/resource-browser.md
Outdated
|
|
||
| #### Events | ||
|
|
||
| Events display you the events that took place during the deployment of an application. These events are available until 15 minutes of deployment of the application. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to revisit this definition
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Description