Bug 1723577
| Summary: | clusteroperator/node-tuning does not define enough related resources | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Jiří Mencák <jmencak> |
| Component: | Node Tuning Operator | Assignee: | Jiří Mencák <jmencak> |
| Status: | CLOSED ERRATA | QA Contact: | Mike Fiedler <mifiedle> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 4.2.0 | CC: | sanchezl, sejug, skordas, sponnaga |
| Target Milestone: | --- | Keywords: | OSE41z_next |
| Target Release: | 4.2.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 1717739 | Environment: | |
| Last Closed: | 2019-10-16 06:32:26 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 1717739 | ||
| Bug Blocks: | |||
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:2922 |
Verified on 4.2.0-0.ci-2019-06-24-155129 oc adm must-gather collects the resources and pod logs related to node tuning. openshift-cluster-node-tuning-operator/ ├── apps │ ├── daemonsets │ │ └── tuned.yaml │ ├── daemonsets.yaml │ ├── deployments.yaml │ ├── replicasets.yaml │ └── statefulsets.yaml ├── apps.openshift.io │ └── deploymentconfigs.yaml ├── autoscaling │ └── horizontalpodautoscalers.yaml ├── batch │ ├── cronjobs.yaml │ └── jobs.yaml ├── build.openshift.io │ ├── buildconfigs.yaml │ └── builds.yaml ├── core │ ├── configmaps │ │ ├── tuned-profiles.yaml │ │ └── tuned-recommend.yaml │ ├── configmaps.yaml │ ├── events.yaml │ ├── pods.yaml │ ├── replicationcontrollers.yaml │ ├── secrets.yaml │ ├── serviceaccounts │ │ └── tuned.yaml │ └── services.yaml ├── image.openshift.io │ └── imagestreams.yaml ├── openshift-cluster-node-tuning-operator.yaml ├── pods │ ├── cluster-node-tuning-operator-55cb59fd78-df6pf │ │ ├── cluster-node-tuning-operator │ │ │ └── cluster-node-tuning-operator │ │ │ └── logs │ │ │ ├── current.log │ │ │ └── previous.log │ │ └── cluster-node-tuning-operator-55cb59fd78-df6pf.yaml │ ├── tuned-4gc48 │ │ ├── tuned │ │ │ └── tuned │ │ │ └── logs │ │ │ ├── current.log │ │ │ └── previous.log │ │ └── tuned-4gc48.yaml │ ├── tuned-64t5t │ │ ├── tuned │ │ │ └── tuned │ │ │ └── logs │ │ │ ├── current.log │ │ │ └── previous.log │ │ └── tuned-64t5t.yaml │ ├── tuned-czhqf │ │ ├── tuned │ │ │ └── tuned │ │ │ └── logs │ │ │ ├── current.log │ │ │ └── previous.log │ │ └── tuned-czhqf.yaml │ ├── tuned-f4bgv │ │ ├── tuned │ │ │ └── tuned │ │ │ └── logs │ │ │ ├── current.log │ │ │ └── previous.log │ │ └── tuned-f4bgv.yaml │ ├── tuned-mzgtn │ │ ├── tuned │ │ │ └── tuned │ │ │ └── logs │ │ │ ├── current.log │ │ │ └── previous.log │ │ └── tuned-mzgtn.yaml │ └── tuned-p9kkl │ ├── tuned │ │ └── tuned │ │ └── logs │ │ ├── current.log │ │ └── previous.log │ └── tuned-p9kkl.yaml ├── route.openshift.io │ └── routes.yaml └── tuned.openshift.io └── tuneds └── default.yaml 42 directories, 45 files