Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃摉 ROSA: Add support.md to the doc #4966

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/book/src/SUMMARY_PREFIX.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- [Creating MachinePools](./topics/rosa/creating-rosa-machinepools.md)
- [Upgrades](./topics/rosa/upgrades.md)
- [External Auth Providers](./topics/rosa/external-auth.md)
- [Support](./topics/rosa/support.md)
- [Bring Your Own AWS Infrastructure](./topics/bring-your-own-aws-infrastructure.md)
- [Specifying the IAM Role to use for Management Components](./topics/specify-management-iam-role.md)
- [Using external cloud provider with EBS CSI driver](./topics/external-cloud-provider-with-ebs-csi-driver.md)
Expand Down
3 changes: 2 additions & 1 deletion docs/book/src/topics/rosa/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ A new template is available in the templates folder for creating a managed ROSA
* [Creating a cluster](creating-a-cluster.md)
* [Creating MachinePools](creating-rosa-machinepools.md)
* [Upgrades](upgrades.md)
* [External Auth Providers](external-auth.md)
* [External Auth Providers](external-auth.md)
* [Support](support.md)
21 changes: 21 additions & 0 deletions docs/book/src/topics/rosa/support.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Create issue for ROSA

When creating issue for ROSA-HCP cluster, include the logs for the capa-controller-manager and capi-controller-manager deployment pods. The logs can be saved to text file using the commands below. Also include the yaml files for all the resources used to create the ROSA cluster:
- `Cluster`
- `ROSAControlPlane`
- `MachinePool`
- `ROSAMachinePool`

```shell
$ kubectl get pod -n capa-system
NAME READY STATUS RESTARTS AGE
capa-controller-manager-77f5b946b-sddcg 1/1 Running 1 3d3h

$ kubectl logs -n capa-system capa-controller-manager-77f5b946b-sddcg > capa-controller-manager-logs.txt

$ kubectl get pod -n capi-system
NAME READY STATUS RESTARTS AGE
capi-controller-manager-78dc897784-f8gpn 1/1 Running 18 26d

$ kubectl logs -n capi-system capi-controller-manager-78dc897784-f8gpn > capi-controller-manager-logs.txt
```
Loading