kxr / o-must-gather

oc like tool that works with must-gather rather than OpenShift API
GNU General Public License v3.0
161 stars 73 forks source link

Add missing resource shortnames #66

Closed simonkrenger closed 3 years ago

simonkrenger commented 3 years ago

This commit adds the missing shortnames for the following resources:

The shortnames were retrieved from an OCP 4.8 / Kubernetes 1.21.1 cluster. The output for oc api-resources shows these shortnames:

$ oc api-resources
NAME                                  SHORTNAMES       APIVERSION                                    NAMESPACED   KIND
statefulsets                          sts              apps/v1                                       true         StatefulSet
cronjobs                              cj               batch/v1                                      true         CronJob
ingresses                             ing              extensions/v1beta1                            true         Ingress
networkpolicies                       netpol           networking.k8s.io/v1                          true         NetworkPolicy
clusterserviceversions                csv,csvs         operators.coreos.com/v1alpha1                 true         ClusterServiceVersion

Fixes issue #64