Skip to content

Commit b01e4d1

Browse files
committed
Add support.md to the doc
Signed-off-by: melserngawy <[email protected]>
1 parent 0baa03c commit b01e4d1

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

docs/book/src/SUMMARY_PREFIX.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
- [Creating MachinePools](./topics/rosa/creating-rosa-machinepools.md)
2828
- [Upgrades](./topics/rosa/upgrades.md)
2929
- [External Auth Providers](./topics/rosa/external-auth.md)
30+
- [Support](./topics/rosa/support.md)
3031
- [Bring Your Own AWS Infrastructure](./topics/bring-your-own-aws-infrastructure.md)
3132
- [Specifying the IAM Role to use for Management Components](./topics/specify-management-iam-role.md)
3233
- [Using external cloud provider with EBS CSI driver](./topics/external-cloud-provider-with-ebs-csi-driver.md)

docs/book/src/topics/rosa/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ A new template is available in the templates folder for creating a managed ROSA
2222
* [Creating a cluster](creating-a-cluster.md)
2323
* [Creating MachinePools](creating-rosa-machinepools.md)
2424
* [Upgrades](upgrades.md)
25-
* [External Auth Providers](external-auth.md)
25+
* [External Auth Providers](external-auth.md)
26+
* [Support](support.md)

docs/book/src/topics/rosa/support.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Create issue for ROSA
2+
3+
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:
4+
- `Cluster`
5+
- `ROSAControlPlane`
6+
- `MachinePool`
7+
- `ROSAMachinePool`
8+
9+
```shell
10+
$ kubectl get pod -n capa-system
11+
NAME READY STATUS RESTARTS AGE
12+
capa-controller-manager-77f5b946b-sddcg 1/1 Running 1 3d3h
13+
14+
$ kubectl logs -n capa-system capa-controller-manager-77f5b946b-sddcg > capa-controller-manager-logs.txt
15+
16+
$ kubectl get pod -n capi-system
17+
NAME READY STATUS RESTARTS AGE
18+
capi-controller-manager-78dc897784-f8gpn 1/1 Running 18 26d
19+
20+
$ kubectl logs -n capi-system capi-controller-manager-78dc897784-f8gpn > capi-controller-manager-logs.txt
21+
```

0 commit comments

Comments
 (0)