Bug 1991537
| Summary: | Kuryr controller in CrashLoopBackOff due to missing loadbalancer | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Mohammad <mahmad> | 
| Component: | Networking | Assignee: | MichaĆ Dulko <mdulko> | 
| Networking sub component: | kuryr | QA Contact: | Itzik Brown <itbrown> | 
| Status: | CLOSED ERRATA | Docs Contact: | |
| Severity: | medium | ||
| Priority: | high | CC: | itbrown, rbarrott | 
| Version: | 3.11.0 | Keywords: | Triaged | 
| Target Milestone: | --- | ||
| Target Release: | 3.11.z | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2021-10-28 15:58:21 UTC | Type: | Bug | 
| Regression: | --- | Mount Type: | --- | 
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| 
        
          Description
        
        
          Mohammad
        
        
        
        
        
          2021-08-09 11:39:09 UTC
        
       - Made sure the Kuryr controller code had the following patch:https://github.com/openshift/kuryr-kubernetes/pull/572 - All tempest tests passed - Simulated by setting a LB moving to an ERROR state and restarting the Kuryr controller and make sure it's ready Created a service: apiVersion: v1 kind: Service metadata: name: demo labels: app: demo spec: selector: app: demo ports: - port: 80 protocol: TCP targetPort: 8080 Created a deployment: apiVersion: apps/v1 kind: Deployment metadata: name: demo labels: app: demo spec: replicas: 3 selector: matchLabels: app: demo template: metadata: labels: app: demo spec: containers: - name: demo image: kuryr/demo ports: - containerPort: 8080 Set the LB state to ERROR: source ~/stackrc && ssh heat-admin@$(openstack server list -f value -c Name -c Networks | grep controller-0 | awk -F= '{print $2}') sudo docker exec -uroot -it galera-bundle-docker-0 mysql MariaDB [(none)]>use octavia; MariaDB [(none)]> UPDATE load_balancer SET provisioning_status='ERROR' WHERE name='default/demo'; Restart the Kuryr controller and make sure it's ready Version: OSP13 2021-09-20.1 OCP v3.11.524 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 (Moderate: OpenShift Container Platform 3.11.542 security update), 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/RHSA-2021:3915 |